blob: d75abb660f4f8e666c5c161c8c03f340b1dcad0d [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
2 * (C) Copyright 2002 ELTEC Elektronik AG
3 * Frank Gottschling <fgottschling@eltec.de>
4 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenkc6097192002-11-03 00:24:07 +00006 */
7
8/*
9 * cfb_console.c
10 *
11 * Color Framebuffer Console driver for 8/15/16/24/32 bits per pixel.
12 *
13 * At the moment only the 8x16 font is tested and the font fore- and
14 * background color is limited to black/white/gray colors. The Linux
15 * logo can be placed in the upper left corner and additional board
Wolfgang Denk64e40d72011-07-29 09:55:27 +000016 * information strings (that normally goes to serial port) can be drawn.
wdenkc6097192002-11-03 00:24:07 +000017 *
Simon Glass39f615e2015-11-11 10:05:47 -070018 * The console driver can use a keyboard interface for character input
19 * but this is deprecated. Only rk51 uses it.
20 *
21 * Character output goes to a memory-mapped video
wdenkc6097192002-11-03 00:24:07 +000022 * framebuffer with little or big-endian organisation.
23 * With environment setting 'console=serial' the console i/o can be
24 * forced to serial port.
Wolfgang Denk64e40d72011-07-29 09:55:27 +000025 *
26 * The driver uses graphic specific defines/parameters/functions:
27 *
28 * (for SMI LynxE graphic chip)
29 *
Wolfgang Denk64e40d72011-07-29 09:55:27 +000030 * VIDEO_FB_LITTLE_ENDIAN - framebuffer organisation default: big endian
31 * VIDEO_HW_RECTFILL - graphic driver supports hardware rectangle fill
32 * VIDEO_HW_BITBLT - graphic driver supports hardware bit blt
33 *
34 * Console Parameters are set by graphic drivers global struct:
35 *
36 * VIDEO_VISIBLE_COLS - x resolution
37 * VIDEO_VISIBLE_ROWS - y resolution
38 * VIDEO_PIXEL_SIZE - storage size in byte per pixel
39 * VIDEO_DATA_FORMAT - graphical data format GDF
40 * VIDEO_FB_ADRS - start of video memory
41 *
Wolfgang Denk64e40d72011-07-29 09:55:27 +000042 * VIDEO_KBD_INIT_FCT - init function for keyboard
43 * VIDEO_TSTC_FCT - keyboard_tstc function
44 * VIDEO_GETC_FCT - keyboard_getc function
45 *
Bastian Ruppert1e681f92012-09-13 22:29:01 +000046 * CONFIG_VIDEO_LOGO - display Linux Logo in upper left corner.
47 * Use CONFIG_SPLASH_SCREEN_ALIGN with
48 * environment variable "splashpos" to place
49 * the logo on other position. In this case
50 * no CONSOLE_EXTRA_INFO is possible.
Wolfgang Denk64e40d72011-07-29 09:55:27 +000051 * CONFIG_VIDEO_BMP_LOGO - use bmp_logo instead of linux_logo
52 * CONFIG_CONSOLE_EXTRA_INFO - display additional board information
53 * strings that normaly goes to serial
54 * port. This define requires a board
55 * specific function:
56 * video_drawstring (VIDEO_INFO_X,
57 * VIDEO_INFO_Y + i*VIDEO_FONT_HEIGHT,
58 * info);
59 * that fills a info buffer at i=row.
60 * s.a: board/eltec/bab7xx.
Wolfgang Denk64e40d72011-07-29 09:55:27 +000061 *
62 * CONFIG_VIDEO_SW_CURSOR: - Draws a cursor after the last
63 * character. No blinking is provided.
64 * Uses the macros CURSOR_SET and
65 * CURSOR_OFF.
Wolfgang Denk64e40d72011-07-29 09:55:27 +000066 */
wdenkc6097192002-11-03 00:24:07 +000067
68#include <common.h>
Simon Glass5692ccf2015-03-02 12:40:50 -070069#include <fdtdec.h>
Andreas Bießmann09c2e902011-07-18 20:24:04 +020070#include <version.h>
wdenka6c7ad22002-12-03 21:28:10 +000071#include <malloc.h>
Simon Glass0a6eac82016-10-17 20:12:54 -060072#include <video.h>
Wolfgang Denka9a62af2011-11-04 15:55:20 +000073#include <linux/compiler.h>
wdenka6c7ad22002-12-03 21:28:10 +000074
Wolfgang Denk64e40d72011-07-29 09:55:27 +000075/*
Wolfgang Denk64e40d72011-07-29 09:55:27 +000076 * Defines for the CT69000 driver
77 */
wdenk4b248f32004-03-14 16:51:43 +000078#ifdef CONFIG_VIDEO_CT69000
wdenkc6097192002-11-03 00:24:07 +000079
80#define VIDEO_FB_LITTLE_ENDIAN
81#define VIDEO_HW_RECTFILL
82#define VIDEO_HW_BITBLT
83#endif
84
Simon Glassc370d382016-10-17 20:12:47 -060085#if defined(CONFIG_VIDEO_MXS)
Marek Vasutfb8ddc22013-04-28 09:20:03 +000086#define VIDEO_FB_16BPP_WORD_SWAP
87#endif
88
Wolfgang Denk64e40d72011-07-29 09:55:27 +000089/*
90 * Defines for the MB862xx driver
91 */
Anatolij Gustschinbed53752008-01-11 14:30:01 +010092#ifdef CONFIG_VIDEO_MB862xx
93
94#ifdef CONFIG_VIDEO_CORALP
95#define VIDEO_FB_LITTLE_ENDIAN
96#endif
Anatolij Gustschin5d16ca82009-10-23 12:03:14 +020097#ifdef CONFIG_VIDEO_MB862xx_ACCEL
Anatolij Gustschinbed53752008-01-11 14:30:01 +010098#define VIDEO_HW_RECTFILL
99#define VIDEO_HW_BITBLT
100#endif
Anatolij Gustschin5d16ca82009-10-23 12:03:14 +0200101#endif
Anatolij Gustschinbed53752008-01-11 14:30:01 +0100102
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000103/*
Helmut Raiger62a22dc2011-10-12 23:16:29 +0000104 * Defines for the i.MX31 driver (mx3fb.c)
105 */
Fabio Estevam695af9a2012-05-31 07:23:56 +0000106#if defined(CONFIG_VIDEO_MX3) || defined(CONFIG_VIDEO_IPUV3)
Helmut Raiger62a22dc2011-10-12 23:16:29 +0000107#define VIDEO_FB_16BPP_WORD_SWAP
108#endif
109
110/*
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000111 * Include video_fb.h after definitions of VIDEO_HW_RECTFILL etc.
112 */
wdenkc6097192002-11-03 00:24:07 +0000113#include <video_fb.h>
114
Robert Winklerdd4425e2013-06-17 11:31:29 -0700115#include <splash.h>
116
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000117/*
118 * some Macros
119 */
wdenk4b248f32004-03-14 16:51:43 +0000120#define VIDEO_VISIBLE_COLS (pGD->winSizeX)
121#define VIDEO_VISIBLE_ROWS (pGD->winSizeY)
122#define VIDEO_PIXEL_SIZE (pGD->gdfBytesPP)
123#define VIDEO_DATA_FORMAT (pGD->gdfIndex)
124#define VIDEO_FB_ADRS (pGD->frameAdrs)
wdenkc6097192002-11-03 00:24:07 +0000125
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000126/*
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000127 * Console device
128 */
wdenkc6097192002-11-03 00:24:07 +0000129
130#include <version.h>
131#include <linux/types.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200132#include <stdio_dev.h>
wdenkc6097192002-11-03 00:24:07 +0000133#include <video_font.h>
wdenkc6097192002-11-03 00:24:07 +0000134
Jon Loeligerddb5d86f2007-07-10 11:13:21 -0500135#if defined(CONFIG_CMD_DATE)
136#include <rtc.h>
wdenkc6097192002-11-03 00:24:07 +0000137#endif
138
Jon Loeliger07d38a12007-07-09 17:30:01 -0500139#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
wdenk4b248f32004-03-14 16:51:43 +0000140#include <watchdog.h>
141#include <bmp_layout.h>
Anatolij Gustschinff8fb562013-07-02 00:04:05 +0200142#include <splash.h>
Jon Loeliger07d38a12007-07-09 17:30:01 -0500143#endif
wdenk4b248f32004-03-14 16:51:43 +0000144
Simon Glassa4206572016-10-17 20:12:50 -0600145#if !defined(CONFIG_VIDEO_SW_CURSOR)
wdenkc6097192002-11-03 00:24:07 +0000146/* no Cursor defined */
147#define CURSOR_ON
148#define CURSOR_OFF
149#define CURSOR_SET
150#endif
151
Simon Glass7fe09332015-10-18 21:17:18 -0600152#if defined(CONFIG_VIDEO_SW_CURSOR)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000153void console_cursor(int state);
154
Timur Tabi65618632010-08-27 15:45:47 -0500155#define CURSOR_ON console_cursor(1)
156#define CURSOR_OFF console_cursor(0)
Gabe Black03d31fc2011-11-30 13:50:50 +0000157#define CURSOR_SET video_set_cursor()
Simon Glass7fe09332015-10-18 21:17:18 -0600158#endif /* CONFIG_VIDEO_SW_CURSOR */
wdenkc6097192002-11-03 00:24:07 +0000159
wdenk4b248f32004-03-14 16:51:43 +0000160#ifdef CONFIG_VIDEO_LOGO
161#ifdef CONFIG_VIDEO_BMP_LOGO
wdenka6c7ad22002-12-03 21:28:10 +0000162#include <bmp_logo.h>
Che-Liang Chiouc2707302011-10-20 23:04:20 +0000163#include <bmp_logo_data.h>
wdenk4b248f32004-03-14 16:51:43 +0000164#define VIDEO_LOGO_WIDTH BMP_LOGO_WIDTH
165#define VIDEO_LOGO_HEIGHT BMP_LOGO_HEIGHT
166#define VIDEO_LOGO_LUT_OFFSET BMP_LOGO_OFFSET
167#define VIDEO_LOGO_COLORS BMP_LOGO_COLORS
wdenka6c7ad22002-12-03 21:28:10 +0000168
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000169#else /* CONFIG_VIDEO_BMP_LOGO */
wdenk4b248f32004-03-14 16:51:43 +0000170#define LINUX_LOGO_WIDTH 80
171#define LINUX_LOGO_HEIGHT 80
172#define LINUX_LOGO_COLORS 214
173#define LINUX_LOGO_LUT_OFFSET 0x20
wdenkc6097192002-11-03 00:24:07 +0000174#define __initdata
175#include <linux_logo.h>
wdenk4b248f32004-03-14 16:51:43 +0000176#define VIDEO_LOGO_WIDTH LINUX_LOGO_WIDTH
177#define VIDEO_LOGO_HEIGHT LINUX_LOGO_HEIGHT
178#define VIDEO_LOGO_LUT_OFFSET LINUX_LOGO_LUT_OFFSET
179#define VIDEO_LOGO_COLORS LINUX_LOGO_COLORS
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000180#endif /* CONFIG_VIDEO_BMP_LOGO */
wdenk4b248f32004-03-14 16:51:43 +0000181#define VIDEO_INFO_X (VIDEO_LOGO_WIDTH)
182#define VIDEO_INFO_Y (VIDEO_FONT_HEIGHT/2)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000183#else /* CONFIG_VIDEO_LOGO */
wdenk4b248f32004-03-14 16:51:43 +0000184#define VIDEO_LOGO_WIDTH 0
185#define VIDEO_LOGO_HEIGHT 0
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000186#endif /* CONFIG_VIDEO_LOGO */
wdenkc6097192002-11-03 00:24:07 +0000187
wdenk4b248f32004-03-14 16:51:43 +0000188#define VIDEO_COLS VIDEO_VISIBLE_COLS
189#define VIDEO_ROWS VIDEO_VISIBLE_ROWS
Hans de Goedec67a8762015-08-04 12:15:39 +0200190#ifndef VIDEO_LINE_LEN
191#define VIDEO_LINE_LEN (VIDEO_COLS * VIDEO_PIXEL_SIZE)
192#endif
193#define VIDEO_SIZE (VIDEO_ROWS * VIDEO_LINE_LEN)
wdenk4b248f32004-03-14 16:51:43 +0000194#define VIDEO_BURST_LEN (VIDEO_COLS/8)
wdenkc6097192002-11-03 00:24:07 +0000195
wdenk4b248f32004-03-14 16:51:43 +0000196#ifdef CONFIG_VIDEO_LOGO
Matthias Weisserbe129aa2010-01-12 12:06:31 +0100197#define CONSOLE_ROWS ((VIDEO_ROWS - video_logo_height) / VIDEO_FONT_HEIGHT)
wdenkc6097192002-11-03 00:24:07 +0000198#else
wdenk4b248f32004-03-14 16:51:43 +0000199#define CONSOLE_ROWS (VIDEO_ROWS / VIDEO_FONT_HEIGHT)
wdenkc6097192002-11-03 00:24:07 +0000200#endif
201
wdenk4b248f32004-03-14 16:51:43 +0000202#define CONSOLE_COLS (VIDEO_COLS / VIDEO_FONT_WIDTH)
203#define CONSOLE_ROW_SIZE (VIDEO_FONT_HEIGHT * VIDEO_LINE_LEN)
204#define CONSOLE_ROW_FIRST (video_console_address)
205#define CONSOLE_ROW_SECOND (video_console_address + CONSOLE_ROW_SIZE)
206#define CONSOLE_ROW_LAST (video_console_address + CONSOLE_SIZE - CONSOLE_ROW_SIZE)
207#define CONSOLE_SIZE (CONSOLE_ROW_SIZE * CONSOLE_ROWS)
Simon Glass3c0b6682015-01-01 16:17:57 -0700208
209/* By default we scroll by a single line */
210#ifndef CONFIG_CONSOLE_SCROLL_LINES
211#define CONFIG_CONSOLE_SCROLL_LINES 1
212#endif
wdenkc6097192002-11-03 00:24:07 +0000213
214/* Macros */
wdenk4b248f32004-03-14 16:51:43 +0000215#ifdef VIDEO_FB_LITTLE_ENDIAN
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000216#define SWAP16(x) ((((x) & 0x00ff) << 8) | \
217 ((x) >> 8) \
218 )
219#define SWAP32(x) ((((x) & 0x000000ff) << 24) | \
220 (((x) & 0x0000ff00) << 8) | \
221 (((x) & 0x00ff0000) >> 8) | \
222 (((x) & 0xff000000) >> 24) \
223 )
224#define SHORTSWAP32(x) ((((x) & 0x000000ff) << 8) | \
225 (((x) & 0x0000ff00) >> 8) | \
226 (((x) & 0x00ff0000) << 8) | \
227 (((x) & 0xff000000) >> 8) \
228 )
wdenkc6097192002-11-03 00:24:07 +0000229#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000230#define SWAP16(x) (x)
231#define SWAP32(x) (x)
Wolfgang Grandegger229b6dc2009-10-23 12:03:15 +0200232#if defined(VIDEO_FB_16BPP_WORD_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000233#define SHORTSWAP32(x) (((x) >> 16) | ((x) << 16))
Andrew Dyercc347802008-08-29 12:30:39 -0500234#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000235#define SHORTSWAP32(x) (x)
Anatolij Gustschinbed53752008-01-11 14:30:01 +0100236#endif
wdenkc6097192002-11-03 00:24:07 +0000237#endif
238
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +0200239DECLARE_GLOBAL_DATA_PTR;
240
wdenkc6097192002-11-03 00:24:07 +0000241/* Locals */
242static GraphicDevice *pGD; /* Pointer to Graphic array */
243
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000244static void *video_fb_address; /* frame buffer address */
wdenk4b248f32004-03-14 16:51:43 +0000245static void *video_console_address; /* console buffer start address */
wdenkc6097192002-11-03 00:24:07 +0000246
Matthias Weisserbe129aa2010-01-12 12:06:31 +0100247static int video_logo_height = VIDEO_LOGO_HEIGHT;
248
Anatolij Gustschina45adde2011-12-07 03:58:10 +0000249static int __maybe_unused cursor_state;
250static int __maybe_unused old_col;
251static int __maybe_unused old_row;
Gabe Black03d31fc2011-11-30 13:50:50 +0000252
Wolfgang Denk57912932011-07-30 12:48:09 +0000253static int console_col; /* cursor col */
254static int console_row; /* cursor row */
wdenkc6097192002-11-03 00:24:07 +0000255
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000256static u32 eorx, fgx, bgx; /* color pats */
wdenkc6097192002-11-03 00:24:07 +0000257
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +0200258static int cfb_do_flush_cache;
259
Pali Rohár33a35bb2012-10-19 13:30:09 +0000260#ifdef CONFIG_CFB_CONSOLE_ANSI
261static char ansi_buf[10];
262static int ansi_buf_size;
263static int ansi_colors_need_revert;
264static int ansi_cursor_hidden;
265#endif
266
wdenkc6097192002-11-03 00:24:07 +0000267static const int video_font_draw_table8[] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000268 0x00000000, 0x000000ff, 0x0000ff00, 0x0000ffff,
269 0x00ff0000, 0x00ff00ff, 0x00ffff00, 0x00ffffff,
270 0xff000000, 0xff0000ff, 0xff00ff00, 0xff00ffff,
271 0xffff0000, 0xffff00ff, 0xffffff00, 0xffffffff
272};
wdenkc6097192002-11-03 00:24:07 +0000273
274static const int video_font_draw_table15[] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000275 0x00000000, 0x00007fff, 0x7fff0000, 0x7fff7fff
276};
wdenkc6097192002-11-03 00:24:07 +0000277
278static const int video_font_draw_table16[] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000279 0x00000000, 0x0000ffff, 0xffff0000, 0xffffffff
280};
wdenkc6097192002-11-03 00:24:07 +0000281
282static const int video_font_draw_table24[16][3] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000283 {0x00000000, 0x00000000, 0x00000000},
284 {0x00000000, 0x00000000, 0x00ffffff},
285 {0x00000000, 0x0000ffff, 0xff000000},
286 {0x00000000, 0x0000ffff, 0xffffffff},
287 {0x000000ff, 0xffff0000, 0x00000000},
288 {0x000000ff, 0xffff0000, 0x00ffffff},
289 {0x000000ff, 0xffffffff, 0xff000000},
290 {0x000000ff, 0xffffffff, 0xffffffff},
291 {0xffffff00, 0x00000000, 0x00000000},
292 {0xffffff00, 0x00000000, 0x00ffffff},
293 {0xffffff00, 0x0000ffff, 0xff000000},
294 {0xffffff00, 0x0000ffff, 0xffffffff},
295 {0xffffffff, 0xffff0000, 0x00000000},
296 {0xffffffff, 0xffff0000, 0x00ffffff},
297 {0xffffffff, 0xffffffff, 0xff000000},
298 {0xffffffff, 0xffffffff, 0xffffffff}
299};
wdenkc6097192002-11-03 00:24:07 +0000300
301static const int video_font_draw_table32[16][4] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000302 {0x00000000, 0x00000000, 0x00000000, 0x00000000},
303 {0x00000000, 0x00000000, 0x00000000, 0x00ffffff},
304 {0x00000000, 0x00000000, 0x00ffffff, 0x00000000},
305 {0x00000000, 0x00000000, 0x00ffffff, 0x00ffffff},
306 {0x00000000, 0x00ffffff, 0x00000000, 0x00000000},
307 {0x00000000, 0x00ffffff, 0x00000000, 0x00ffffff},
308 {0x00000000, 0x00ffffff, 0x00ffffff, 0x00000000},
309 {0x00000000, 0x00ffffff, 0x00ffffff, 0x00ffffff},
310 {0x00ffffff, 0x00000000, 0x00000000, 0x00000000},
311 {0x00ffffff, 0x00000000, 0x00000000, 0x00ffffff},
312 {0x00ffffff, 0x00000000, 0x00ffffff, 0x00000000},
313 {0x00ffffff, 0x00000000, 0x00ffffff, 0x00ffffff},
314 {0x00ffffff, 0x00ffffff, 0x00000000, 0x00000000},
315 {0x00ffffff, 0x00ffffff, 0x00000000, 0x00ffffff},
316 {0x00ffffff, 0x00ffffff, 0x00ffffff, 0x00000000},
317 {0x00ffffff, 0x00ffffff, 0x00ffffff, 0x00ffffff}
318};
wdenkc6097192002-11-03 00:24:07 +0000319
Heiko Schocher2bc4aa52013-08-03 07:22:53 +0200320/*
321 * Implement a weak default function for boards that optionally
322 * need to skip the cfb initialization.
323 */
324__weak int board_cfb_skip(void)
325{
326 /* As default, don't skip cfb init */
327 return 0;
328}
329
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000330static void video_drawchars(int xx, int yy, unsigned char *s, int count)
wdenkc6097192002-11-03 00:24:07 +0000331{
wdenk4b248f32004-03-14 16:51:43 +0000332 u8 *cdat, *dest, *dest0;
333 int rows, offset, c;
wdenkc6097192002-11-03 00:24:07 +0000334
wdenk4b248f32004-03-14 16:51:43 +0000335 offset = yy * VIDEO_LINE_LEN + xx * VIDEO_PIXEL_SIZE;
336 dest0 = video_fb_address + offset;
wdenkc6097192002-11-03 00:24:07 +0000337
wdenk4b248f32004-03-14 16:51:43 +0000338 switch (VIDEO_DATA_FORMAT) {
339 case GDF__8BIT_INDEX:
340 case GDF__8BIT_332RGB:
341 while (count--) {
342 c = *s;
343 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
344 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000345 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000346 u8 bits = *cdat++;
wdenkc6097192002-11-03 00:24:07 +0000347
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000348 ((u32 *) dest)[0] =
349 (video_font_draw_table8[bits >> 4] &
350 eorx) ^ bgx;
Marek Vasutfd8cf992013-07-30 23:37:59 +0200351
352 if (VIDEO_FONT_WIDTH == 4)
353 continue;
354
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000355 ((u32 *) dest)[1] =
356 (video_font_draw_table8[bits & 15] &
357 eorx) ^ bgx;
wdenk4b248f32004-03-14 16:51:43 +0000358 }
359 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
360 s++;
361 }
362 break;
wdenkc6097192002-11-03 00:24:07 +0000363
wdenk4b248f32004-03-14 16:51:43 +0000364 case GDF_15BIT_555RGB:
365 while (count--) {
366 c = *s;
367 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
368 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000369 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000370 u8 bits = *cdat++;
wdenkc6097192002-11-03 00:24:07 +0000371
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000372 ((u32 *) dest)[0] =
373 SHORTSWAP32((video_font_draw_table15
374 [bits >> 6] & eorx) ^
375 bgx);
376 ((u32 *) dest)[1] =
377 SHORTSWAP32((video_font_draw_table15
378 [bits >> 4 & 3] & eorx) ^
379 bgx);
Marek Vasutfd8cf992013-07-30 23:37:59 +0200380
381 if (VIDEO_FONT_WIDTH == 4)
382 continue;
383
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000384 ((u32 *) dest)[2] =
385 SHORTSWAP32((video_font_draw_table15
386 [bits >> 2 & 3] & eorx) ^
387 bgx);
388 ((u32 *) dest)[3] =
389 SHORTSWAP32((video_font_draw_table15
390 [bits & 3] & eorx) ^
391 bgx);
wdenk4b248f32004-03-14 16:51:43 +0000392 }
393 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
394 s++;
395 }
396 break;
wdenkc6097192002-11-03 00:24:07 +0000397
wdenk4b248f32004-03-14 16:51:43 +0000398 case GDF_16BIT_565RGB:
399 while (count--) {
400 c = *s;
401 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
402 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000403 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000404 u8 bits = *cdat++;
405
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000406 ((u32 *) dest)[0] =
407 SHORTSWAP32((video_font_draw_table16
408 [bits >> 6] & eorx) ^
409 bgx);
410 ((u32 *) dest)[1] =
411 SHORTSWAP32((video_font_draw_table16
412 [bits >> 4 & 3] & eorx) ^
413 bgx);
Marek Vasutfd8cf992013-07-30 23:37:59 +0200414
415 if (VIDEO_FONT_WIDTH == 4)
416 continue;
417
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000418 ((u32 *) dest)[2] =
419 SHORTSWAP32((video_font_draw_table16
420 [bits >> 2 & 3] & eorx) ^
421 bgx);
422 ((u32 *) dest)[3] =
423 SHORTSWAP32((video_font_draw_table16
424 [bits & 3] & eorx) ^
425 bgx);
wdenk4b248f32004-03-14 16:51:43 +0000426 }
427 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
428 s++;
429 }
430 break;
431
432 case GDF_32BIT_X888RGB:
433 while (count--) {
434 c = *s;
435 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
436 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000437 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000438 u8 bits = *cdat++;
439
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000440 ((u32 *) dest)[0] =
441 SWAP32((video_font_draw_table32
442 [bits >> 4][0] & eorx) ^ bgx);
443 ((u32 *) dest)[1] =
444 SWAP32((video_font_draw_table32
445 [bits >> 4][1] & eorx) ^ bgx);
446 ((u32 *) dest)[2] =
447 SWAP32((video_font_draw_table32
448 [bits >> 4][2] & eorx) ^ bgx);
449 ((u32 *) dest)[3] =
450 SWAP32((video_font_draw_table32
451 [bits >> 4][3] & eorx) ^ bgx);
Marek Vasutfd8cf992013-07-30 23:37:59 +0200452
453
454 if (VIDEO_FONT_WIDTH == 4)
455 continue;
456
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000457 ((u32 *) dest)[4] =
458 SWAP32((video_font_draw_table32
459 [bits & 15][0] & eorx) ^ bgx);
460 ((u32 *) dest)[5] =
461 SWAP32((video_font_draw_table32
462 [bits & 15][1] & eorx) ^ bgx);
463 ((u32 *) dest)[6] =
464 SWAP32((video_font_draw_table32
465 [bits & 15][2] & eorx) ^ bgx);
466 ((u32 *) dest)[7] =
467 SWAP32((video_font_draw_table32
468 [bits & 15][3] & eorx) ^ bgx);
wdenk4b248f32004-03-14 16:51:43 +0000469 }
470 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
471 s++;
472 }
473 break;
474
475 case GDF_24BIT_888RGB:
476 while (count--) {
477 c = *s;
478 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
479 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000480 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000481 u8 bits = *cdat++;
482
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000483 ((u32 *) dest)[0] =
484 (video_font_draw_table24[bits >> 4][0]
485 & eorx) ^ bgx;
486 ((u32 *) dest)[1] =
487 (video_font_draw_table24[bits >> 4][1]
488 & eorx) ^ bgx;
489 ((u32 *) dest)[2] =
490 (video_font_draw_table24[bits >> 4][2]
491 & eorx) ^ bgx;
Marek Vasutfd8cf992013-07-30 23:37:59 +0200492
493 if (VIDEO_FONT_WIDTH == 4)
494 continue;
495
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000496 ((u32 *) dest)[3] =
497 (video_font_draw_table24[bits & 15][0]
498 & eorx) ^ bgx;
499 ((u32 *) dest)[4] =
500 (video_font_draw_table24[bits & 15][1]
501 & eorx) ^ bgx;
502 ((u32 *) dest)[5] =
503 (video_font_draw_table24[bits & 15][2]
504 & eorx) ^ bgx;
wdenk4b248f32004-03-14 16:51:43 +0000505 }
506 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
507 s++;
508 }
509 break;
wdenk8bde7f72003-06-27 21:31:46 +0000510 }
wdenkc6097192002-11-03 00:24:07 +0000511}
512
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000513static inline void video_drawstring(int xx, int yy, unsigned char *s)
wdenkc6097192002-11-03 00:24:07 +0000514{
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000515 video_drawchars(xx, yy, s, strlen((char *) s));
wdenkc6097192002-11-03 00:24:07 +0000516}
517
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000518static void video_putchar(int xx, int yy, unsigned char c)
wdenkc6097192002-11-03 00:24:07 +0000519{
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000520 video_drawchars(xx, yy + video_logo_height, &c, 1);
wdenkc6097192002-11-03 00:24:07 +0000521}
522
Simon Glass7fe09332015-10-18 21:17:18 -0600523#if defined(CONFIG_VIDEO_SW_CURSOR)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000524static void video_set_cursor(void)
wdenkc6097192002-11-03 00:24:07 +0000525{
Gabe Black03d31fc2011-11-30 13:50:50 +0000526 if (cursor_state)
527 console_cursor(0);
528 console_cursor(1);
wdenkc6097192002-11-03 00:24:07 +0000529}
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000530
Anatolij Gustschina45adde2011-12-07 03:58:10 +0000531static void video_invertchar(int xx, int yy)
532{
533 int firstx = xx * VIDEO_PIXEL_SIZE;
534 int lastx = (xx + VIDEO_FONT_WIDTH) * VIDEO_PIXEL_SIZE;
535 int firsty = yy * VIDEO_LINE_LEN;
536 int lasty = (yy + VIDEO_FONT_HEIGHT) * VIDEO_LINE_LEN;
537 int x, y;
538 for (y = firsty; y < lasty; y += VIDEO_LINE_LEN) {
539 for (x = firstx; x < lastx; x++) {
540 u8 *dest = (u8 *)(video_fb_address) + x + y;
541 *dest = ~*dest;
542 }
543 }
544}
Gabe Black03d31fc2011-11-30 13:50:50 +0000545
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000546void console_cursor(int state)
wdenkc6097192002-11-03 00:24:07 +0000547{
Gabe Black03d31fc2011-11-30 13:50:50 +0000548 if (cursor_state != state) {
549 if (cursor_state) {
550 /* turn off the cursor */
551 video_invertchar(old_col * VIDEO_FONT_WIDTH,
552 old_row * VIDEO_FONT_HEIGHT +
553 video_logo_height);
554 } else {
555 /* turn off the cursor and record where it is */
556 video_invertchar(console_col * VIDEO_FONT_WIDTH,
557 console_row * VIDEO_FONT_HEIGHT +
558 video_logo_height);
559 old_col = console_col;
560 old_row = console_row;
561 }
562 cursor_state = state;
wdenk4b248f32004-03-14 16:51:43 +0000563 }
Eric Nelsondb0d47d2013-05-06 14:27:28 +0200564 if (cfb_do_flush_cache)
565 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
wdenkc6097192002-11-03 00:24:07 +0000566}
567#endif
568
wdenkc6097192002-11-03 00:24:07 +0000569#ifndef VIDEO_HW_RECTFILL
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000570static void memsetl(int *p, int c, int v)
wdenkc6097192002-11-03 00:24:07 +0000571{
wdenk4b248f32004-03-14 16:51:43 +0000572 while (c--)
573 *(p++) = v;
wdenkc6097192002-11-03 00:24:07 +0000574}
575#endif
576
wdenkc6097192002-11-03 00:24:07 +0000577#ifndef VIDEO_HW_BITBLT
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000578static void memcpyl(int *d, int *s, int c)
wdenkc6097192002-11-03 00:24:07 +0000579{
wdenk4b248f32004-03-14 16:51:43 +0000580 while (c--)
581 *(d++) = *(s++);
wdenkc6097192002-11-03 00:24:07 +0000582}
583#endif
584
Pali Rohár90f60a82012-04-28 07:26:44 +0000585static void console_clear_line(int line, int begin, int end)
586{
587#ifdef VIDEO_HW_RECTFILL
588 video_hw_rectfill(VIDEO_PIXEL_SIZE, /* bytes per pixel */
589 VIDEO_FONT_WIDTH * begin, /* dest pos x */
590 video_logo_height +
591 VIDEO_FONT_HEIGHT * line, /* dest pos y */
592 VIDEO_FONT_WIDTH * (end - begin + 1), /* fr. width */
593 VIDEO_FONT_HEIGHT, /* frame height */
594 bgx /* fill color */
595 );
596#else
597 if (begin == 0 && (end + 1) == CONSOLE_COLS) {
598 memsetl(CONSOLE_ROW_FIRST +
599 CONSOLE_ROW_SIZE * line, /* offset of row */
600 CONSOLE_ROW_SIZE >> 2, /* length of row */
601 bgx /* fill color */
602 );
603 } else {
604 void *offset;
605 int i, size;
606
607 offset = CONSOLE_ROW_FIRST +
608 CONSOLE_ROW_SIZE * line + /* offset of row */
609 VIDEO_FONT_WIDTH *
610 VIDEO_PIXEL_SIZE * begin; /* offset of col */
611 size = VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE * (end - begin + 1);
612 size >>= 2; /* length to end for memsetl() */
613 /* fill at col offset of i'th line using bgx as fill color */
614 for (i = 0; i < VIDEO_FONT_HEIGHT; i++)
615 memsetl(offset + i * VIDEO_LINE_LEN, size, bgx);
616 }
617#endif
618}
619
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000620static void console_scrollup(void)
wdenkc6097192002-11-03 00:24:07 +0000621{
Simon Glass3c0b6682015-01-01 16:17:57 -0700622 const int rows = CONFIG_CONSOLE_SCROLL_LINES;
623 int i;
624
wdenk4b248f32004-03-14 16:51:43 +0000625 /* copy up rows ignoring the first one */
wdenkc6097192002-11-03 00:24:07 +0000626
627#ifdef VIDEO_HW_BITBLT
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000628 video_hw_bitblt(VIDEO_PIXEL_SIZE, /* bytes per pixel */
629 0, /* source pos x */
630 video_logo_height +
Simon Glass3c0b6682015-01-01 16:17:57 -0700631 VIDEO_FONT_HEIGHT * rows, /* source pos y */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000632 0, /* dest pos x */
633 video_logo_height, /* dest pos y */
634 VIDEO_VISIBLE_COLS, /* frame width */
635 VIDEO_VISIBLE_ROWS
636 - video_logo_height
Simon Glass3c0b6682015-01-01 16:17:57 -0700637 - VIDEO_FONT_HEIGHT * rows /* frame height */
wdenk4b248f32004-03-14 16:51:43 +0000638 );
wdenkc6097192002-11-03 00:24:07 +0000639#else
Simon Glass3c0b6682015-01-01 16:17:57 -0700640 memcpyl(CONSOLE_ROW_FIRST, CONSOLE_ROW_FIRST + rows * CONSOLE_ROW_SIZE,
641 (CONSOLE_SIZE - CONSOLE_ROW_SIZE * rows) >> 2);
wdenkc6097192002-11-03 00:24:07 +0000642#endif
wdenk4b248f32004-03-14 16:51:43 +0000643 /* clear the last one */
Simon Glass3c0b6682015-01-01 16:17:57 -0700644 for (i = 1; i <= rows; i++)
645 console_clear_line(CONSOLE_ROWS - i, 0, CONSOLE_COLS - 1);
646
647 /* Decrement row number */
648 console_row -= rows;
wdenkc6097192002-11-03 00:24:07 +0000649}
650
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000651static void console_back(void)
wdenkc6097192002-11-03 00:24:07 +0000652{
Timur Tabi65618632010-08-27 15:45:47 -0500653 console_col--;
wdenkc6097192002-11-03 00:24:07 +0000654
wdenk4b248f32004-03-14 16:51:43 +0000655 if (console_col < 0) {
656 console_col = CONSOLE_COLS - 1;
657 console_row--;
658 if (console_row < 0)
659 console_row = 0;
660 }
wdenkc6097192002-11-03 00:24:07 +0000661}
662
Pali Rohár33a35bb2012-10-19 13:30:09 +0000663#ifdef CONFIG_CFB_CONSOLE_ANSI
664
665static void console_clear(void)
wdenkc6097192002-11-03 00:24:07 +0000666{
Pali Rohár33a35bb2012-10-19 13:30:09 +0000667#ifdef VIDEO_HW_RECTFILL
668 video_hw_rectfill(VIDEO_PIXEL_SIZE, /* bytes per pixel */
669 0, /* dest pos x */
670 video_logo_height, /* dest pos y */
671 VIDEO_VISIBLE_COLS, /* frame width */
672 VIDEO_VISIBLE_ROWS, /* frame height */
673 bgx /* fill color */
674 );
675#else
676 memsetl(CONSOLE_ROW_FIRST, CONSOLE_SIZE, bgx);
677#endif
678}
679
680static void console_cursor_fix(void)
681{
682 if (console_row < 0)
683 console_row = 0;
684 if (console_row >= CONSOLE_ROWS)
685 console_row = CONSOLE_ROWS - 1;
686 if (console_col < 0)
687 console_col = 0;
688 if (console_col >= CONSOLE_COLS)
689 console_col = CONSOLE_COLS - 1;
690}
691
692static void console_cursor_up(int n)
693{
694 console_row -= n;
695 console_cursor_fix();
696}
697
698static void console_cursor_down(int n)
699{
700 console_row += n;
701 console_cursor_fix();
702}
703
704static void console_cursor_left(int n)
705{
706 console_col -= n;
707 console_cursor_fix();
708}
709
710static void console_cursor_right(int n)
711{
712 console_col += n;
713 console_cursor_fix();
714}
715
716static void console_cursor_set_position(int row, int col)
717{
718 if (console_row != -1)
719 console_row = row;
720 if (console_col != -1)
721 console_col = col;
722 console_cursor_fix();
723}
724
725static void console_previousline(int n)
726{
727 /* FIXME: also scroll terminal ? */
728 console_row -= n;
729 console_cursor_fix();
730}
731
732static void console_swap_colors(void)
733{
734 eorx = fgx;
735 fgx = bgx;
736 bgx = eorx;
737 eorx = fgx ^ bgx;
738}
739
740static inline int console_cursor_is_visible(void)
741{
742 return !ansi_cursor_hidden;
743}
744#else
745static inline int console_cursor_is_visible(void)
746{
747 return 1;
748}
749#endif
750
751static void console_newline(int n)
752{
753 console_row += n;
wdenk4b248f32004-03-14 16:51:43 +0000754 console_col = 0;
wdenkc6097192002-11-03 00:24:07 +0000755
wdenk4b248f32004-03-14 16:51:43 +0000756 /* Check if we need to scroll the terminal */
757 if (console_row >= CONSOLE_ROWS) {
758 /* Scroll everything up */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000759 console_scrollup();
wdenk4b248f32004-03-14 16:51:43 +0000760 }
wdenkc6097192002-11-03 00:24:07 +0000761}
762
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000763static void console_cr(void)
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100764{
Timur Tabi65618632010-08-27 15:45:47 -0500765 console_col = 0;
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100766}
767
Pali Rohár33a35bb2012-10-19 13:30:09 +0000768static void parse_putc(const char c)
wdenkc6097192002-11-03 00:24:07 +0000769{
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100770 static int nl = 1;
771
Pali Rohár33a35bb2012-10-19 13:30:09 +0000772 if (console_cursor_is_visible())
773 CURSOR_OFF;
Gabe Black03d31fc2011-11-30 13:50:50 +0000774
wdenk4b248f32004-03-14 16:51:43 +0000775 switch (c) {
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100776 case 13: /* back to first column */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000777 console_cr();
wdenk4b248f32004-03-14 16:51:43 +0000778 break;
wdenkc6097192002-11-03 00:24:07 +0000779
wdenk4b248f32004-03-14 16:51:43 +0000780 case '\n': /* next line */
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100781 if (console_col || (!console_col && nl))
Pali Rohár33a35bb2012-10-19 13:30:09 +0000782 console_newline(1);
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100783 nl = 1;
wdenk4b248f32004-03-14 16:51:43 +0000784 break;
wdenkc6097192002-11-03 00:24:07 +0000785
wdenk4b248f32004-03-14 16:51:43 +0000786 case 9: /* tab 8 */
Timur Tabi65618632010-08-27 15:45:47 -0500787 console_col |= 0x0008;
wdenk4b248f32004-03-14 16:51:43 +0000788 console_col &= ~0x0007;
wdenkc6097192002-11-03 00:24:07 +0000789
wdenk4b248f32004-03-14 16:51:43 +0000790 if (console_col >= CONSOLE_COLS)
Pali Rohár33a35bb2012-10-19 13:30:09 +0000791 console_newline(1);
wdenk4b248f32004-03-14 16:51:43 +0000792 break;
wdenkc6097192002-11-03 00:24:07 +0000793
wdenk4b248f32004-03-14 16:51:43 +0000794 case 8: /* backspace */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000795 console_back();
wdenk4b248f32004-03-14 16:51:43 +0000796 break;
wdenkc6097192002-11-03 00:24:07 +0000797
Pali Rohár24fe06c2012-04-28 07:26:47 +0000798 case 7: /* bell */
799 break; /* ignored */
800
wdenk4b248f32004-03-14 16:51:43 +0000801 default: /* draw the char */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000802 video_putchar(console_col * VIDEO_FONT_WIDTH,
803 console_row * VIDEO_FONT_HEIGHT, c);
wdenk4b248f32004-03-14 16:51:43 +0000804 console_col++;
wdenkc6097192002-11-03 00:24:07 +0000805
wdenk4b248f32004-03-14 16:51:43 +0000806 /* check for newline */
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100807 if (console_col >= CONSOLE_COLS) {
Pali Rohár33a35bb2012-10-19 13:30:09 +0000808 console_newline(1);
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100809 nl = 0;
810 }
wdenk4b248f32004-03-14 16:51:43 +0000811 }
Pali Rohár33a35bb2012-10-19 13:30:09 +0000812
813 if (console_cursor_is_visible())
814 CURSOR_SET;
815}
816
Simon Glass0a6eac82016-10-17 20:12:54 -0600817static void cfb_video_putc(struct stdio_dev *dev, const char c)
Pali Rohár33a35bb2012-10-19 13:30:09 +0000818{
819#ifdef CONFIG_CFB_CONSOLE_ANSI
820 int i;
821
822 if (c == 27) {
823 for (i = 0; i < ansi_buf_size; ++i)
824 parse_putc(ansi_buf[i]);
825 ansi_buf[0] = 27;
826 ansi_buf_size = 1;
827 return;
828 }
829
830 if (ansi_buf_size > 0) {
831 /*
832 * 0 - ESC
833 * 1 - [
834 * 2 - num1
835 * 3 - ..
836 * 4 - ;
837 * 5 - num2
838 * 6 - ..
839 * - cchar
840 */
841 int next = 0;
842
843 int flush = 0;
844 int fail = 0;
845
846 int num1 = 0;
847 int num2 = 0;
848 int cchar = 0;
849
850 ansi_buf[ansi_buf_size++] = c;
851
852 if (ansi_buf_size >= sizeof(ansi_buf))
853 fail = 1;
854
855 for (i = 0; i < ansi_buf_size; ++i) {
856 if (fail)
857 break;
858
859 switch (next) {
860 case 0:
861 if (ansi_buf[i] == 27)
862 next = 1;
863 else
864 fail = 1;
865 break;
866
867 case 1:
868 if (ansi_buf[i] == '[')
869 next = 2;
870 else
871 fail = 1;
872 break;
873
874 case 2:
875 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
876 num1 = ansi_buf[i]-'0';
877 next = 3;
878 } else if (ansi_buf[i] != '?') {
879 --i;
880 num1 = 1;
881 next = 4;
882 }
883 break;
884
885 case 3:
886 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
887 num1 *= 10;
888 num1 += ansi_buf[i]-'0';
889 } else {
890 --i;
891 next = 4;
892 }
893 break;
894
895 case 4:
896 if (ansi_buf[i] != ';') {
897 --i;
898 next = 7;
899 } else
900 next = 5;
901 break;
902
903 case 5:
904 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
905 num2 = ansi_buf[i]-'0';
906 next = 6;
907 } else
908 fail = 1;
909 break;
910
911 case 6:
912 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
913 num2 *= 10;
914 num2 += ansi_buf[i]-'0';
915 } else {
916 --i;
917 next = 7;
918 }
919 break;
920
921 case 7:
922 if ((ansi_buf[i] >= 'A' && ansi_buf[i] <= 'H')
923 || ansi_buf[i] == 'J'
924 || ansi_buf[i] == 'K'
925 || ansi_buf[i] == 'h'
926 || ansi_buf[i] == 'l'
927 || ansi_buf[i] == 'm') {
928 cchar = ansi_buf[i];
929 flush = 1;
930 } else
931 fail = 1;
932 break;
933 }
934 }
935
936 if (fail) {
937 for (i = 0; i < ansi_buf_size; ++i)
938 parse_putc(ansi_buf[i]);
939 ansi_buf_size = 0;
940 return;
941 }
942
943 if (flush) {
944 if (!ansi_cursor_hidden)
945 CURSOR_OFF;
946 ansi_buf_size = 0;
947 switch (cchar) {
948 case 'A':
949 /* move cursor num1 rows up */
950 console_cursor_up(num1);
951 break;
952 case 'B':
953 /* move cursor num1 rows down */
954 console_cursor_down(num1);
955 break;
956 case 'C':
957 /* move cursor num1 columns forward */
958 console_cursor_right(num1);
959 break;
960 case 'D':
961 /* move cursor num1 columns back */
962 console_cursor_left(num1);
963 break;
964 case 'E':
965 /* move cursor num1 rows up at begin of row */
966 console_previousline(num1);
967 break;
968 case 'F':
969 /* move cursor num1 rows down at begin of row */
970 console_newline(num1);
971 break;
972 case 'G':
973 /* move cursor to column num1 */
974 console_cursor_set_position(-1, num1-1);
975 break;
976 case 'H':
977 /* move cursor to row num1, column num2 */
978 console_cursor_set_position(num1-1, num2-1);
979 break;
980 case 'J':
981 /* clear console and move cursor to 0, 0 */
982 console_clear();
983 console_cursor_set_position(0, 0);
984 break;
985 case 'K':
986 /* clear line */
987 if (num1 == 0)
988 console_clear_line(console_row,
989 console_col,
990 CONSOLE_COLS-1);
991 else if (num1 == 1)
992 console_clear_line(console_row,
993 0, console_col);
994 else
995 console_clear_line(console_row,
996 0, CONSOLE_COLS-1);
997 break;
998 case 'h':
999 ansi_cursor_hidden = 0;
1000 break;
1001 case 'l':
1002 ansi_cursor_hidden = 1;
1003 break;
1004 case 'm':
1005 if (num1 == 0) { /* reset swapped colors */
1006 if (ansi_colors_need_revert) {
1007 console_swap_colors();
1008 ansi_colors_need_revert = 0;
1009 }
1010 } else if (num1 == 7) { /* once swap colors */
1011 if (!ansi_colors_need_revert) {
1012 console_swap_colors();
1013 ansi_colors_need_revert = 1;
1014 }
1015 }
1016 break;
1017 }
1018 if (!ansi_cursor_hidden)
1019 CURSOR_SET;
1020 }
1021 } else {
1022 parse_putc(c);
1023 }
1024#else
1025 parse_putc(c);
1026#endif
Eric Nelsondb0d47d2013-05-06 14:27:28 +02001027 if (cfb_do_flush_cache)
1028 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
Timur Tabi65618632010-08-27 15:45:47 -05001029}
wdenkc6097192002-11-03 00:24:07 +00001030
Simon Glass0a6eac82016-10-17 20:12:54 -06001031static void cfb_video_puts(struct stdio_dev *dev, const char *s)
wdenkc6097192002-11-03 00:24:07 +00001032{
Soeren Mochd37e96e2014-10-24 16:33:30 +02001033 int flush = cfb_do_flush_cache;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001034 int count = strlen(s);
wdenkc6097192002-11-03 00:24:07 +00001035
Soeren Mochd37e96e2014-10-24 16:33:30 +02001036 /* temporarily disable cache flush */
1037 cfb_do_flush_cache = 0;
1038
wdenk4b248f32004-03-14 16:51:43 +00001039 while (count--)
Simon Glass0a6eac82016-10-17 20:12:54 -06001040 cfb_video_putc(dev, *s++);
Soeren Mochd37e96e2014-10-24 16:33:30 +02001041
1042 if (flush) {
1043 cfb_do_flush_cache = flush;
1044 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
1045 }
wdenkc6097192002-11-03 00:24:07 +00001046}
1047
Anatolij Gustschin10543822010-05-01 22:21:09 +02001048/*
1049 * Do not enforce drivers (or board code) to provide empty
1050 * video_set_lut() if they do not support 8 bpp format.
1051 * Implement weak default function instead.
1052 */
Jeroen Hofstee69d27542014-10-08 22:57:30 +02001053__weak void video_set_lut(unsigned int index, unsigned char r,
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001054 unsigned char g, unsigned char b)
Anatolij Gustschin10543822010-05-01 22:21:09 +02001055{
1056}
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001057
Jon Loeliger07d38a12007-07-09 17:30:01 -05001058#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
wdenk4b248f32004-03-14 16:51:43 +00001059
1060#define FILL_8BIT_332RGB(r,g,b) { \
1061 *fb = ((r>>5)<<5) | ((g>>5)<<2) | (b>>6); \
1062 fb ++; \
1063}
1064
1065#define FILL_15BIT_555RGB(r,g,b) { \
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001066 *(unsigned short *)fb = \
1067 SWAP16((unsigned short)(((r>>3)<<10) | \
1068 ((g>>3)<<5) | \
1069 (b>>3))); \
wdenk4b248f32004-03-14 16:51:43 +00001070 fb += 2; \
1071}
1072
1073#define FILL_16BIT_565RGB(r,g,b) { \
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001074 *(unsigned short *)fb = \
1075 SWAP16((unsigned short)((((r)>>3)<<11)| \
1076 (((g)>>2)<<5) | \
1077 ((b)>>3))); \
wdenk4b248f32004-03-14 16:51:43 +00001078 fb += 2; \
1079}
1080
1081#define FILL_32BIT_X888RGB(r,g,b) { \
Andre Przywara1d4ed262017-03-06 01:13:38 +00001082 *(u32 *)fb = \
1083 SWAP32((unsigned int)(((r<<16) | \
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001084 (g<<8) | \
1085 b))); \
wdenk4b248f32004-03-14 16:51:43 +00001086 fb += 4; \
1087}
1088
1089#ifdef VIDEO_FB_LITTLE_ENDIAN
1090#define FILL_24BIT_888RGB(r,g,b) { \
1091 fb[0] = b; \
1092 fb[1] = g; \
1093 fb[2] = r; \
1094 fb += 3; \
1095}
1096#else
1097#define FILL_24BIT_888RGB(r,g,b) { \
1098 fb[0] = r; \
1099 fb[1] = g; \
1100 fb[2] = b; \
1101 fb += 3; \
1102}
1103#endif
1104
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001105#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001106static inline void fill_555rgb_pswap(uchar *fb, int x, u8 r, u8 g, u8 b)
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001107{
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001108 ushort *dst = (ushort *) fb;
1109 ushort color = (ushort) (((r >> 3) << 10) |
1110 ((g >> 3) << 5) |
1111 (b >> 3));
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001112 if (x & 1)
1113 *(--dst) = color;
1114 else
1115 *(++dst) = color;
1116}
1117#endif
wdenk4b248f32004-03-14 16:51:43 +00001118
1119/*
Anatolij Gustschind5011762010-03-15 14:50:25 +01001120 * RLE8 bitmap support
1121 */
1122
1123#ifdef CONFIG_VIDEO_BMP_RLE8
1124/* Pre-calculated color table entry */
1125struct palette {
1126 union {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001127 unsigned short w; /* word */
1128 unsigned int dw; /* double word */
1129 } ce; /* color entry */
Anatolij Gustschind5011762010-03-15 14:50:25 +01001130};
1131
1132/*
1133 * Helper to draw encoded/unencoded run.
1134 */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001135static void draw_bitmap(uchar **fb, uchar *bm, struct palette *p,
1136 int cnt, int enc)
Anatolij Gustschind5011762010-03-15 14:50:25 +01001137{
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001138 ulong addr = (ulong) *fb;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001139 int *off;
1140 int enc_off = 1;
1141 int i;
1142
1143 /*
1144 * Setup offset of the color index in the bitmap.
1145 * Color index of encoded run is at offset 1.
1146 */
1147 off = enc ? &enc_off : &i;
1148
1149 switch (VIDEO_DATA_FORMAT) {
1150 case GDF__8BIT_INDEX:
1151 for (i = 0; i < cnt; i++)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001152 *(unsigned char *) addr++ = bm[*off];
Anatolij Gustschind5011762010-03-15 14:50:25 +01001153 break;
1154 case GDF_15BIT_555RGB:
1155 case GDF_16BIT_565RGB:
1156 /* differences handled while pre-calculating palette */
1157 for (i = 0; i < cnt; i++) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001158 *(unsigned short *) addr = p[bm[*off]].ce.w;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001159 addr += 2;
1160 }
1161 break;
1162 case GDF_32BIT_X888RGB:
1163 for (i = 0; i < cnt; i++) {
Andre Przywara1d4ed262017-03-06 01:13:38 +00001164 *(u32 *) addr = p[bm[*off]].ce.dw;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001165 addr += 4;
1166 }
1167 break;
1168 }
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001169 *fb = (uchar *) addr; /* return modified address */
Anatolij Gustschind5011762010-03-15 14:50:25 +01001170}
1171
Simon Glass1c3dbe52015-05-13 07:02:27 -06001172static int display_rle8_bitmap(struct bmp_image *img, int xoff, int yoff,
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001173 int width, int height)
Anatolij Gustschind5011762010-03-15 14:50:25 +01001174{
1175 unsigned char *bm;
1176 unsigned char *fbp;
1177 unsigned int cnt, runlen;
1178 int decode = 1;
1179 int x, y, bpp, i, ncolors;
1180 struct palette p[256];
Simon Glass1c3dbe52015-05-13 07:02:27 -06001181 struct bmp_color_table_entry cte;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001182 int green_shift, red_off;
Hans de Goedec67a8762015-08-04 12:15:39 +02001183 int limit = (VIDEO_LINE_LEN / VIDEO_PIXEL_SIZE) * VIDEO_ROWS;
Anatolij Gustschin74446b62011-02-21 21:33:29 +01001184 int pixels = 0;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001185
1186 x = 0;
1187 y = __le32_to_cpu(img->header.height) - 1;
1188 ncolors = __le32_to_cpu(img->header.colors_used);
1189 bpp = VIDEO_PIXEL_SIZE;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001190 fbp = (unsigned char *) ((unsigned int) video_fb_address +
Hans de Goedec67a8762015-08-04 12:15:39 +02001191 (y + yoff) * VIDEO_LINE_LEN +
1192 xoff * bpp);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001193
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001194 bm = (uchar *) img + __le32_to_cpu(img->header.data_offset);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001195
1196 /* pre-calculate and setup palette */
1197 switch (VIDEO_DATA_FORMAT) {
1198 case GDF__8BIT_INDEX:
1199 for (i = 0; i < ncolors; i++) {
1200 cte = img->color_table[i];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001201 video_set_lut(i, cte.red, cte.green, cte.blue);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001202 }
1203 break;
1204 case GDF_15BIT_555RGB:
1205 case GDF_16BIT_565RGB:
1206 if (VIDEO_DATA_FORMAT == GDF_15BIT_555RGB) {
1207 green_shift = 3;
1208 red_off = 10;
1209 } else {
1210 green_shift = 2;
1211 red_off = 11;
1212 }
1213 for (i = 0; i < ncolors; i++) {
1214 cte = img->color_table[i];
1215 p[i].ce.w = SWAP16((unsigned short)
1216 (((cte.red >> 3) << red_off) |
1217 ((cte.green >> green_shift) << 5) |
1218 cte.blue >> 3));
1219 }
1220 break;
1221 case GDF_32BIT_X888RGB:
1222 for (i = 0; i < ncolors; i++) {
1223 cte = img->color_table[i];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001224 p[i].ce.dw = SWAP32((cte.red << 16) |
1225 (cte.green << 8) |
Anatolij Gustschind5011762010-03-15 14:50:25 +01001226 cte.blue);
1227 }
1228 break;
1229 default:
1230 printf("RLE Bitmap unsupported in video mode 0x%x\n",
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001231 VIDEO_DATA_FORMAT);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001232 return -1;
1233 }
1234
1235 while (decode) {
1236 switch (bm[0]) {
1237 case 0:
1238 switch (bm[1]) {
1239 case 0:
1240 /* scan line end marker */
1241 bm += 2;
1242 x = 0;
1243 y--;
1244 fbp = (unsigned char *)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001245 ((unsigned int) video_fb_address +
Hans de Goedec67a8762015-08-04 12:15:39 +02001246 (y + yoff) * VIDEO_LINE_LEN +
1247 xoff * bpp);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001248 continue;
1249 case 1:
1250 /* end of bitmap data marker */
1251 decode = 0;
1252 break;
1253 case 2:
1254 /* run offset marker */
1255 x += bm[2];
1256 y -= bm[3];
1257 fbp = (unsigned char *)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001258 ((unsigned int) video_fb_address +
Hans de Goedec67a8762015-08-04 12:15:39 +02001259 (y + yoff) * VIDEO_LINE_LEN +
1260 xoff * bpp);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001261 bm += 4;
1262 break;
1263 default:
1264 /* unencoded run */
1265 cnt = bm[1];
1266 runlen = cnt;
Anatolij Gustschin74446b62011-02-21 21:33:29 +01001267 pixels += cnt;
1268 if (pixels > limit)
1269 goto error;
1270
Anatolij Gustschind5011762010-03-15 14:50:25 +01001271 bm += 2;
1272 if (y < height) {
1273 if (x >= width) {
1274 x += runlen;
1275 goto next_run;
1276 }
1277 if (x + runlen > width)
1278 cnt = width - x;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001279 draw_bitmap(&fbp, bm, p, cnt, 0);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001280 x += runlen;
1281 }
1282next_run:
1283 bm += runlen;
1284 if (runlen & 1)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001285 bm++; /* 0 padding if length is odd */
Anatolij Gustschind5011762010-03-15 14:50:25 +01001286 }
1287 break;
1288 default:
1289 /* encoded run */
Anatolij Gustschin74446b62011-02-21 21:33:29 +01001290 cnt = bm[0];
1291 runlen = cnt;
1292 pixels += cnt;
1293 if (pixels > limit)
1294 goto error;
1295
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001296 if (y < height) { /* only draw into visible area */
Anatolij Gustschind5011762010-03-15 14:50:25 +01001297 if (x >= width) {
1298 x += runlen;
1299 bm += 2;
1300 continue;
1301 }
1302 if (x + runlen > width)
1303 cnt = width - x;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001304 draw_bitmap(&fbp, bm, p, cnt, 1);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001305 x += runlen;
1306 }
1307 bm += 2;
1308 break;
1309 }
1310 }
1311 return 0;
Anatolij Gustschin74446b62011-02-21 21:33:29 +01001312error:
1313 printf("Error: Too much encoded pixel data, validate your bitmap\n");
1314 return -1;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001315}
1316#endif
1317
1318/*
wdenk4b248f32004-03-14 16:51:43 +00001319 * Display the BMP file located at address bmp_image.
wdenk4b248f32004-03-14 16:51:43 +00001320 */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001321int video_display_bitmap(ulong bmp_image, int x, int y)
wdenk4b248f32004-03-14 16:51:43 +00001322{
1323 ushort xcount, ycount;
1324 uchar *fb;
Simon Glass1c3dbe52015-05-13 07:02:27 -06001325 struct bmp_image *bmp = (struct bmp_image *)bmp_image;
wdenk4b248f32004-03-14 16:51:43 +00001326 uchar *bmap;
1327 ushort padded_line;
1328 unsigned long width, height, bpp;
1329 unsigned colors;
1330 unsigned long compression;
Simon Glass1c3dbe52015-05-13 07:02:27 -06001331 struct bmp_color_table_entry cte;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001332
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001333#ifdef CONFIG_VIDEO_BMP_GZIP
1334 unsigned char *dst = NULL;
1335 ulong len;
1336#endif
wdenk4b248f32004-03-14 16:51:43 +00001337
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001338 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001339
1340 if (!((bmp->header.signature[0] == 'B') &&
1341 (bmp->header.signature[1] == 'M'))) {
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001342
1343#ifdef CONFIG_VIDEO_BMP_GZIP
1344 /*
1345 * Could be a gzipped bmp image, try to decrompress...
1346 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001347 len = CONFIG_SYS_VIDEO_LOGO_MAX_SIZE;
1348 dst = malloc(CONFIG_SYS_VIDEO_LOGO_MAX_SIZE);
Stefan Roesec29ab9d2005-10-08 10:19:07 +02001349 if (dst == NULL) {
1350 printf("Error: malloc in gunzip failed!\n");
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001351 return 1;
Stefan Roesec29ab9d2005-10-08 10:19:07 +02001352 }
Eric Nelson5ca05c82014-03-08 07:55:52 -07001353 /*
1354 * NB: we need to force offset of +2
1355 * See doc/README.displaying-bmps
1356 */
1357 if (gunzip(dst+2, CONFIG_SYS_VIDEO_LOGO_MAX_SIZE-2,
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001358 (uchar *) bmp_image,
1359 &len) != 0) {
1360 printf("Error: no valid bmp or bmp.gz image at %lx\n",
1361 bmp_image);
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001362 free(dst);
1363 return 1;
1364 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001365 if (len == CONFIG_SYS_VIDEO_LOGO_MAX_SIZE) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001366 printf("Image could be truncated "
1367 "(increase CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)!\n");
Stefan Roesec29ab9d2005-10-08 10:19:07 +02001368 }
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001369
1370 /*
1371 * Set addr to decompressed image
1372 */
Simon Glass1c3dbe52015-05-13 07:02:27 -06001373 bmp = (struct bmp_image *)(dst+2);
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001374
1375 if (!((bmp->header.signature[0] == 'B') &&
1376 (bmp->header.signature[1] == 'M'))) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001377 printf("Error: no valid bmp.gz image at %lx\n",
1378 bmp_image);
Matthias Fuchsa49e0d12008-04-21 11:19:04 +02001379 free(dst);
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001380 return 1;
1381 }
1382#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001383 printf("Error: no valid bmp image at %lx\n", bmp_image);
wdenk4b248f32004-03-14 16:51:43 +00001384 return 1;
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001385#endif /* CONFIG_VIDEO_BMP_GZIP */
wdenk4b248f32004-03-14 16:51:43 +00001386 }
1387
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001388 width = le32_to_cpu(bmp->header.width);
1389 height = le32_to_cpu(bmp->header.height);
1390 bpp = le16_to_cpu(bmp->header.bit_count);
1391 colors = le32_to_cpu(bmp->header.colors_used);
1392 compression = le32_to_cpu(bmp->header.compression);
wdenk4b248f32004-03-14 16:51:43 +00001393
Marek Vasut68da5b12011-10-21 14:17:04 +00001394 debug("Display-bmp: %ld x %ld with %d colors\n",
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001395 width, height, colors);
wdenk4b248f32004-03-14 16:51:43 +00001396
Anatolij Gustschind5011762010-03-15 14:50:25 +01001397 if (compression != BMP_BI_RGB
1398#ifdef CONFIG_VIDEO_BMP_RLE8
1399 && compression != BMP_BI_RLE8
1400#endif
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001401 ) {
1402 printf("Error: compression type %ld not supported\n",
1403 compression);
Matthias Fuchsa49e0d12008-04-21 11:19:04 +02001404#ifdef CONFIG_VIDEO_BMP_GZIP
1405 if (dst)
1406 free(dst);
1407#endif
wdenk4b248f32004-03-14 16:51:43 +00001408 return 1;
1409 }
1410
1411 padded_line = (((width * bpp + 7) / 8) + 3) & ~0x3;
1412
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001413#ifdef CONFIG_SPLASH_SCREEN_ALIGN
1414 if (x == BMP_ALIGN_CENTER)
Masahiro Yamadab4141192014-11-07 03:03:31 +09001415 x = max(0, (int)(VIDEO_VISIBLE_COLS - width) / 2);
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001416 else if (x < 0)
Masahiro Yamadab4141192014-11-07 03:03:31 +09001417 x = max(0, (int)(VIDEO_VISIBLE_COLS - width + x + 1));
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001418
1419 if (y == BMP_ALIGN_CENTER)
Masahiro Yamadab4141192014-11-07 03:03:31 +09001420 y = max(0, (int)(VIDEO_VISIBLE_ROWS - height) / 2);
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001421 else if (y < 0)
Masahiro Yamadab4141192014-11-07 03:03:31 +09001422 y = max(0, (int)(VIDEO_VISIBLE_ROWS - height + y + 1));
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001423#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1424
Matthias Weisseracf3baa2013-02-15 03:35:12 +00001425 /*
1426 * Just ignore elements which are completely beyond screen
1427 * dimensions.
1428 */
1429 if ((x >= VIDEO_VISIBLE_COLS) || (y >= VIDEO_VISIBLE_ROWS))
1430 return 0;
1431
wdenk4b248f32004-03-14 16:51:43 +00001432 if ((x + width) > VIDEO_VISIBLE_COLS)
1433 width = VIDEO_VISIBLE_COLS - x;
1434 if ((y + height) > VIDEO_VISIBLE_ROWS)
1435 height = VIDEO_VISIBLE_ROWS - y;
1436
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001437 bmap = (uchar *) bmp + le32_to_cpu(bmp->header.data_offset);
wdenk4b248f32004-03-14 16:51:43 +00001438 fb = (uchar *) (video_fb_address +
Hans de Goedec67a8762015-08-04 12:15:39 +02001439 ((y + height - 1) * VIDEO_LINE_LEN) +
wdenk4b248f32004-03-14 16:51:43 +00001440 x * VIDEO_PIXEL_SIZE);
1441
Anatolij Gustschind5011762010-03-15 14:50:25 +01001442#ifdef CONFIG_VIDEO_BMP_RLE8
1443 if (compression == BMP_BI_RLE8) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001444 return display_rle8_bitmap(bmp, x, y, width, height);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001445 }
1446#endif
1447
Timur Tabi68f66182010-08-23 16:58:00 -05001448 /* We handle only 4, 8, or 24 bpp bitmaps */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001449 switch (le16_to_cpu(bmp->header.bit_count)) {
Timur Tabi68f66182010-08-23 16:58:00 -05001450 case 4:
1451 padded_line -= width / 2;
1452 ycount = height;
1453
1454 switch (VIDEO_DATA_FORMAT) {
1455 case GDF_32BIT_X888RGB:
1456 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001457 WATCHDOG_RESET();
Timur Tabi68f66182010-08-23 16:58:00 -05001458 /*
1459 * Don't assume that 'width' is an
1460 * even number
1461 */
1462 for (xcount = 0; xcount < width; xcount++) {
1463 uchar idx;
1464
1465 if (xcount & 1) {
1466 idx = *bmap & 0xF;
1467 bmap++;
1468 } else
1469 idx = *bmap >> 4;
1470 cte = bmp->color_table[idx];
1471 FILL_32BIT_X888RGB(cte.red, cte.green,
1472 cte.blue);
1473 }
1474 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001475 fb -= VIDEO_LINE_LEN + width *
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001476 VIDEO_PIXEL_SIZE;
Timur Tabi68f66182010-08-23 16:58:00 -05001477 }
1478 break;
1479 default:
1480 puts("4bpp bitmap unsupported with current "
1481 "video mode\n");
1482 break;
1483 }
1484 break;
1485
wdenk4b248f32004-03-14 16:51:43 +00001486 case 8:
1487 padded_line -= width;
1488 if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
Anatolij Gustschin7c050f82010-06-19 20:41:56 +02001489 /* Copy colormap */
wdenk4b248f32004-03-14 16:51:43 +00001490 for (xcount = 0; xcount < colors; ++xcount) {
1491 cte = bmp->color_table[xcount];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001492 video_set_lut(xcount, cte.red, cte.green,
1493 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001494 }
1495 }
1496 ycount = height;
1497 switch (VIDEO_DATA_FORMAT) {
1498 case GDF__8BIT_INDEX:
1499 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001500 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001501 xcount = width;
1502 while (xcount--) {
1503 *fb++ = *bmap++;
1504 }
1505 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001506 fb -= VIDEO_LINE_LEN + width *
1507 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001508 }
1509 break;
1510 case GDF__8BIT_332RGB:
1511 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001512 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001513 xcount = width;
1514 while (xcount--) {
1515 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001516 FILL_8BIT_332RGB(cte.red, cte.green,
1517 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001518 }
1519 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001520 fb -= VIDEO_LINE_LEN + width *
1521 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001522 }
1523 break;
1524 case GDF_15BIT_555RGB:
1525 while (ycount--) {
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001526#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1527 int xpos = x;
1528#endif
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001529 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001530 xcount = width;
1531 while (xcount--) {
1532 cte = bmp->color_table[*bmap++];
Andrew Dyercc347802008-08-29 12:30:39 -05001533#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001534 fill_555rgb_pswap(fb, xpos++, cte.red,
1535 cte.green,
1536 cte.blue);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001537 fb += 2;
Andrew Dyercc347802008-08-29 12:30:39 -05001538#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001539 FILL_15BIT_555RGB(cte.red, cte.green,
1540 cte.blue);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001541#endif
wdenk4b248f32004-03-14 16:51:43 +00001542 }
1543 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001544 fb -= VIDEO_LINE_LEN + width *
1545 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001546 }
1547 break;
1548 case GDF_16BIT_565RGB:
1549 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001550 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001551 xcount = width;
1552 while (xcount--) {
1553 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001554 FILL_16BIT_565RGB(cte.red, cte.green,
1555 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001556 }
1557 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001558 fb -= VIDEO_LINE_LEN + width *
1559 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001560 }
1561 break;
1562 case GDF_32BIT_X888RGB:
1563 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001564 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001565 xcount = width;
1566 while (xcount--) {
1567 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001568 FILL_32BIT_X888RGB(cte.red, cte.green,
1569 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001570 }
1571 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001572 fb -= VIDEO_LINE_LEN + width *
1573 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001574 }
1575 break;
1576 case GDF_24BIT_888RGB:
1577 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001578 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001579 xcount = width;
1580 while (xcount--) {
1581 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001582 FILL_24BIT_888RGB(cte.red, cte.green,
1583 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001584 }
1585 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001586 fb -= VIDEO_LINE_LEN + width *
1587 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001588 }
1589 break;
1590 }
1591 break;
1592 case 24:
1593 padded_line -= 3 * width;
1594 ycount = height;
1595 switch (VIDEO_DATA_FORMAT) {
1596 case GDF__8BIT_332RGB:
1597 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001598 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001599 xcount = width;
1600 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001601 FILL_8BIT_332RGB(bmap[2], bmap[1],
1602 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001603 bmap += 3;
1604 }
1605 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001606 fb -= VIDEO_LINE_LEN + width *
1607 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001608 }
1609 break;
1610 case GDF_15BIT_555RGB:
1611 while (ycount--) {
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001612#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1613 int xpos = x;
1614#endif
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001615 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001616 xcount = width;
1617 while (xcount--) {
Andrew Dyercc347802008-08-29 12:30:39 -05001618#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001619 fill_555rgb_pswap(fb, xpos++, bmap[2],
1620 bmap[1], bmap[0]);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001621 fb += 2;
Andrew Dyercc347802008-08-29 12:30:39 -05001622#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001623 FILL_15BIT_555RGB(bmap[2], bmap[1],
1624 bmap[0]);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001625#endif
wdenk4b248f32004-03-14 16:51:43 +00001626 bmap += 3;
1627 }
1628 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001629 fb -= VIDEO_LINE_LEN + width *
1630 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001631 }
1632 break;
1633 case GDF_16BIT_565RGB:
1634 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001635 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001636 xcount = width;
1637 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001638 FILL_16BIT_565RGB(bmap[2], bmap[1],
1639 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001640 bmap += 3;
1641 }
1642 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001643 fb -= VIDEO_LINE_LEN + width *
1644 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001645 }
1646 break;
1647 case GDF_32BIT_X888RGB:
1648 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001649 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001650 xcount = width;
1651 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001652 FILL_32BIT_X888RGB(bmap[2], bmap[1],
1653 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001654 bmap += 3;
1655 }
1656 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001657 fb -= VIDEO_LINE_LEN + width *
1658 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001659 }
1660 break;
1661 case GDF_24BIT_888RGB:
1662 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001663 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001664 xcount = width;
1665 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001666 FILL_24BIT_888RGB(bmap[2], bmap[1],
1667 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001668 bmap += 3;
1669 }
1670 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001671 fb -= VIDEO_LINE_LEN + width *
1672 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001673 }
1674 break;
1675 default:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001676 printf("Error: 24 bits/pixel bitmap incompatible "
1677 "with current video mode\n");
wdenk4b248f32004-03-14 16:51:43 +00001678 break;
1679 }
1680 break;
1681 default:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001682 printf("Error: %d bit/pixel bitmaps not supported by U-Boot\n",
1683 le16_to_cpu(bmp->header.bit_count));
wdenk4b248f32004-03-14 16:51:43 +00001684 break;
1685 }
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001686
1687#ifdef CONFIG_VIDEO_BMP_GZIP
1688 if (dst) {
1689 free(dst);
1690 }
1691#endif
1692
Eric Nelsondb0d47d2013-05-06 14:27:28 +02001693 if (cfb_do_flush_cache)
1694 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
wdenk4b248f32004-03-14 16:51:43 +00001695 return (0);
1696}
Jon Loeliger07d38a12007-07-09 17:30:01 -05001697#endif
wdenk4b248f32004-03-14 16:51:43 +00001698
wdenk4b248f32004-03-14 16:51:43 +00001699
wdenkc6097192002-11-03 00:24:07 +00001700#ifdef CONFIG_VIDEO_LOGO
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001701static int video_logo_xpos;
1702static int video_logo_ypos;
1703
Hans de Goedec4c9e812015-08-04 12:21:40 +02001704static void plot_logo_or_black(void *screen, int x, int y, int black);
Bastian Ruppert4b7d3a02012-09-13 22:29:02 +00001705
Hans de Goedec4c9e812015-08-04 12:21:40 +02001706static void logo_plot(void *screen, int x, int y)
Bastian Ruppert4b7d3a02012-09-13 22:29:02 +00001707{
Hans de Goedec4c9e812015-08-04 12:21:40 +02001708 plot_logo_or_black(screen, x, y, 0);
Bastian Ruppert4b7d3a02012-09-13 22:29:02 +00001709}
1710
1711static void logo_black(void)
1712{
Hans de Goedec4c9e812015-08-04 12:21:40 +02001713 plot_logo_or_black(video_fb_address, video_logo_xpos, video_logo_ypos,
Bastian Ruppert4b7d3a02012-09-13 22:29:02 +00001714 1);
1715}
1716
1717static int do_clrlogo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1718{
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
1869 s = getenv("splashimage");
1870 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
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02001913 space = (VIDEO_LINE_LEN / 2 - VIDEO_INFO_X) / VIDEO_FONT_WIDTH;
1914 len = strlen(info);
1915
1916 if (len > space) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001917 video_drawchars(VIDEO_INFO_X, VIDEO_INFO_Y,
1918 (uchar *) info, space);
1919 video_drawchars(VIDEO_INFO_X + VIDEO_FONT_WIDTH,
1920 VIDEO_INFO_Y + VIDEO_FONT_HEIGHT,
1921 (uchar *) info + space, len - space);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02001922 y_off = 1;
1923 } else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001924 video_drawstring(VIDEO_INFO_X, VIDEO_INFO_Y, (uchar *) info);
wdenkc6097192002-11-03 00:24:07 +00001925
1926#ifdef CONFIG_CONSOLE_EXTRA_INFO
wdenk4b248f32004-03-14 16:51:43 +00001927 {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001928 int i, n =
1929 ((video_logo_height -
1930 VIDEO_FONT_HEIGHT) / VIDEO_FONT_HEIGHT);
wdenkc6097192002-11-03 00:24:07 +00001931
wdenk4b248f32004-03-14 16:51:43 +00001932 for (i = 1; i < n; i++) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001933 video_get_info_str(i, info);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02001934 if (!*info)
1935 continue;
1936
1937 len = strlen(info);
1938 if (len > space) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001939 video_drawchars(VIDEO_INFO_X,
1940 VIDEO_INFO_Y +
1941 (i + y_off) *
1942 VIDEO_FONT_HEIGHT,
1943 (uchar *) info, space);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02001944 y_off++;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001945 video_drawchars(VIDEO_INFO_X +
1946 VIDEO_FONT_WIDTH,
1947 VIDEO_INFO_Y +
1948 (i + y_off) *
1949 VIDEO_FONT_HEIGHT,
1950 (uchar *) info + space,
1951 len - space);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02001952 } else {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001953 video_drawstring(VIDEO_INFO_X,
1954 VIDEO_INFO_Y +
1955 (i + y_off) *
1956 VIDEO_FONT_HEIGHT,
1957 (uchar *) info);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02001958 }
wdenk4b248f32004-03-14 16:51:43 +00001959 }
1960 }
wdenkc6097192002-11-03 00:24:07 +00001961#endif
Tim Harveyadde4352016-05-24 14:59:59 -07001962#endif
wdenkc6097192002-11-03 00:24:07 +00001963
Matthias Weisserbe129aa2010-01-12 12:06:31 +01001964 return (video_fb_address + video_logo_height * VIDEO_LINE_LEN);
wdenkc6097192002-11-03 00:24:07 +00001965}
1966#endif
1967
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +02001968static int cfb_fb_is_in_dram(void)
1969{
1970 bd_t *bd = gd->bd;
Robert P. J. Day9b23baf2017-02-03 07:14:02 -05001971#if defined(CONFIG_ARM) || defined(CONFIG_AVR32) || defined(CONFIG_NDS32) || \
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +02001972defined(CONFIG_SANDBOX) || defined(CONFIG_X86)
1973 ulong start, end;
1974 int i;
1975
1976 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
1977 start = bd->bi_dram[i].start;
1978 end = bd->bi_dram[i].start + bd->bi_dram[i].size - 1;
1979 if ((ulong)video_fb_address >= start &&
1980 (ulong)video_fb_address < end)
1981 return 1;
1982 }
1983#else
1984 if ((ulong)video_fb_address >= bd->bi_memstart &&
1985 (ulong)video_fb_address < bd->bi_memstart + bd->bi_memsize)
1986 return 1;
1987#endif
1988 return 0;
1989}
1990
Heiko Schocher45ae2542013-10-22 11:06:06 +02001991void video_clear(void)
1992{
1993 if (!video_fb_address)
1994 return;
1995#ifdef VIDEO_HW_RECTFILL
1996 video_hw_rectfill(VIDEO_PIXEL_SIZE, /* bytes per pixel */
1997 0, /* dest pos x */
1998 0, /* dest pos y */
1999 VIDEO_VISIBLE_COLS, /* frame width */
2000 VIDEO_VISIBLE_ROWS, /* frame height */
2001 bgx /* fill color */
2002 );
2003#else
2004 memsetl(video_fb_address,
2005 (VIDEO_VISIBLE_ROWS * VIDEO_LINE_LEN) / sizeof(int), bgx);
2006#endif
2007}
2008
Simon Glass0a6eac82016-10-17 20:12:54 -06002009static int cfg_video_init(void)
wdenkc6097192002-11-03 00:24:07 +00002010{
wdenk4b248f32004-03-14 16:51:43 +00002011 unsigned char color8;
wdenkc6097192002-11-03 00:24:07 +00002012
Wolfgang Denk57912932011-07-30 12:48:09 +00002013 pGD = video_hw_init();
2014 if (pGD == NULL)
wdenk4b248f32004-03-14 16:51:43 +00002015 return -1;
wdenkc6097192002-11-03 00:24:07 +00002016
wdenk4b248f32004-03-14 16:51:43 +00002017 video_fb_address = (void *) VIDEO_FB_ADRS;
wdenkc6097192002-11-03 00:24:07 +00002018
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +02002019 cfb_do_flush_cache = cfb_fb_is_in_dram() && dcache_status();
2020
wdenk4b248f32004-03-14 16:51:43 +00002021 /* Init drawing pats */
2022 switch (VIDEO_DATA_FORMAT) {
2023 case GDF__8BIT_INDEX:
Simon Glass002f9672016-10-17 20:12:44 -06002024 video_set_lut(0x01, CONFIG_SYS_CONSOLE_FG_COL,
2025 CONFIG_SYS_CONSOLE_FG_COL,
2026 CONFIG_SYS_CONSOLE_FG_COL);
2027 video_set_lut(0x00, CONFIG_SYS_CONSOLE_BG_COL,
2028 CONFIG_SYS_CONSOLE_BG_COL,
2029 CONFIG_SYS_CONSOLE_BG_COL);
wdenk4b248f32004-03-14 16:51:43 +00002030 fgx = 0x01010101;
2031 bgx = 0x00000000;
2032 break;
2033 case GDF__8BIT_332RGB:
Simon Glass002f9672016-10-17 20:12:44 -06002034 color8 = ((CONFIG_SYS_CONSOLE_FG_COL & 0xe0) |
2035 ((CONFIG_SYS_CONSOLE_FG_COL >> 3) & 0x1c) |
2036 CONFIG_SYS_CONSOLE_FG_COL >> 6);
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002037 fgx = (color8 << 24) | (color8 << 16) | (color8 << 8) |
2038 color8;
Simon Glass002f9672016-10-17 20:12:44 -06002039 color8 = ((CONFIG_SYS_CONSOLE_BG_COL & 0xe0) |
2040 ((CONFIG_SYS_CONSOLE_BG_COL >> 3) & 0x1c) |
2041 CONFIG_SYS_CONSOLE_BG_COL >> 6);
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002042 bgx = (color8 << 24) | (color8 << 16) | (color8 << 8) |
2043 color8;
wdenk4b248f32004-03-14 16:51:43 +00002044 break;
2045 case GDF_15BIT_555RGB:
Simon Glass002f9672016-10-17 20:12:44 -06002046 fgx = (((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 26) |
2047 ((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 21) |
2048 ((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 16) |
2049 ((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 10) |
2050 ((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 5) |
2051 (CONFIG_SYS_CONSOLE_FG_COL >> 3));
2052 bgx = (((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 26) |
2053 ((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 21) |
2054 ((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 16) |
2055 ((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 10) |
2056 ((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 5) |
2057 (CONFIG_SYS_CONSOLE_BG_COL >> 3));
wdenk4b248f32004-03-14 16:51:43 +00002058 break;
2059 case GDF_16BIT_565RGB:
Simon Glass002f9672016-10-17 20:12:44 -06002060 fgx = (((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 27) |
2061 ((CONFIG_SYS_CONSOLE_FG_COL >> 2) << 21) |
2062 ((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 16) |
2063 ((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 11) |
2064 ((CONFIG_SYS_CONSOLE_FG_COL >> 2) << 5) |
2065 (CONFIG_SYS_CONSOLE_FG_COL >> 3));
2066 bgx = (((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 27) |
2067 ((CONFIG_SYS_CONSOLE_BG_COL >> 2) << 21) |
2068 ((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 16) |
2069 ((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 11) |
2070 ((CONFIG_SYS_CONSOLE_BG_COL >> 2) << 5) |
2071 (CONFIG_SYS_CONSOLE_BG_COL >> 3));
wdenk4b248f32004-03-14 16:51:43 +00002072 break;
2073 case GDF_32BIT_X888RGB:
Simon Glass002f9672016-10-17 20:12:44 -06002074 fgx = (CONFIG_SYS_CONSOLE_FG_COL << 16) |
2075 (CONFIG_SYS_CONSOLE_FG_COL << 8) |
2076 CONFIG_SYS_CONSOLE_FG_COL;
2077 bgx = (CONFIG_SYS_CONSOLE_BG_COL << 16) |
2078 (CONFIG_SYS_CONSOLE_BG_COL << 8) |
2079 CONFIG_SYS_CONSOLE_BG_COL;
wdenk4b248f32004-03-14 16:51:43 +00002080 break;
2081 case GDF_24BIT_888RGB:
Simon Glass002f9672016-10-17 20:12:44 -06002082 fgx = (CONFIG_SYS_CONSOLE_FG_COL << 24) |
2083 (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 << 24) |
2087 (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 }
2092 eorx = fgx ^ bgx;
wdenkc6097192002-11-03 00:24:07 +00002093
Heiko Schocher45ae2542013-10-22 11:06:06 +02002094 video_clear();
2095
wdenkc6097192002-11-03 00:24:07 +00002096#ifdef CONFIG_VIDEO_LOGO
wdenk4b248f32004-03-14 16:51:43 +00002097 /* Plot the logo and get start point of console */
Wolfgang Denk72c65f62011-07-29 09:55:28 +00002098 debug("Video: Drawing the logo ...\n");
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002099 video_console_address = video_logo();
wdenkc6097192002-11-03 00:24:07 +00002100#else
wdenk4b248f32004-03-14 16:51:43 +00002101 video_console_address = video_fb_address;
wdenkc6097192002-11-03 00:24:07 +00002102#endif
2103
wdenk4b248f32004-03-14 16:51:43 +00002104 /* Initialize the console */
2105 console_col = 0;
2106 console_row = 0;
wdenkc6097192002-11-03 00:24:07 +00002107
Eric Nelsondb0d47d2013-05-06 14:27:28 +02002108 if (cfb_do_flush_cache)
2109 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
2110
wdenk4b248f32004-03-14 16:51:43 +00002111 return 0;
wdenkc6097192002-11-03 00:24:07 +00002112}
2113
Wolfgang Denk6cc7ba92009-05-15 10:07:43 +02002114/*
2115 * Implement a weak default function for boards that optionally
2116 * need to skip the video initialization.
2117 */
Jeroen Hofstee69d27542014-10-08 22:57:30 +02002118__weak int board_video_skip(void)
Wolfgang Denk6cc7ba92009-05-15 10:07:43 +02002119{
2120 /* As default, don't skip test */
2121 return 0;
2122}
Wolfgang Denk6cc7ba92009-05-15 10:07:43 +02002123
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002124int drv_video_init(void)
wdenkc6097192002-11-03 00:24:07 +00002125{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +02002126 struct stdio_dev console_dev;
Simon Glass5692ccf2015-03-02 12:40:50 -07002127 bool have_keyboard;
Bin Meng8ceb2422015-08-24 01:00:07 -07002128 bool __maybe_unused keyboard_ok = false;
wdenkc6097192002-11-03 00:24:07 +00002129
Wolfgang Denk6cc7ba92009-05-15 10:07:43 +02002130 /* Check if video initialization should be skipped */
2131 if (board_video_skip())
2132 return 0;
2133
wdenk81050922004-07-11 20:04:51 +00002134 /* Init video chip - returns with framebuffer cleared */
Simon Glass0a6eac82016-10-17 20:12:54 -06002135 if (cfg_video_init() == -1)
Bin Meng8ceb2422015-08-24 01:00:07 -07002136 return 0;
wdenk81050922004-07-11 20:04:51 +00002137
Heiko Schocher2bc4aa52013-08-03 07:22:53 +02002138 if (board_cfb_skip())
2139 return 0;
2140
Simon Glass5692ccf2015-03-02 12:40:50 -07002141#if defined(CONFIG_VGA_AS_SINGLE_DEVICE)
2142 have_keyboard = false;
2143#elif defined(CONFIG_OF_CONTROL)
2144 have_keyboard = !fdtdec_get_config_bool(gd->fdt_blob,
2145 "u-boot,no-keyboard");
2146#else
2147 have_keyboard = true;
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002148#endif
Simon Glass5692ccf2015-03-02 12:40:50 -07002149 if (have_keyboard) {
2150 debug("KBD: Keyboard init ...\n");
2151#if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
Bin Meng8ceb2422015-08-24 01:00:07 -07002152 keyboard_ok = !(VIDEO_KBD_INIT_FCT == -1);
Simon Glass5692ccf2015-03-02 12:40:50 -07002153#endif
2154 }
wdenkc6097192002-11-03 00:24:07 +00002155
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002156 /* Init vga device */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002157 memset(&console_dev, 0, sizeof(console_dev));
2158 strcpy(console_dev.name, "vga");
Bin Meng1caf9342015-11-03 23:23:37 -08002159 console_dev.flags = DEV_FLAGS_OUTPUT;
Simon Glass0a6eac82016-10-17 20:12:54 -06002160 console_dev.putc = cfb_video_putc; /* 'putc' function */
2161 console_dev.puts = cfb_video_puts; /* 'puts' function */
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002162
2163#if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
Bin Meng8ceb2422015-08-24 01:00:07 -07002164 if (have_keyboard && keyboard_ok) {
Simon Glass5692ccf2015-03-02 12:40:50 -07002165 /* Also init console device */
2166 console_dev.flags |= DEV_FLAGS_INPUT;
2167 console_dev.tstc = VIDEO_TSTC_FCT; /* 'tstc' function */
2168 console_dev.getc = VIDEO_GETC_FCT; /* 'getc' function */
2169 }
2170#endif
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002171
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002172 if (stdio_register(&console_dev) != 0)
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002173 return 0;
2174
2175 /* Return success */
2176 return 1;
wdenkc6097192002-11-03 00:24:07 +00002177}
Stefan Reinauerc20ee072012-09-28 15:11:12 +00002178
2179void video_position_cursor(unsigned col, unsigned row)
2180{
2181 console_col = min(col, CONSOLE_COLS - 1);
2182 console_row = min(row, CONSOLE_ROWS - 1);
2183}
2184
2185int video_get_pixel_width(void)
2186{
2187 return VIDEO_VISIBLE_COLS;
2188}
2189
2190int video_get_pixel_height(void)
2191{
2192 return VIDEO_VISIBLE_ROWS;
2193}
2194
2195int video_get_screen_rows(void)
2196{
2197 return CONSOLE_ROWS;
2198}
2199
2200int video_get_screen_columns(void)
2201{
2202 return CONSOLE_COLS;
2203}