blob: b10f1590ba00ee9505bd09fcbc03d1871d7d2fdb [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
2 * (C) Copyright 2002 ELTEC Elektronik AG
3 * Frank Gottschling <fgottschling@eltec.de>
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
wdenk4b248f32004-03-14 16:51:43 +000015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenkc6097192002-11-03 00:24:07 +000016 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24/*
25 * cfb_console.c
26 *
27 * Color Framebuffer Console driver for 8/15/16/24/32 bits per pixel.
28 *
29 * At the moment only the 8x16 font is tested and the font fore- and
30 * background color is limited to black/white/gray colors. The Linux
31 * logo can be placed in the upper left corner and additional board
Wolfgang Denk64e40d72011-07-29 09:55:27 +000032 * information strings (that normally goes to serial port) can be drawn.
wdenkc6097192002-11-03 00:24:07 +000033 *
34 * The console driver can use the standard PC keyboard interface (i8042)
35 * for character input. Character output goes to a memory mapped video
36 * framebuffer with little or big-endian organisation.
37 * With environment setting 'console=serial' the console i/o can be
38 * forced to serial port.
Wolfgang Denk64e40d72011-07-29 09:55:27 +000039 *
40 * The driver uses graphic specific defines/parameters/functions:
41 *
42 * (for SMI LynxE graphic chip)
43 *
44 * CONFIG_VIDEO_SMI_LYNXEM - use graphic driver for SMI 710,712,810
45 * VIDEO_FB_LITTLE_ENDIAN - framebuffer organisation default: big endian
46 * VIDEO_HW_RECTFILL - graphic driver supports hardware rectangle fill
47 * VIDEO_HW_BITBLT - graphic driver supports hardware bit blt
48 *
49 * Console Parameters are set by graphic drivers global struct:
50 *
51 * VIDEO_VISIBLE_COLS - x resolution
52 * VIDEO_VISIBLE_ROWS - y resolution
53 * VIDEO_PIXEL_SIZE - storage size in byte per pixel
54 * VIDEO_DATA_FORMAT - graphical data format GDF
55 * VIDEO_FB_ADRS - start of video memory
56 *
57 * CONFIG_I8042_KBD - AT Keyboard driver for i8042
58 * VIDEO_KBD_INIT_FCT - init function for keyboard
59 * VIDEO_TSTC_FCT - keyboard_tstc function
60 * VIDEO_GETC_FCT - keyboard_getc function
61 *
62 * CONFIG_CONSOLE_CURSOR - on/off drawing cursor is done with
63 * delay loop in VIDEO_TSTC_FCT (i8042)
64 *
65 * CONFIG_SYS_CONSOLE_BLINK_COUNT - value for delay loop - blink rate
66 * CONFIG_CONSOLE_TIME - display time/date in upper right
67 * corner, needs CONFIG_CMD_DATE and
68 * CONFIG_CONSOLE_CURSOR
Bastian Ruppert1e681f92012-09-13 22:29:01 +000069 * CONFIG_VIDEO_LOGO - display Linux Logo in upper left corner.
70 * Use CONFIG_SPLASH_SCREEN_ALIGN with
71 * environment variable "splashpos" to place
72 * the logo on other position. In this case
73 * no CONSOLE_EXTRA_INFO is possible.
Wolfgang Denk64e40d72011-07-29 09:55:27 +000074 * CONFIG_VIDEO_BMP_LOGO - use bmp_logo instead of linux_logo
75 * CONFIG_CONSOLE_EXTRA_INFO - display additional board information
76 * strings that normaly goes to serial
77 * port. This define requires a board
78 * specific function:
79 * video_drawstring (VIDEO_INFO_X,
80 * VIDEO_INFO_Y + i*VIDEO_FONT_HEIGHT,
81 * info);
82 * that fills a info buffer at i=row.
83 * s.a: board/eltec/bab7xx.
84 * CONFIG_VGA_AS_SINGLE_DEVICE - If set the framebuffer device will be
85 * initialized as an output only device.
86 * The Keyboard driver will not be
87 * set-up. This may be used, if you have
88 * no or more than one Keyboard devices
89 * (USB Keyboard, AT Keyboard).
90 *
91 * CONFIG_VIDEO_SW_CURSOR: - Draws a cursor after the last
92 * character. No blinking is provided.
93 * Uses the macros CURSOR_SET and
94 * CURSOR_OFF.
95 *
96 * CONFIG_VIDEO_HW_CURSOR: - Uses the hardware cursor capability
97 * of the graphic chip. Uses the macro
98 * CURSOR_SET. ATTENTION: If booting an
99 * OS, the display driver must disable
100 * the hardware register of the graphic
101 * chip. Otherwise a blinking field is
102 * displayed.
103 */
wdenkc6097192002-11-03 00:24:07 +0000104
105#include <common.h>
Andreas Bießmann09c2e902011-07-18 20:24:04 +0200106#include <version.h>
wdenka6c7ad22002-12-03 21:28:10 +0000107#include <malloc.h>
Wolfgang Denka9a62af2011-11-04 15:55:20 +0000108#include <linux/compiler.h>
wdenka6c7ad22002-12-03 21:28:10 +0000109
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000110/*
111 * Console device defines with SMI graphic
112 * Any other graphic must change this section
113 */
wdenkc6097192002-11-03 00:24:07 +0000114
wdenk4b248f32004-03-14 16:51:43 +0000115#ifdef CONFIG_VIDEO_SMI_LYNXEM
wdenkc6097192002-11-03 00:24:07 +0000116
117#define VIDEO_FB_LITTLE_ENDIAN
118#define VIDEO_HW_RECTFILL
119#define VIDEO_HW_BITBLT
120#endif
121
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000122/*
123 * Defines for the CT69000 driver
124 */
wdenk4b248f32004-03-14 16:51:43 +0000125#ifdef CONFIG_VIDEO_CT69000
wdenkc6097192002-11-03 00:24:07 +0000126
127#define VIDEO_FB_LITTLE_ENDIAN
128#define VIDEO_HW_RECTFILL
129#define VIDEO_HW_BITBLT
130#endif
131
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000132/*
133 * Defines for the SED13806 driver
134 */
wdenka6c7ad22002-12-03 21:28:10 +0000135#ifdef CONFIG_VIDEO_SED13806
136
wdenk89394042004-08-04 21:56:49 +0000137#ifndef CONFIG_TOTAL5200
wdenka6c7ad22002-12-03 21:28:10 +0000138#define VIDEO_FB_LITTLE_ENDIAN
wdenk89394042004-08-04 21:56:49 +0000139#endif
wdenka6c7ad22002-12-03 21:28:10 +0000140#define VIDEO_HW_RECTFILL
141#define VIDEO_HW_BITBLT
142#endif
143
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000144/*
145 * Defines for the SED13806 driver
146 */
Stefan Roese98f4a3d2005-09-22 09:04:17 +0200147#ifdef CONFIG_VIDEO_SM501
148
149#ifdef CONFIG_HH405
150#define VIDEO_FB_LITTLE_ENDIAN
151#endif
152#endif
153
Marek Vasutfb8ddc22013-04-28 09:20:03 +0000154#ifdef CONFIG_VIDEO_MXS
155#define VIDEO_FB_16BPP_WORD_SWAP
156#endif
157
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000158/*
159 * Defines for the MB862xx driver
160 */
Anatolij Gustschinbed53752008-01-11 14:30:01 +0100161#ifdef CONFIG_VIDEO_MB862xx
162
163#ifdef CONFIG_VIDEO_CORALP
164#define VIDEO_FB_LITTLE_ENDIAN
165#endif
Anatolij Gustschin5d16ca82009-10-23 12:03:14 +0200166#ifdef CONFIG_VIDEO_MB862xx_ACCEL
Anatolij Gustschinbed53752008-01-11 14:30:01 +0100167#define VIDEO_HW_RECTFILL
168#define VIDEO_HW_BITBLT
169#endif
Anatolij Gustschin5d16ca82009-10-23 12:03:14 +0200170#endif
Anatolij Gustschinbed53752008-01-11 14:30:01 +0100171
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000172/*
Helmut Raiger62a22dc2011-10-12 23:16:29 +0000173 * Defines for the i.MX31 driver (mx3fb.c)
174 */
Fabio Estevam695af9a2012-05-31 07:23:56 +0000175#if defined(CONFIG_VIDEO_MX3) || defined(CONFIG_VIDEO_IPUV3)
Helmut Raiger62a22dc2011-10-12 23:16:29 +0000176#define VIDEO_FB_16BPP_WORD_SWAP
177#endif
178
179/*
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000180 * Include video_fb.h after definitions of VIDEO_HW_RECTFILL etc.
181 */
wdenkc6097192002-11-03 00:24:07 +0000182#include <video_fb.h>
183
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000184/*
185 * some Macros
186 */
wdenk4b248f32004-03-14 16:51:43 +0000187#define VIDEO_VISIBLE_COLS (pGD->winSizeX)
188#define VIDEO_VISIBLE_ROWS (pGD->winSizeY)
189#define VIDEO_PIXEL_SIZE (pGD->gdfBytesPP)
190#define VIDEO_DATA_FORMAT (pGD->gdfIndex)
191#define VIDEO_FB_ADRS (pGD->frameAdrs)
wdenkc6097192002-11-03 00:24:07 +0000192
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000193/*
194 * Console device defines with i8042 keyboard controller
195 * Any other keyboard controller must change this section
196 */
wdenkc6097192002-11-03 00:24:07 +0000197
wdenk4b248f32004-03-14 16:51:43 +0000198#ifdef CONFIG_I8042_KBD
wdenkc6097192002-11-03 00:24:07 +0000199#include <i8042.h>
200
wdenk4b248f32004-03-14 16:51:43 +0000201#define VIDEO_KBD_INIT_FCT i8042_kbd_init()
202#define VIDEO_TSTC_FCT i8042_tstc
203#define VIDEO_GETC_FCT i8042_getc
wdenkc6097192002-11-03 00:24:07 +0000204#endif
205
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000206/*
207 * Console device
208 */
wdenkc6097192002-11-03 00:24:07 +0000209
210#include <version.h>
211#include <linux/types.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200212#include <stdio_dev.h>
wdenkc6097192002-11-03 00:24:07 +0000213#include <video_font.h>
Che-Liang Chioud3983ee2011-10-21 17:04:21 +0800214#include <video_font_data.h>
wdenkc6097192002-11-03 00:24:07 +0000215
Jon Loeligerddb5d86f2007-07-10 11:13:21 -0500216#if defined(CONFIG_CMD_DATE)
217#include <rtc.h>
wdenkc6097192002-11-03 00:24:07 +0000218#endif
219
Jon Loeliger07d38a12007-07-09 17:30:01 -0500220#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
wdenk4b248f32004-03-14 16:51:43 +0000221#include <watchdog.h>
222#include <bmp_layout.h>
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200223
224#ifdef CONFIG_SPLASH_SCREEN_ALIGN
225#define BMP_ALIGN_CENTER 0x7FFF
226#endif
227
Jon Loeliger07d38a12007-07-09 17:30:01 -0500228#endif
wdenk4b248f32004-03-14 16:51:43 +0000229
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000230/*
231 * Cursor definition:
232 * CONFIG_CONSOLE_CURSOR: Uses a timer function (see drivers/input/i8042.c)
233 * to let the cursor blink. Uses the macros
234 * CURSOR_OFF and CURSOR_ON.
235 * CONFIG_VIDEO_SW_CURSOR: Draws a cursor after the last character. No
236 * blinking is provided. Uses the macros CURSOR_SET
237 * and CURSOR_OFF.
238 * CONFIG_VIDEO_HW_CURSOR: Uses the hardware cursor capability of the
239 * graphic chip. Uses the macro CURSOR_SET.
240 * ATTENTION: If booting an OS, the display driver
241 * must disable the hardware register of the graphic
242 * chip. Otherwise a blinking field is displayed
243 */
wdenkc6097192002-11-03 00:24:07 +0000244#if !defined(CONFIG_CONSOLE_CURSOR) && \
245 !defined(CONFIG_VIDEO_SW_CURSOR) && \
246 !defined(CONFIG_VIDEO_HW_CURSOR)
247/* no Cursor defined */
248#define CURSOR_ON
249#define CURSOR_OFF
250#define CURSOR_SET
251#endif
252
Gabe Black03d31fc2011-11-30 13:50:50 +0000253#if defined(CONFIG_CONSOLE_CURSOR) || defined(CONFIG_VIDEO_SW_CURSOR)
254#if defined(CURSOR_ON) || \
255 (defined(CONFIG_CONSOLE_CURSOR) && defined(CONFIG_VIDEO_SW_CURSOR))
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000256#error only one of CONFIG_CONSOLE_CURSOR, CONFIG_VIDEO_SW_CURSOR, \
257 or CONFIG_VIDEO_HW_CURSOR can be defined
wdenkc6097192002-11-03 00:24:07 +0000258#endif
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000259void console_cursor(int state);
260
Timur Tabi65618632010-08-27 15:45:47 -0500261#define CURSOR_ON console_cursor(1)
262#define CURSOR_OFF console_cursor(0)
Gabe Black03d31fc2011-11-30 13:50:50 +0000263#define CURSOR_SET video_set_cursor()
264#endif /* CONFIG_CONSOLE_CURSOR || CONFIG_VIDEO_SW_CURSOR */
265
266#ifdef CONFIG_CONSOLE_CURSOR
267#ifndef CONFIG_CONSOLE_TIME
268#error CONFIG_CONSOLE_CURSOR must be defined for CONFIG_CONSOLE_TIME
269#endif
wdenkc6097192002-11-03 00:24:07 +0000270#ifndef CONFIG_I8042_KBD
Marcel Ziswiler7817cb22007-12-30 03:30:46 +0100271#warning Cursor drawing on/off needs timer function s.a. drivers/input/i8042.c
wdenkc6097192002-11-03 00:24:07 +0000272#endif
wdenkc6097192002-11-03 00:24:07 +0000273#endif /* CONFIG_CONSOLE_CURSOR */
274
wdenkc6097192002-11-03 00:24:07 +0000275
276#ifdef CONFIG_VIDEO_HW_CURSOR
wdenk4b248f32004-03-14 16:51:43 +0000277#ifdef CURSOR_ON
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000278#error only one of CONFIG_CONSOLE_CURSOR, CONFIG_VIDEO_SW_CURSOR, \
279 or CONFIG_VIDEO_HW_CURSOR can be defined
wdenkc6097192002-11-03 00:24:07 +0000280#endif
281#define CURSOR_ON
282#define CURSOR_OFF
283#define CURSOR_SET video_set_hw_cursor(console_col * VIDEO_FONT_WIDTH, \
Timur Tabi65618632010-08-27 15:45:47 -0500284 (console_row * VIDEO_FONT_HEIGHT) + video_logo_height)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000285#endif /* CONFIG_VIDEO_HW_CURSOR */
wdenkc6097192002-11-03 00:24:07 +0000286
wdenk4b248f32004-03-14 16:51:43 +0000287#ifdef CONFIG_VIDEO_LOGO
288#ifdef CONFIG_VIDEO_BMP_LOGO
wdenka6c7ad22002-12-03 21:28:10 +0000289#include <bmp_logo.h>
Che-Liang Chiouc2707302011-10-20 23:04:20 +0000290#include <bmp_logo_data.h>
wdenk4b248f32004-03-14 16:51:43 +0000291#define VIDEO_LOGO_WIDTH BMP_LOGO_WIDTH
292#define VIDEO_LOGO_HEIGHT BMP_LOGO_HEIGHT
293#define VIDEO_LOGO_LUT_OFFSET BMP_LOGO_OFFSET
294#define VIDEO_LOGO_COLORS BMP_LOGO_COLORS
wdenka6c7ad22002-12-03 21:28:10 +0000295
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000296#else /* CONFIG_VIDEO_BMP_LOGO */
wdenk4b248f32004-03-14 16:51:43 +0000297#define LINUX_LOGO_WIDTH 80
298#define LINUX_LOGO_HEIGHT 80
299#define LINUX_LOGO_COLORS 214
300#define LINUX_LOGO_LUT_OFFSET 0x20
wdenkc6097192002-11-03 00:24:07 +0000301#define __initdata
302#include <linux_logo.h>
wdenk4b248f32004-03-14 16:51:43 +0000303#define VIDEO_LOGO_WIDTH LINUX_LOGO_WIDTH
304#define VIDEO_LOGO_HEIGHT LINUX_LOGO_HEIGHT
305#define VIDEO_LOGO_LUT_OFFSET LINUX_LOGO_LUT_OFFSET
306#define VIDEO_LOGO_COLORS LINUX_LOGO_COLORS
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000307#endif /* CONFIG_VIDEO_BMP_LOGO */
wdenk4b248f32004-03-14 16:51:43 +0000308#define VIDEO_INFO_X (VIDEO_LOGO_WIDTH)
309#define VIDEO_INFO_Y (VIDEO_FONT_HEIGHT/2)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000310#else /* CONFIG_VIDEO_LOGO */
wdenk4b248f32004-03-14 16:51:43 +0000311#define VIDEO_LOGO_WIDTH 0
312#define VIDEO_LOGO_HEIGHT 0
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000313#endif /* CONFIG_VIDEO_LOGO */
wdenkc6097192002-11-03 00:24:07 +0000314
wdenk4b248f32004-03-14 16:51:43 +0000315#define VIDEO_COLS VIDEO_VISIBLE_COLS
316#define VIDEO_ROWS VIDEO_VISIBLE_ROWS
317#define VIDEO_SIZE (VIDEO_ROWS*VIDEO_COLS*VIDEO_PIXEL_SIZE)
318#define VIDEO_PIX_BLOCKS (VIDEO_SIZE >> 2)
319#define VIDEO_LINE_LEN (VIDEO_COLS*VIDEO_PIXEL_SIZE)
320#define VIDEO_BURST_LEN (VIDEO_COLS/8)
wdenkc6097192002-11-03 00:24:07 +0000321
wdenk4b248f32004-03-14 16:51:43 +0000322#ifdef CONFIG_VIDEO_LOGO
Matthias Weisserbe129aa2010-01-12 12:06:31 +0100323#define CONSOLE_ROWS ((VIDEO_ROWS - video_logo_height) / VIDEO_FONT_HEIGHT)
wdenkc6097192002-11-03 00:24:07 +0000324#else
wdenk4b248f32004-03-14 16:51:43 +0000325#define CONSOLE_ROWS (VIDEO_ROWS / VIDEO_FONT_HEIGHT)
wdenkc6097192002-11-03 00:24:07 +0000326#endif
327
wdenk4b248f32004-03-14 16:51:43 +0000328#define CONSOLE_COLS (VIDEO_COLS / VIDEO_FONT_WIDTH)
329#define CONSOLE_ROW_SIZE (VIDEO_FONT_HEIGHT * VIDEO_LINE_LEN)
330#define CONSOLE_ROW_FIRST (video_console_address)
331#define CONSOLE_ROW_SECOND (video_console_address + CONSOLE_ROW_SIZE)
332#define CONSOLE_ROW_LAST (video_console_address + CONSOLE_SIZE - CONSOLE_ROW_SIZE)
333#define CONSOLE_SIZE (CONSOLE_ROW_SIZE * CONSOLE_ROWS)
334#define CONSOLE_SCROLL_SIZE (CONSOLE_SIZE - CONSOLE_ROW_SIZE)
wdenkc6097192002-11-03 00:24:07 +0000335
336/* Macros */
wdenk4b248f32004-03-14 16:51:43 +0000337#ifdef VIDEO_FB_LITTLE_ENDIAN
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000338#define SWAP16(x) ((((x) & 0x00ff) << 8) | \
339 ((x) >> 8) \
340 )
341#define SWAP32(x) ((((x) & 0x000000ff) << 24) | \
342 (((x) & 0x0000ff00) << 8) | \
343 (((x) & 0x00ff0000) >> 8) | \
344 (((x) & 0xff000000) >> 24) \
345 )
346#define SHORTSWAP32(x) ((((x) & 0x000000ff) << 8) | \
347 (((x) & 0x0000ff00) >> 8) | \
348 (((x) & 0x00ff0000) << 8) | \
349 (((x) & 0xff000000) >> 8) \
350 )
wdenkc6097192002-11-03 00:24:07 +0000351#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000352#define SWAP16(x) (x)
353#define SWAP32(x) (x)
Wolfgang Grandegger229b6dc2009-10-23 12:03:15 +0200354#if defined(VIDEO_FB_16BPP_WORD_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000355#define SHORTSWAP32(x) (((x) >> 16) | ((x) << 16))
Andrew Dyercc347802008-08-29 12:30:39 -0500356#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000357#define SHORTSWAP32(x) (x)
Anatolij Gustschinbed53752008-01-11 14:30:01 +0100358#endif
wdenkc6097192002-11-03 00:24:07 +0000359#endif
360
wdenkc6097192002-11-03 00:24:07 +0000361#ifdef CONFIG_CONSOLE_EXTRA_INFO
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000362/*
363 * setup a board string: type, speed, etc.
364 *
365 * line_number: location to place info string beside logo
366 * info: buffer for info string
367 */
368extern void video_get_info_str(int line_number, char *info);
wdenkc6097192002-11-03 00:24:07 +0000369#endif
370
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +0200371DECLARE_GLOBAL_DATA_PTR;
372
wdenkc6097192002-11-03 00:24:07 +0000373/* Locals */
374static GraphicDevice *pGD; /* Pointer to Graphic array */
375
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000376static void *video_fb_address; /* frame buffer address */
wdenk4b248f32004-03-14 16:51:43 +0000377static void *video_console_address; /* console buffer start address */
wdenkc6097192002-11-03 00:24:07 +0000378
Matthias Weisserbe129aa2010-01-12 12:06:31 +0100379static int video_logo_height = VIDEO_LOGO_HEIGHT;
380
Anatolij Gustschina45adde2011-12-07 03:58:10 +0000381static int __maybe_unused cursor_state;
382static int __maybe_unused old_col;
383static int __maybe_unused old_row;
Gabe Black03d31fc2011-11-30 13:50:50 +0000384
Wolfgang Denk57912932011-07-30 12:48:09 +0000385static int console_col; /* cursor col */
386static int console_row; /* cursor row */
wdenkc6097192002-11-03 00:24:07 +0000387
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000388static u32 eorx, fgx, bgx; /* color pats */
wdenkc6097192002-11-03 00:24:07 +0000389
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +0200390static int cfb_do_flush_cache;
391
Pali Rohár33a35bb2012-10-19 13:30:09 +0000392#ifdef CONFIG_CFB_CONSOLE_ANSI
393static char ansi_buf[10];
394static int ansi_buf_size;
395static int ansi_colors_need_revert;
396static int ansi_cursor_hidden;
397#endif
398
wdenkc6097192002-11-03 00:24:07 +0000399static const int video_font_draw_table8[] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000400 0x00000000, 0x000000ff, 0x0000ff00, 0x0000ffff,
401 0x00ff0000, 0x00ff00ff, 0x00ffff00, 0x00ffffff,
402 0xff000000, 0xff0000ff, 0xff00ff00, 0xff00ffff,
403 0xffff0000, 0xffff00ff, 0xffffff00, 0xffffffff
404};
wdenkc6097192002-11-03 00:24:07 +0000405
406static const int video_font_draw_table15[] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000407 0x00000000, 0x00007fff, 0x7fff0000, 0x7fff7fff
408};
wdenkc6097192002-11-03 00:24:07 +0000409
410static const int video_font_draw_table16[] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000411 0x00000000, 0x0000ffff, 0xffff0000, 0xffffffff
412};
wdenkc6097192002-11-03 00:24:07 +0000413
414static const int video_font_draw_table24[16][3] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000415 {0x00000000, 0x00000000, 0x00000000},
416 {0x00000000, 0x00000000, 0x00ffffff},
417 {0x00000000, 0x0000ffff, 0xff000000},
418 {0x00000000, 0x0000ffff, 0xffffffff},
419 {0x000000ff, 0xffff0000, 0x00000000},
420 {0x000000ff, 0xffff0000, 0x00ffffff},
421 {0x000000ff, 0xffffffff, 0xff000000},
422 {0x000000ff, 0xffffffff, 0xffffffff},
423 {0xffffff00, 0x00000000, 0x00000000},
424 {0xffffff00, 0x00000000, 0x00ffffff},
425 {0xffffff00, 0x0000ffff, 0xff000000},
426 {0xffffff00, 0x0000ffff, 0xffffffff},
427 {0xffffffff, 0xffff0000, 0x00000000},
428 {0xffffffff, 0xffff0000, 0x00ffffff},
429 {0xffffffff, 0xffffffff, 0xff000000},
430 {0xffffffff, 0xffffffff, 0xffffffff}
431};
wdenkc6097192002-11-03 00:24:07 +0000432
433static const int video_font_draw_table32[16][4] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000434 {0x00000000, 0x00000000, 0x00000000, 0x00000000},
435 {0x00000000, 0x00000000, 0x00000000, 0x00ffffff},
436 {0x00000000, 0x00000000, 0x00ffffff, 0x00000000},
437 {0x00000000, 0x00000000, 0x00ffffff, 0x00ffffff},
438 {0x00000000, 0x00ffffff, 0x00000000, 0x00000000},
439 {0x00000000, 0x00ffffff, 0x00000000, 0x00ffffff},
440 {0x00000000, 0x00ffffff, 0x00ffffff, 0x00000000},
441 {0x00000000, 0x00ffffff, 0x00ffffff, 0x00ffffff},
442 {0x00ffffff, 0x00000000, 0x00000000, 0x00000000},
443 {0x00ffffff, 0x00000000, 0x00000000, 0x00ffffff},
444 {0x00ffffff, 0x00000000, 0x00ffffff, 0x00000000},
445 {0x00ffffff, 0x00000000, 0x00ffffff, 0x00ffffff},
446 {0x00ffffff, 0x00ffffff, 0x00000000, 0x00000000},
447 {0x00ffffff, 0x00ffffff, 0x00000000, 0x00ffffff},
448 {0x00ffffff, 0x00ffffff, 0x00ffffff, 0x00000000},
449 {0x00ffffff, 0x00ffffff, 0x00ffffff, 0x00ffffff}
450};
wdenkc6097192002-11-03 00:24:07 +0000451
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000452static void video_drawchars(int xx, int yy, unsigned char *s, int count)
wdenkc6097192002-11-03 00:24:07 +0000453{
wdenk4b248f32004-03-14 16:51:43 +0000454 u8 *cdat, *dest, *dest0;
455 int rows, offset, c;
wdenkc6097192002-11-03 00:24:07 +0000456
wdenk4b248f32004-03-14 16:51:43 +0000457 offset = yy * VIDEO_LINE_LEN + xx * VIDEO_PIXEL_SIZE;
458 dest0 = video_fb_address + offset;
wdenkc6097192002-11-03 00:24:07 +0000459
wdenk4b248f32004-03-14 16:51:43 +0000460 switch (VIDEO_DATA_FORMAT) {
461 case GDF__8BIT_INDEX:
462 case GDF__8BIT_332RGB:
463 while (count--) {
464 c = *s;
465 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
466 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000467 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000468 u8 bits = *cdat++;
wdenkc6097192002-11-03 00:24:07 +0000469
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000470 ((u32 *) dest)[0] =
471 (video_font_draw_table8[bits >> 4] &
472 eorx) ^ bgx;
473 ((u32 *) dest)[1] =
474 (video_font_draw_table8[bits & 15] &
475 eorx) ^ bgx;
wdenk4b248f32004-03-14 16:51:43 +0000476 }
477 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
478 s++;
479 }
480 break;
wdenkc6097192002-11-03 00:24:07 +0000481
wdenk4b248f32004-03-14 16:51:43 +0000482 case GDF_15BIT_555RGB:
483 while (count--) {
484 c = *s;
485 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
486 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000487 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000488 u8 bits = *cdat++;
wdenkc6097192002-11-03 00:24:07 +0000489
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000490 ((u32 *) dest)[0] =
491 SHORTSWAP32((video_font_draw_table15
492 [bits >> 6] & eorx) ^
493 bgx);
494 ((u32 *) dest)[1] =
495 SHORTSWAP32((video_font_draw_table15
496 [bits >> 4 & 3] & eorx) ^
497 bgx);
498 ((u32 *) dest)[2] =
499 SHORTSWAP32((video_font_draw_table15
500 [bits >> 2 & 3] & eorx) ^
501 bgx);
502 ((u32 *) dest)[3] =
503 SHORTSWAP32((video_font_draw_table15
504 [bits & 3] & eorx) ^
505 bgx);
wdenk4b248f32004-03-14 16:51:43 +0000506 }
507 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
508 s++;
509 }
510 break;
wdenkc6097192002-11-03 00:24:07 +0000511
wdenk4b248f32004-03-14 16:51:43 +0000512 case GDF_16BIT_565RGB:
513 while (count--) {
514 c = *s;
515 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
516 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000517 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000518 u8 bits = *cdat++;
519
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000520 ((u32 *) dest)[0] =
521 SHORTSWAP32((video_font_draw_table16
522 [bits >> 6] & eorx) ^
523 bgx);
524 ((u32 *) dest)[1] =
525 SHORTSWAP32((video_font_draw_table16
526 [bits >> 4 & 3] & eorx) ^
527 bgx);
528 ((u32 *) dest)[2] =
529 SHORTSWAP32((video_font_draw_table16
530 [bits >> 2 & 3] & eorx) ^
531 bgx);
532 ((u32 *) dest)[3] =
533 SHORTSWAP32((video_font_draw_table16
534 [bits & 3] & eorx) ^
535 bgx);
wdenk4b248f32004-03-14 16:51:43 +0000536 }
537 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
538 s++;
539 }
540 break;
541
542 case GDF_32BIT_X888RGB:
543 while (count--) {
544 c = *s;
545 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
546 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000547 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000548 u8 bits = *cdat++;
549
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000550 ((u32 *) dest)[0] =
551 SWAP32((video_font_draw_table32
552 [bits >> 4][0] & eorx) ^ bgx);
553 ((u32 *) dest)[1] =
554 SWAP32((video_font_draw_table32
555 [bits >> 4][1] & eorx) ^ bgx);
556 ((u32 *) dest)[2] =
557 SWAP32((video_font_draw_table32
558 [bits >> 4][2] & eorx) ^ bgx);
559 ((u32 *) dest)[3] =
560 SWAP32((video_font_draw_table32
561 [bits >> 4][3] & eorx) ^ bgx);
562 ((u32 *) dest)[4] =
563 SWAP32((video_font_draw_table32
564 [bits & 15][0] & eorx) ^ bgx);
565 ((u32 *) dest)[5] =
566 SWAP32((video_font_draw_table32
567 [bits & 15][1] & eorx) ^ bgx);
568 ((u32 *) dest)[6] =
569 SWAP32((video_font_draw_table32
570 [bits & 15][2] & eorx) ^ bgx);
571 ((u32 *) dest)[7] =
572 SWAP32((video_font_draw_table32
573 [bits & 15][3] & eorx) ^ bgx);
wdenk4b248f32004-03-14 16:51:43 +0000574 }
575 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
576 s++;
577 }
578 break;
579
580 case GDF_24BIT_888RGB:
581 while (count--) {
582 c = *s;
583 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
584 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000585 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000586 u8 bits = *cdat++;
587
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000588 ((u32 *) dest)[0] =
589 (video_font_draw_table24[bits >> 4][0]
590 & eorx) ^ bgx;
591 ((u32 *) dest)[1] =
592 (video_font_draw_table24[bits >> 4][1]
593 & eorx) ^ bgx;
594 ((u32 *) dest)[2] =
595 (video_font_draw_table24[bits >> 4][2]
596 & eorx) ^ bgx;
597 ((u32 *) dest)[3] =
598 (video_font_draw_table24[bits & 15][0]
599 & eorx) ^ bgx;
600 ((u32 *) dest)[4] =
601 (video_font_draw_table24[bits & 15][1]
602 & eorx) ^ bgx;
603 ((u32 *) dest)[5] =
604 (video_font_draw_table24[bits & 15][2]
605 & eorx) ^ bgx;
wdenk4b248f32004-03-14 16:51:43 +0000606 }
607 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
608 s++;
609 }
610 break;
wdenk8bde7f72003-06-27 21:31:46 +0000611 }
wdenkc6097192002-11-03 00:24:07 +0000612}
613
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000614static inline void video_drawstring(int xx, int yy, unsigned char *s)
wdenkc6097192002-11-03 00:24:07 +0000615{
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000616 video_drawchars(xx, yy, s, strlen((char *) s));
wdenkc6097192002-11-03 00:24:07 +0000617}
618
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000619static void video_putchar(int xx, int yy, unsigned char c)
wdenkc6097192002-11-03 00:24:07 +0000620{
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000621 video_drawchars(xx, yy + video_logo_height, &c, 1);
wdenkc6097192002-11-03 00:24:07 +0000622}
623
wdenkc6097192002-11-03 00:24:07 +0000624#if defined(CONFIG_CONSOLE_CURSOR) || defined(CONFIG_VIDEO_SW_CURSOR)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000625static void video_set_cursor(void)
wdenkc6097192002-11-03 00:24:07 +0000626{
Gabe Black03d31fc2011-11-30 13:50:50 +0000627 if (cursor_state)
628 console_cursor(0);
629 console_cursor(1);
wdenkc6097192002-11-03 00:24:07 +0000630}
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000631
Anatolij Gustschina45adde2011-12-07 03:58:10 +0000632static void video_invertchar(int xx, int yy)
633{
634 int firstx = xx * VIDEO_PIXEL_SIZE;
635 int lastx = (xx + VIDEO_FONT_WIDTH) * VIDEO_PIXEL_SIZE;
636 int firsty = yy * VIDEO_LINE_LEN;
637 int lasty = (yy + VIDEO_FONT_HEIGHT) * VIDEO_LINE_LEN;
638 int x, y;
639 for (y = firsty; y < lasty; y += VIDEO_LINE_LEN) {
640 for (x = firstx; x < lastx; x++) {
641 u8 *dest = (u8 *)(video_fb_address) + x + y;
642 *dest = ~*dest;
643 }
644 }
645}
Gabe Black03d31fc2011-11-30 13:50:50 +0000646
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000647void console_cursor(int state)
wdenkc6097192002-11-03 00:24:07 +0000648{
wdenkc6097192002-11-03 00:24:07 +0000649#ifdef CONFIG_CONSOLE_TIME
wdenk4b248f32004-03-14 16:51:43 +0000650 struct rtc_time tm;
651 char info[16];
wdenkc6097192002-11-03 00:24:07 +0000652
wdenk4b248f32004-03-14 16:51:43 +0000653 /* time update only if cursor is on (faster scroll) */
654 if (state) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000655 rtc_get(&tm);
wdenkc6097192002-11-03 00:24:07 +0000656
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000657 sprintf(info, " %02d:%02d:%02d ", tm.tm_hour, tm.tm_min,
658 tm.tm_sec);
659 video_drawstring(VIDEO_VISIBLE_COLS - 10 * VIDEO_FONT_WIDTH,
660 VIDEO_INFO_Y, (uchar *) info);
wdenkc6097192002-11-03 00:24:07 +0000661
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000662 sprintf(info, "%02d.%02d.%04d", tm.tm_mday, tm.tm_mon,
663 tm.tm_year);
664 video_drawstring(VIDEO_VISIBLE_COLS - 10 * VIDEO_FONT_WIDTH,
665 VIDEO_INFO_Y + 1 * VIDEO_FONT_HEIGHT,
666 (uchar *) info);
wdenk4b248f32004-03-14 16:51:43 +0000667 }
wdenkc6097192002-11-03 00:24:07 +0000668#endif
669
Gabe Black03d31fc2011-11-30 13:50:50 +0000670 if (cursor_state != state) {
671 if (cursor_state) {
672 /* turn off the cursor */
673 video_invertchar(old_col * VIDEO_FONT_WIDTH,
674 old_row * VIDEO_FONT_HEIGHT +
675 video_logo_height);
676 } else {
677 /* turn off the cursor and record where it is */
678 video_invertchar(console_col * VIDEO_FONT_WIDTH,
679 console_row * VIDEO_FONT_HEIGHT +
680 video_logo_height);
681 old_col = console_col;
682 old_row = console_row;
683 }
684 cursor_state = state;
wdenk4b248f32004-03-14 16:51:43 +0000685 }
Eric Nelsondb0d47d2013-05-06 14:27:28 +0200686 if (cfb_do_flush_cache)
687 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
wdenkc6097192002-11-03 00:24:07 +0000688}
689#endif
690
wdenkc6097192002-11-03 00:24:07 +0000691#ifndef VIDEO_HW_RECTFILL
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000692static void memsetl(int *p, int c, int v)
wdenkc6097192002-11-03 00:24:07 +0000693{
wdenk4b248f32004-03-14 16:51:43 +0000694 while (c--)
695 *(p++) = v;
wdenkc6097192002-11-03 00:24:07 +0000696}
697#endif
698
wdenkc6097192002-11-03 00:24:07 +0000699#ifndef VIDEO_HW_BITBLT
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000700static void memcpyl(int *d, int *s, int c)
wdenkc6097192002-11-03 00:24:07 +0000701{
wdenk4b248f32004-03-14 16:51:43 +0000702 while (c--)
703 *(d++) = *(s++);
wdenkc6097192002-11-03 00:24:07 +0000704}
705#endif
706
Pali Rohár90f60a82012-04-28 07:26:44 +0000707static void console_clear_line(int line, int begin, int end)
708{
709#ifdef VIDEO_HW_RECTFILL
710 video_hw_rectfill(VIDEO_PIXEL_SIZE, /* bytes per pixel */
711 VIDEO_FONT_WIDTH * begin, /* dest pos x */
712 video_logo_height +
713 VIDEO_FONT_HEIGHT * line, /* dest pos y */
714 VIDEO_FONT_WIDTH * (end - begin + 1), /* fr. width */
715 VIDEO_FONT_HEIGHT, /* frame height */
716 bgx /* fill color */
717 );
718#else
719 if (begin == 0 && (end + 1) == CONSOLE_COLS) {
720 memsetl(CONSOLE_ROW_FIRST +
721 CONSOLE_ROW_SIZE * line, /* offset of row */
722 CONSOLE_ROW_SIZE >> 2, /* length of row */
723 bgx /* fill color */
724 );
725 } else {
726 void *offset;
727 int i, size;
728
729 offset = CONSOLE_ROW_FIRST +
730 CONSOLE_ROW_SIZE * line + /* offset of row */
731 VIDEO_FONT_WIDTH *
732 VIDEO_PIXEL_SIZE * begin; /* offset of col */
733 size = VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE * (end - begin + 1);
734 size >>= 2; /* length to end for memsetl() */
735 /* fill at col offset of i'th line using bgx as fill color */
736 for (i = 0; i < VIDEO_FONT_HEIGHT; i++)
737 memsetl(offset + i * VIDEO_LINE_LEN, size, bgx);
738 }
739#endif
740}
741
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000742static void console_scrollup(void)
wdenkc6097192002-11-03 00:24:07 +0000743{
wdenk4b248f32004-03-14 16:51:43 +0000744 /* copy up rows ignoring the first one */
wdenkc6097192002-11-03 00:24:07 +0000745
746#ifdef VIDEO_HW_BITBLT
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000747 video_hw_bitblt(VIDEO_PIXEL_SIZE, /* bytes per pixel */
748 0, /* source pos x */
749 video_logo_height +
750 VIDEO_FONT_HEIGHT, /* source pos y */
751 0, /* dest pos x */
752 video_logo_height, /* dest pos y */
753 VIDEO_VISIBLE_COLS, /* frame width */
754 VIDEO_VISIBLE_ROWS
755 - video_logo_height
756 - VIDEO_FONT_HEIGHT /* frame height */
wdenk4b248f32004-03-14 16:51:43 +0000757 );
wdenkc6097192002-11-03 00:24:07 +0000758#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000759 memcpyl(CONSOLE_ROW_FIRST, CONSOLE_ROW_SECOND,
760 CONSOLE_SCROLL_SIZE >> 2);
wdenkc6097192002-11-03 00:24:07 +0000761#endif
wdenk4b248f32004-03-14 16:51:43 +0000762 /* clear the last one */
Pali Rohár90f60a82012-04-28 07:26:44 +0000763 console_clear_line(CONSOLE_ROWS - 1, 0, CONSOLE_COLS - 1);
wdenkc6097192002-11-03 00:24:07 +0000764}
765
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000766static void console_back(void)
wdenkc6097192002-11-03 00:24:07 +0000767{
Timur Tabi65618632010-08-27 15:45:47 -0500768 console_col--;
wdenkc6097192002-11-03 00:24:07 +0000769
wdenk4b248f32004-03-14 16:51:43 +0000770 if (console_col < 0) {
771 console_col = CONSOLE_COLS - 1;
772 console_row--;
773 if (console_row < 0)
774 console_row = 0;
775 }
wdenkc6097192002-11-03 00:24:07 +0000776}
777
Pali Rohár33a35bb2012-10-19 13:30:09 +0000778#ifdef CONFIG_CFB_CONSOLE_ANSI
779
780static void console_clear(void)
wdenkc6097192002-11-03 00:24:07 +0000781{
Pali Rohár33a35bb2012-10-19 13:30:09 +0000782#ifdef VIDEO_HW_RECTFILL
783 video_hw_rectfill(VIDEO_PIXEL_SIZE, /* bytes per pixel */
784 0, /* dest pos x */
785 video_logo_height, /* dest pos y */
786 VIDEO_VISIBLE_COLS, /* frame width */
787 VIDEO_VISIBLE_ROWS, /* frame height */
788 bgx /* fill color */
789 );
790#else
791 memsetl(CONSOLE_ROW_FIRST, CONSOLE_SIZE, bgx);
792#endif
793}
794
795static void console_cursor_fix(void)
796{
797 if (console_row < 0)
798 console_row = 0;
799 if (console_row >= CONSOLE_ROWS)
800 console_row = CONSOLE_ROWS - 1;
801 if (console_col < 0)
802 console_col = 0;
803 if (console_col >= CONSOLE_COLS)
804 console_col = CONSOLE_COLS - 1;
805}
806
807static void console_cursor_up(int n)
808{
809 console_row -= n;
810 console_cursor_fix();
811}
812
813static void console_cursor_down(int n)
814{
815 console_row += n;
816 console_cursor_fix();
817}
818
819static void console_cursor_left(int n)
820{
821 console_col -= n;
822 console_cursor_fix();
823}
824
825static void console_cursor_right(int n)
826{
827 console_col += n;
828 console_cursor_fix();
829}
830
831static void console_cursor_set_position(int row, int col)
832{
833 if (console_row != -1)
834 console_row = row;
835 if (console_col != -1)
836 console_col = col;
837 console_cursor_fix();
838}
839
840static void console_previousline(int n)
841{
842 /* FIXME: also scroll terminal ? */
843 console_row -= n;
844 console_cursor_fix();
845}
846
847static void console_swap_colors(void)
848{
849 eorx = fgx;
850 fgx = bgx;
851 bgx = eorx;
852 eorx = fgx ^ bgx;
853}
854
855static inline int console_cursor_is_visible(void)
856{
857 return !ansi_cursor_hidden;
858}
859#else
860static inline int console_cursor_is_visible(void)
861{
862 return 1;
863}
864#endif
865
866static void console_newline(int n)
867{
868 console_row += n;
wdenk4b248f32004-03-14 16:51:43 +0000869 console_col = 0;
wdenkc6097192002-11-03 00:24:07 +0000870
wdenk4b248f32004-03-14 16:51:43 +0000871 /* Check if we need to scroll the terminal */
872 if (console_row >= CONSOLE_ROWS) {
873 /* Scroll everything up */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000874 console_scrollup();
wdenkc6097192002-11-03 00:24:07 +0000875
wdenk4b248f32004-03-14 16:51:43 +0000876 /* Decrement row number */
Pali Rohár33a35bb2012-10-19 13:30:09 +0000877 console_row = CONSOLE_ROWS - 1;
wdenk4b248f32004-03-14 16:51:43 +0000878 }
wdenkc6097192002-11-03 00:24:07 +0000879}
880
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000881static void console_cr(void)
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100882{
Timur Tabi65618632010-08-27 15:45:47 -0500883 console_col = 0;
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100884}
885
Pali Rohár33a35bb2012-10-19 13:30:09 +0000886static void parse_putc(const char c)
wdenkc6097192002-11-03 00:24:07 +0000887{
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100888 static int nl = 1;
889
Pali Rohár33a35bb2012-10-19 13:30:09 +0000890 if (console_cursor_is_visible())
891 CURSOR_OFF;
Gabe Black03d31fc2011-11-30 13:50:50 +0000892
wdenk4b248f32004-03-14 16:51:43 +0000893 switch (c) {
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100894 case 13: /* back to first column */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000895 console_cr();
wdenk4b248f32004-03-14 16:51:43 +0000896 break;
wdenkc6097192002-11-03 00:24:07 +0000897
wdenk4b248f32004-03-14 16:51:43 +0000898 case '\n': /* next line */
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100899 if (console_col || (!console_col && nl))
Pali Rohár33a35bb2012-10-19 13:30:09 +0000900 console_newline(1);
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100901 nl = 1;
wdenk4b248f32004-03-14 16:51:43 +0000902 break;
wdenkc6097192002-11-03 00:24:07 +0000903
wdenk4b248f32004-03-14 16:51:43 +0000904 case 9: /* tab 8 */
Timur Tabi65618632010-08-27 15:45:47 -0500905 console_col |= 0x0008;
wdenk4b248f32004-03-14 16:51:43 +0000906 console_col &= ~0x0007;
wdenkc6097192002-11-03 00:24:07 +0000907
wdenk4b248f32004-03-14 16:51:43 +0000908 if (console_col >= CONSOLE_COLS)
Pali Rohár33a35bb2012-10-19 13:30:09 +0000909 console_newline(1);
wdenk4b248f32004-03-14 16:51:43 +0000910 break;
wdenkc6097192002-11-03 00:24:07 +0000911
wdenk4b248f32004-03-14 16:51:43 +0000912 case 8: /* backspace */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000913 console_back();
wdenk4b248f32004-03-14 16:51:43 +0000914 break;
wdenkc6097192002-11-03 00:24:07 +0000915
Pali Rohár24fe06c2012-04-28 07:26:47 +0000916 case 7: /* bell */
917 break; /* ignored */
918
wdenk4b248f32004-03-14 16:51:43 +0000919 default: /* draw the char */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000920 video_putchar(console_col * VIDEO_FONT_WIDTH,
921 console_row * VIDEO_FONT_HEIGHT, c);
wdenk4b248f32004-03-14 16:51:43 +0000922 console_col++;
wdenkc6097192002-11-03 00:24:07 +0000923
wdenk4b248f32004-03-14 16:51:43 +0000924 /* check for newline */
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100925 if (console_col >= CONSOLE_COLS) {
Pali Rohár33a35bb2012-10-19 13:30:09 +0000926 console_newline(1);
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100927 nl = 0;
928 }
wdenk4b248f32004-03-14 16:51:43 +0000929 }
Pali Rohár33a35bb2012-10-19 13:30:09 +0000930
931 if (console_cursor_is_visible())
932 CURSOR_SET;
933}
934
935void video_putc(const char c)
936{
937#ifdef CONFIG_CFB_CONSOLE_ANSI
938 int i;
939
940 if (c == 27) {
941 for (i = 0; i < ansi_buf_size; ++i)
942 parse_putc(ansi_buf[i]);
943 ansi_buf[0] = 27;
944 ansi_buf_size = 1;
945 return;
946 }
947
948 if (ansi_buf_size > 0) {
949 /*
950 * 0 - ESC
951 * 1 - [
952 * 2 - num1
953 * 3 - ..
954 * 4 - ;
955 * 5 - num2
956 * 6 - ..
957 * - cchar
958 */
959 int next = 0;
960
961 int flush = 0;
962 int fail = 0;
963
964 int num1 = 0;
965 int num2 = 0;
966 int cchar = 0;
967
968 ansi_buf[ansi_buf_size++] = c;
969
970 if (ansi_buf_size >= sizeof(ansi_buf))
971 fail = 1;
972
973 for (i = 0; i < ansi_buf_size; ++i) {
974 if (fail)
975 break;
976
977 switch (next) {
978 case 0:
979 if (ansi_buf[i] == 27)
980 next = 1;
981 else
982 fail = 1;
983 break;
984
985 case 1:
986 if (ansi_buf[i] == '[')
987 next = 2;
988 else
989 fail = 1;
990 break;
991
992 case 2:
993 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
994 num1 = ansi_buf[i]-'0';
995 next = 3;
996 } else if (ansi_buf[i] != '?') {
997 --i;
998 num1 = 1;
999 next = 4;
1000 }
1001 break;
1002
1003 case 3:
1004 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
1005 num1 *= 10;
1006 num1 += ansi_buf[i]-'0';
1007 } else {
1008 --i;
1009 next = 4;
1010 }
1011 break;
1012
1013 case 4:
1014 if (ansi_buf[i] != ';') {
1015 --i;
1016 next = 7;
1017 } else
1018 next = 5;
1019 break;
1020
1021 case 5:
1022 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
1023 num2 = ansi_buf[i]-'0';
1024 next = 6;
1025 } else
1026 fail = 1;
1027 break;
1028
1029 case 6:
1030 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
1031 num2 *= 10;
1032 num2 += ansi_buf[i]-'0';
1033 } else {
1034 --i;
1035 next = 7;
1036 }
1037 break;
1038
1039 case 7:
1040 if ((ansi_buf[i] >= 'A' && ansi_buf[i] <= 'H')
1041 || ansi_buf[i] == 'J'
1042 || ansi_buf[i] == 'K'
1043 || ansi_buf[i] == 'h'
1044 || ansi_buf[i] == 'l'
1045 || ansi_buf[i] == 'm') {
1046 cchar = ansi_buf[i];
1047 flush = 1;
1048 } else
1049 fail = 1;
1050 break;
1051 }
1052 }
1053
1054 if (fail) {
1055 for (i = 0; i < ansi_buf_size; ++i)
1056 parse_putc(ansi_buf[i]);
1057 ansi_buf_size = 0;
1058 return;
1059 }
1060
1061 if (flush) {
1062 if (!ansi_cursor_hidden)
1063 CURSOR_OFF;
1064 ansi_buf_size = 0;
1065 switch (cchar) {
1066 case 'A':
1067 /* move cursor num1 rows up */
1068 console_cursor_up(num1);
1069 break;
1070 case 'B':
1071 /* move cursor num1 rows down */
1072 console_cursor_down(num1);
1073 break;
1074 case 'C':
1075 /* move cursor num1 columns forward */
1076 console_cursor_right(num1);
1077 break;
1078 case 'D':
1079 /* move cursor num1 columns back */
1080 console_cursor_left(num1);
1081 break;
1082 case 'E':
1083 /* move cursor num1 rows up at begin of row */
1084 console_previousline(num1);
1085 break;
1086 case 'F':
1087 /* move cursor num1 rows down at begin of row */
1088 console_newline(num1);
1089 break;
1090 case 'G':
1091 /* move cursor to column num1 */
1092 console_cursor_set_position(-1, num1-1);
1093 break;
1094 case 'H':
1095 /* move cursor to row num1, column num2 */
1096 console_cursor_set_position(num1-1, num2-1);
1097 break;
1098 case 'J':
1099 /* clear console and move cursor to 0, 0 */
1100 console_clear();
1101 console_cursor_set_position(0, 0);
1102 break;
1103 case 'K':
1104 /* clear line */
1105 if (num1 == 0)
1106 console_clear_line(console_row,
1107 console_col,
1108 CONSOLE_COLS-1);
1109 else if (num1 == 1)
1110 console_clear_line(console_row,
1111 0, console_col);
1112 else
1113 console_clear_line(console_row,
1114 0, CONSOLE_COLS-1);
1115 break;
1116 case 'h':
1117 ansi_cursor_hidden = 0;
1118 break;
1119 case 'l':
1120 ansi_cursor_hidden = 1;
1121 break;
1122 case 'm':
1123 if (num1 == 0) { /* reset swapped colors */
1124 if (ansi_colors_need_revert) {
1125 console_swap_colors();
1126 ansi_colors_need_revert = 0;
1127 }
1128 } else if (num1 == 7) { /* once swap colors */
1129 if (!ansi_colors_need_revert) {
1130 console_swap_colors();
1131 ansi_colors_need_revert = 1;
1132 }
1133 }
1134 break;
1135 }
1136 if (!ansi_cursor_hidden)
1137 CURSOR_SET;
1138 }
1139 } else {
1140 parse_putc(c);
1141 }
1142#else
1143 parse_putc(c);
1144#endif
Eric Nelsondb0d47d2013-05-06 14:27:28 +02001145 if (cfb_do_flush_cache)
1146 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
Timur Tabi65618632010-08-27 15:45:47 -05001147}
wdenkc6097192002-11-03 00:24:07 +00001148
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001149void video_puts(const char *s)
wdenkc6097192002-11-03 00:24:07 +00001150{
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001151 int count = strlen(s);
wdenkc6097192002-11-03 00:24:07 +00001152
wdenk4b248f32004-03-14 16:51:43 +00001153 while (count--)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001154 video_putc(*s++);
wdenkc6097192002-11-03 00:24:07 +00001155}
1156
Anatolij Gustschin10543822010-05-01 22:21:09 +02001157/*
1158 * Do not enforce drivers (or board code) to provide empty
1159 * video_set_lut() if they do not support 8 bpp format.
1160 * Implement weak default function instead.
1161 */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001162void __video_set_lut(unsigned int index, unsigned char r,
1163 unsigned char g, unsigned char b)
Anatolij Gustschin10543822010-05-01 22:21:09 +02001164{
1165}
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001166
1167void video_set_lut(unsigned int, unsigned char, unsigned char, unsigned char)
1168 __attribute__ ((weak, alias("__video_set_lut")));
Anatolij Gustschin10543822010-05-01 22:21:09 +02001169
Jon Loeliger07d38a12007-07-09 17:30:01 -05001170#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
wdenk4b248f32004-03-14 16:51:43 +00001171
1172#define FILL_8BIT_332RGB(r,g,b) { \
1173 *fb = ((r>>5)<<5) | ((g>>5)<<2) | (b>>6); \
1174 fb ++; \
1175}
1176
1177#define FILL_15BIT_555RGB(r,g,b) { \
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001178 *(unsigned short *)fb = \
1179 SWAP16((unsigned short)(((r>>3)<<10) | \
1180 ((g>>3)<<5) | \
1181 (b>>3))); \
wdenk4b248f32004-03-14 16:51:43 +00001182 fb += 2; \
1183}
1184
1185#define FILL_16BIT_565RGB(r,g,b) { \
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001186 *(unsigned short *)fb = \
1187 SWAP16((unsigned short)((((r)>>3)<<11)| \
1188 (((g)>>2)<<5) | \
1189 ((b)>>3))); \
wdenk4b248f32004-03-14 16:51:43 +00001190 fb += 2; \
1191}
1192
1193#define FILL_32BIT_X888RGB(r,g,b) { \
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001194 *(unsigned long *)fb = \
1195 SWAP32((unsigned long)(((r<<16) | \
1196 (g<<8) | \
1197 b))); \
wdenk4b248f32004-03-14 16:51:43 +00001198 fb += 4; \
1199}
1200
1201#ifdef VIDEO_FB_LITTLE_ENDIAN
1202#define FILL_24BIT_888RGB(r,g,b) { \
1203 fb[0] = b; \
1204 fb[1] = g; \
1205 fb[2] = r; \
1206 fb += 3; \
1207}
1208#else
1209#define FILL_24BIT_888RGB(r,g,b) { \
1210 fb[0] = r; \
1211 fb[1] = g; \
1212 fb[2] = b; \
1213 fb += 3; \
1214}
1215#endif
1216
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001217#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001218static inline void fill_555rgb_pswap(uchar *fb, int x, u8 r, u8 g, u8 b)
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001219{
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001220 ushort *dst = (ushort *) fb;
1221 ushort color = (ushort) (((r >> 3) << 10) |
1222 ((g >> 3) << 5) |
1223 (b >> 3));
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001224 if (x & 1)
1225 *(--dst) = color;
1226 else
1227 *(++dst) = color;
1228}
1229#endif
wdenk4b248f32004-03-14 16:51:43 +00001230
1231/*
Anatolij Gustschind5011762010-03-15 14:50:25 +01001232 * RLE8 bitmap support
1233 */
1234
1235#ifdef CONFIG_VIDEO_BMP_RLE8
1236/* Pre-calculated color table entry */
1237struct palette {
1238 union {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001239 unsigned short w; /* word */
1240 unsigned int dw; /* double word */
1241 } ce; /* color entry */
Anatolij Gustschind5011762010-03-15 14:50:25 +01001242};
1243
1244/*
1245 * Helper to draw encoded/unencoded run.
1246 */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001247static void draw_bitmap(uchar **fb, uchar *bm, struct palette *p,
1248 int cnt, int enc)
Anatolij Gustschind5011762010-03-15 14:50:25 +01001249{
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001250 ulong addr = (ulong) *fb;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001251 int *off;
1252 int enc_off = 1;
1253 int i;
1254
1255 /*
1256 * Setup offset of the color index in the bitmap.
1257 * Color index of encoded run is at offset 1.
1258 */
1259 off = enc ? &enc_off : &i;
1260
1261 switch (VIDEO_DATA_FORMAT) {
1262 case GDF__8BIT_INDEX:
1263 for (i = 0; i < cnt; i++)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001264 *(unsigned char *) addr++ = bm[*off];
Anatolij Gustschind5011762010-03-15 14:50:25 +01001265 break;
1266 case GDF_15BIT_555RGB:
1267 case GDF_16BIT_565RGB:
1268 /* differences handled while pre-calculating palette */
1269 for (i = 0; i < cnt; i++) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001270 *(unsigned short *) addr = p[bm[*off]].ce.w;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001271 addr += 2;
1272 }
1273 break;
1274 case GDF_32BIT_X888RGB:
1275 for (i = 0; i < cnt; i++) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001276 *(unsigned long *) addr = p[bm[*off]].ce.dw;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001277 addr += 4;
1278 }
1279 break;
1280 }
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001281 *fb = (uchar *) addr; /* return modified address */
Anatolij Gustschind5011762010-03-15 14:50:25 +01001282}
1283
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001284static int display_rle8_bitmap(bmp_image_t *img, int xoff, int yoff,
1285 int width, int height)
Anatolij Gustschind5011762010-03-15 14:50:25 +01001286{
1287 unsigned char *bm;
1288 unsigned char *fbp;
1289 unsigned int cnt, runlen;
1290 int decode = 1;
1291 int x, y, bpp, i, ncolors;
1292 struct palette p[256];
1293 bmp_color_table_entry_t cte;
1294 int green_shift, red_off;
Anatolij Gustschin74446b62011-02-21 21:33:29 +01001295 int limit = VIDEO_COLS * VIDEO_ROWS;
1296 int pixels = 0;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001297
1298 x = 0;
1299 y = __le32_to_cpu(img->header.height) - 1;
1300 ncolors = __le32_to_cpu(img->header.colors_used);
1301 bpp = VIDEO_PIXEL_SIZE;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001302 fbp = (unsigned char *) ((unsigned int) video_fb_address +
1303 (((y + yoff) * VIDEO_COLS) + xoff) * bpp);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001304
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001305 bm = (uchar *) img + __le32_to_cpu(img->header.data_offset);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001306
1307 /* pre-calculate and setup palette */
1308 switch (VIDEO_DATA_FORMAT) {
1309 case GDF__8BIT_INDEX:
1310 for (i = 0; i < ncolors; i++) {
1311 cte = img->color_table[i];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001312 video_set_lut(i, cte.red, cte.green, cte.blue);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001313 }
1314 break;
1315 case GDF_15BIT_555RGB:
1316 case GDF_16BIT_565RGB:
1317 if (VIDEO_DATA_FORMAT == GDF_15BIT_555RGB) {
1318 green_shift = 3;
1319 red_off = 10;
1320 } else {
1321 green_shift = 2;
1322 red_off = 11;
1323 }
1324 for (i = 0; i < ncolors; i++) {
1325 cte = img->color_table[i];
1326 p[i].ce.w = SWAP16((unsigned short)
1327 (((cte.red >> 3) << red_off) |
1328 ((cte.green >> green_shift) << 5) |
1329 cte.blue >> 3));
1330 }
1331 break;
1332 case GDF_32BIT_X888RGB:
1333 for (i = 0; i < ncolors; i++) {
1334 cte = img->color_table[i];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001335 p[i].ce.dw = SWAP32((cte.red << 16) |
1336 (cte.green << 8) |
Anatolij Gustschind5011762010-03-15 14:50:25 +01001337 cte.blue);
1338 }
1339 break;
1340 default:
1341 printf("RLE Bitmap unsupported in video mode 0x%x\n",
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001342 VIDEO_DATA_FORMAT);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001343 return -1;
1344 }
1345
1346 while (decode) {
1347 switch (bm[0]) {
1348 case 0:
1349 switch (bm[1]) {
1350 case 0:
1351 /* scan line end marker */
1352 bm += 2;
1353 x = 0;
1354 y--;
1355 fbp = (unsigned char *)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001356 ((unsigned int) video_fb_address +
Anatolij Gustschind5011762010-03-15 14:50:25 +01001357 (((y + yoff) * VIDEO_COLS) +
1358 xoff) * bpp);
1359 continue;
1360 case 1:
1361 /* end of bitmap data marker */
1362 decode = 0;
1363 break;
1364 case 2:
1365 /* run offset marker */
1366 x += bm[2];
1367 y -= bm[3];
1368 fbp = (unsigned char *)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001369 ((unsigned int) video_fb_address +
Anatolij Gustschind5011762010-03-15 14:50:25 +01001370 (((y + yoff) * VIDEO_COLS) +
1371 x + xoff) * bpp);
1372 bm += 4;
1373 break;
1374 default:
1375 /* unencoded run */
1376 cnt = bm[1];
1377 runlen = cnt;
Anatolij Gustschin74446b62011-02-21 21:33:29 +01001378 pixels += cnt;
1379 if (pixels > limit)
1380 goto error;
1381
Anatolij Gustschind5011762010-03-15 14:50:25 +01001382 bm += 2;
1383 if (y < height) {
1384 if (x >= width) {
1385 x += runlen;
1386 goto next_run;
1387 }
1388 if (x + runlen > width)
1389 cnt = width - x;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001390 draw_bitmap(&fbp, bm, p, cnt, 0);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001391 x += runlen;
1392 }
1393next_run:
1394 bm += runlen;
1395 if (runlen & 1)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001396 bm++; /* 0 padding if length is odd */
Anatolij Gustschind5011762010-03-15 14:50:25 +01001397 }
1398 break;
1399 default:
1400 /* encoded run */
Anatolij Gustschin74446b62011-02-21 21:33:29 +01001401 cnt = bm[0];
1402 runlen = cnt;
1403 pixels += cnt;
1404 if (pixels > limit)
1405 goto error;
1406
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001407 if (y < height) { /* only draw into visible area */
Anatolij Gustschind5011762010-03-15 14:50:25 +01001408 if (x >= width) {
1409 x += runlen;
1410 bm += 2;
1411 continue;
1412 }
1413 if (x + runlen > width)
1414 cnt = width - x;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001415 draw_bitmap(&fbp, bm, p, cnt, 1);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001416 x += runlen;
1417 }
1418 bm += 2;
1419 break;
1420 }
1421 }
1422 return 0;
Anatolij Gustschin74446b62011-02-21 21:33:29 +01001423error:
1424 printf("Error: Too much encoded pixel data, validate your bitmap\n");
1425 return -1;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001426}
1427#endif
1428
1429/*
wdenk4b248f32004-03-14 16:51:43 +00001430 * Display the BMP file located at address bmp_image.
wdenk4b248f32004-03-14 16:51:43 +00001431 */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001432int video_display_bitmap(ulong bmp_image, int x, int y)
wdenk4b248f32004-03-14 16:51:43 +00001433{
1434 ushort xcount, ycount;
1435 uchar *fb;
1436 bmp_image_t *bmp = (bmp_image_t *) bmp_image;
1437 uchar *bmap;
1438 ushort padded_line;
1439 unsigned long width, height, bpp;
1440 unsigned colors;
1441 unsigned long compression;
1442 bmp_color_table_entry_t cte;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001443
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001444#ifdef CONFIG_VIDEO_BMP_GZIP
1445 unsigned char *dst = NULL;
1446 ulong len;
1447#endif
wdenk4b248f32004-03-14 16:51:43 +00001448
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001449 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001450
1451 if (!((bmp->header.signature[0] == 'B') &&
1452 (bmp->header.signature[1] == 'M'))) {
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001453
1454#ifdef CONFIG_VIDEO_BMP_GZIP
1455 /*
1456 * Could be a gzipped bmp image, try to decrompress...
1457 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001458 len = CONFIG_SYS_VIDEO_LOGO_MAX_SIZE;
1459 dst = malloc(CONFIG_SYS_VIDEO_LOGO_MAX_SIZE);
Stefan Roesec29ab9d2005-10-08 10:19:07 +02001460 if (dst == NULL) {
1461 printf("Error: malloc in gunzip failed!\n");
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001462 return 1;
Stefan Roesec29ab9d2005-10-08 10:19:07 +02001463 }
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001464 if (gunzip(dst, CONFIG_SYS_VIDEO_LOGO_MAX_SIZE,
1465 (uchar *) bmp_image,
1466 &len) != 0) {
1467 printf("Error: no valid bmp or bmp.gz image at %lx\n",
1468 bmp_image);
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001469 free(dst);
1470 return 1;
1471 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001472 if (len == CONFIG_SYS_VIDEO_LOGO_MAX_SIZE) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001473 printf("Image could be truncated "
1474 "(increase CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)!\n");
Stefan Roesec29ab9d2005-10-08 10:19:07 +02001475 }
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001476
1477 /*
1478 * Set addr to decompressed image
1479 */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001480 bmp = (bmp_image_t *) dst;
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001481
1482 if (!((bmp->header.signature[0] == 'B') &&
1483 (bmp->header.signature[1] == 'M'))) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001484 printf("Error: no valid bmp.gz image at %lx\n",
1485 bmp_image);
Matthias Fuchsa49e0d12008-04-21 11:19:04 +02001486 free(dst);
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001487 return 1;
1488 }
1489#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001490 printf("Error: no valid bmp image at %lx\n", bmp_image);
wdenk4b248f32004-03-14 16:51:43 +00001491 return 1;
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001492#endif /* CONFIG_VIDEO_BMP_GZIP */
wdenk4b248f32004-03-14 16:51:43 +00001493 }
1494
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001495 width = le32_to_cpu(bmp->header.width);
1496 height = le32_to_cpu(bmp->header.height);
1497 bpp = le16_to_cpu(bmp->header.bit_count);
1498 colors = le32_to_cpu(bmp->header.colors_used);
1499 compression = le32_to_cpu(bmp->header.compression);
wdenk4b248f32004-03-14 16:51:43 +00001500
Marek Vasut68da5b12011-10-21 14:17:04 +00001501 debug("Display-bmp: %ld x %ld with %d colors\n",
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001502 width, height, colors);
wdenk4b248f32004-03-14 16:51:43 +00001503
Anatolij Gustschind5011762010-03-15 14:50:25 +01001504 if (compression != BMP_BI_RGB
1505#ifdef CONFIG_VIDEO_BMP_RLE8
1506 && compression != BMP_BI_RLE8
1507#endif
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001508 ) {
1509 printf("Error: compression type %ld not supported\n",
1510 compression);
Matthias Fuchsa49e0d12008-04-21 11:19:04 +02001511#ifdef CONFIG_VIDEO_BMP_GZIP
1512 if (dst)
1513 free(dst);
1514#endif
wdenk4b248f32004-03-14 16:51:43 +00001515 return 1;
1516 }
1517
1518 padded_line = (((width * bpp + 7) / 8) + 3) & ~0x3;
1519
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001520#ifdef CONFIG_SPLASH_SCREEN_ALIGN
1521 if (x == BMP_ALIGN_CENTER)
1522 x = max(0, (VIDEO_VISIBLE_COLS - width) / 2);
1523 else if (x < 0)
1524 x = max(0, VIDEO_VISIBLE_COLS - width + x + 1);
1525
1526 if (y == BMP_ALIGN_CENTER)
1527 y = max(0, (VIDEO_VISIBLE_ROWS - height) / 2);
1528 else if (y < 0)
1529 y = max(0, VIDEO_VISIBLE_ROWS - height + y + 1);
1530#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1531
Matthias Weisseracf3baa2013-02-15 03:35:12 +00001532 /*
1533 * Just ignore elements which are completely beyond screen
1534 * dimensions.
1535 */
1536 if ((x >= VIDEO_VISIBLE_COLS) || (y >= VIDEO_VISIBLE_ROWS))
1537 return 0;
1538
wdenk4b248f32004-03-14 16:51:43 +00001539 if ((x + width) > VIDEO_VISIBLE_COLS)
1540 width = VIDEO_VISIBLE_COLS - x;
1541 if ((y + height) > VIDEO_VISIBLE_ROWS)
1542 height = VIDEO_VISIBLE_ROWS - y;
1543
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001544 bmap = (uchar *) bmp + le32_to_cpu(bmp->header.data_offset);
wdenk4b248f32004-03-14 16:51:43 +00001545 fb = (uchar *) (video_fb_address +
1546 ((y + height - 1) * VIDEO_COLS * VIDEO_PIXEL_SIZE) +
1547 x * VIDEO_PIXEL_SIZE);
1548
Anatolij Gustschind5011762010-03-15 14:50:25 +01001549#ifdef CONFIG_VIDEO_BMP_RLE8
1550 if (compression == BMP_BI_RLE8) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001551 return display_rle8_bitmap(bmp, x, y, width, height);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001552 }
1553#endif
1554
Timur Tabi68f66182010-08-23 16:58:00 -05001555 /* We handle only 4, 8, or 24 bpp bitmaps */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001556 switch (le16_to_cpu(bmp->header.bit_count)) {
Timur Tabi68f66182010-08-23 16:58:00 -05001557 case 4:
1558 padded_line -= width / 2;
1559 ycount = height;
1560
1561 switch (VIDEO_DATA_FORMAT) {
1562 case GDF_32BIT_X888RGB:
1563 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001564 WATCHDOG_RESET();
Timur Tabi68f66182010-08-23 16:58:00 -05001565 /*
1566 * Don't assume that 'width' is an
1567 * even number
1568 */
1569 for (xcount = 0; xcount < width; xcount++) {
1570 uchar idx;
1571
1572 if (xcount & 1) {
1573 idx = *bmap & 0xF;
1574 bmap++;
1575 } else
1576 idx = *bmap >> 4;
1577 cte = bmp->color_table[idx];
1578 FILL_32BIT_X888RGB(cte.red, cte.green,
1579 cte.blue);
1580 }
1581 bmap += padded_line;
1582 fb -= (VIDEO_VISIBLE_COLS + width) *
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001583 VIDEO_PIXEL_SIZE;
Timur Tabi68f66182010-08-23 16:58:00 -05001584 }
1585 break;
1586 default:
1587 puts("4bpp bitmap unsupported with current "
1588 "video mode\n");
1589 break;
1590 }
1591 break;
1592
wdenk4b248f32004-03-14 16:51:43 +00001593 case 8:
1594 padded_line -= width;
1595 if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
Anatolij Gustschin7c050f82010-06-19 20:41:56 +02001596 /* Copy colormap */
wdenk4b248f32004-03-14 16:51:43 +00001597 for (xcount = 0; xcount < colors; ++xcount) {
1598 cte = bmp->color_table[xcount];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001599 video_set_lut(xcount, cte.red, cte.green,
1600 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001601 }
1602 }
1603 ycount = height;
1604 switch (VIDEO_DATA_FORMAT) {
1605 case GDF__8BIT_INDEX:
1606 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001607 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001608 xcount = width;
1609 while (xcount--) {
1610 *fb++ = *bmap++;
1611 }
1612 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001613 fb -= (VIDEO_VISIBLE_COLS + width) *
1614 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001615 }
1616 break;
1617 case GDF__8BIT_332RGB:
1618 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001619 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001620 xcount = width;
1621 while (xcount--) {
1622 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001623 FILL_8BIT_332RGB(cte.red, cte.green,
1624 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001625 }
1626 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001627 fb -= (VIDEO_VISIBLE_COLS + width) *
1628 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001629 }
1630 break;
1631 case GDF_15BIT_555RGB:
1632 while (ycount--) {
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001633#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1634 int xpos = x;
1635#endif
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001636 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001637 xcount = width;
1638 while (xcount--) {
1639 cte = bmp->color_table[*bmap++];
Andrew Dyercc347802008-08-29 12:30:39 -05001640#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001641 fill_555rgb_pswap(fb, xpos++, cte.red,
1642 cte.green,
1643 cte.blue);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001644 fb += 2;
Andrew Dyercc347802008-08-29 12:30:39 -05001645#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001646 FILL_15BIT_555RGB(cte.red, cte.green,
1647 cte.blue);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001648#endif
wdenk4b248f32004-03-14 16:51:43 +00001649 }
1650 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001651 fb -= (VIDEO_VISIBLE_COLS + width) *
1652 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001653 }
1654 break;
1655 case GDF_16BIT_565RGB:
1656 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001657 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001658 xcount = width;
1659 while (xcount--) {
1660 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001661 FILL_16BIT_565RGB(cte.red, cte.green,
1662 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001663 }
1664 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001665 fb -= (VIDEO_VISIBLE_COLS + width) *
1666 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001667 }
1668 break;
1669 case GDF_32BIT_X888RGB:
1670 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001671 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001672 xcount = width;
1673 while (xcount--) {
1674 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001675 FILL_32BIT_X888RGB(cte.red, cte.green,
1676 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001677 }
1678 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001679 fb -= (VIDEO_VISIBLE_COLS + width) *
1680 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001681 }
1682 break;
1683 case GDF_24BIT_888RGB:
1684 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001685 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001686 xcount = width;
1687 while (xcount--) {
1688 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001689 FILL_24BIT_888RGB(cte.red, cte.green,
1690 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001691 }
1692 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001693 fb -= (VIDEO_VISIBLE_COLS + width) *
1694 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001695 }
1696 break;
1697 }
1698 break;
1699 case 24:
1700 padded_line -= 3 * width;
1701 ycount = height;
1702 switch (VIDEO_DATA_FORMAT) {
1703 case GDF__8BIT_332RGB:
1704 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001705 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001706 xcount = width;
1707 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001708 FILL_8BIT_332RGB(bmap[2], bmap[1],
1709 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001710 bmap += 3;
1711 }
1712 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001713 fb -= (VIDEO_VISIBLE_COLS + width) *
1714 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001715 }
1716 break;
1717 case GDF_15BIT_555RGB:
1718 while (ycount--) {
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001719#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1720 int xpos = x;
1721#endif
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001722 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001723 xcount = width;
1724 while (xcount--) {
Andrew Dyercc347802008-08-29 12:30:39 -05001725#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001726 fill_555rgb_pswap(fb, xpos++, bmap[2],
1727 bmap[1], bmap[0]);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001728 fb += 2;
Andrew Dyercc347802008-08-29 12:30:39 -05001729#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001730 FILL_15BIT_555RGB(bmap[2], bmap[1],
1731 bmap[0]);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001732#endif
wdenk4b248f32004-03-14 16:51:43 +00001733 bmap += 3;
1734 }
1735 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001736 fb -= (VIDEO_VISIBLE_COLS + width) *
1737 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001738 }
1739 break;
1740 case GDF_16BIT_565RGB:
1741 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001742 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001743 xcount = width;
1744 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001745 FILL_16BIT_565RGB(bmap[2], bmap[1],
1746 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001747 bmap += 3;
1748 }
1749 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001750 fb -= (VIDEO_VISIBLE_COLS + width) *
1751 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001752 }
1753 break;
1754 case GDF_32BIT_X888RGB:
1755 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001756 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001757 xcount = width;
1758 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001759 FILL_32BIT_X888RGB(bmap[2], bmap[1],
1760 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001761 bmap += 3;
1762 }
1763 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001764 fb -= (VIDEO_VISIBLE_COLS + width) *
1765 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001766 }
1767 break;
1768 case GDF_24BIT_888RGB:
1769 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001770 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001771 xcount = width;
1772 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001773 FILL_24BIT_888RGB(bmap[2], bmap[1],
1774 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001775 bmap += 3;
1776 }
1777 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001778 fb -= (VIDEO_VISIBLE_COLS + width) *
1779 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001780 }
1781 break;
1782 default:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001783 printf("Error: 24 bits/pixel bitmap incompatible "
1784 "with current video mode\n");
wdenk4b248f32004-03-14 16:51:43 +00001785 break;
1786 }
1787 break;
1788 default:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001789 printf("Error: %d bit/pixel bitmaps not supported by U-Boot\n",
1790 le16_to_cpu(bmp->header.bit_count));
wdenk4b248f32004-03-14 16:51:43 +00001791 break;
1792 }
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001793
1794#ifdef CONFIG_VIDEO_BMP_GZIP
1795 if (dst) {
1796 free(dst);
1797 }
1798#endif
1799
Eric Nelsondb0d47d2013-05-06 14:27:28 +02001800 if (cfb_do_flush_cache)
1801 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
wdenk4b248f32004-03-14 16:51:43 +00001802 return (0);
1803}
Jon Loeliger07d38a12007-07-09 17:30:01 -05001804#endif
wdenk4b248f32004-03-14 16:51:43 +00001805
wdenk4b248f32004-03-14 16:51:43 +00001806
wdenkc6097192002-11-03 00:24:07 +00001807#ifdef CONFIG_VIDEO_LOGO
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001808static int video_logo_xpos;
1809static int video_logo_ypos;
1810
Bastian Ruppert4b7d3a02012-09-13 22:29:02 +00001811static void plot_logo_or_black(void *screen, int width, int x, int y, \
1812 int black);
1813
1814static void logo_plot(void *screen, int width, int x, int y)
1815{
1816 plot_logo_or_black(screen, width, x, y, 0);
1817}
1818
1819static void logo_black(void)
1820{
1821 plot_logo_or_black(video_fb_address, \
1822 VIDEO_COLS, \
1823 video_logo_xpos, \
1824 video_logo_ypos, \
1825 1);
1826}
1827
1828static int do_clrlogo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1829{
1830 if (argc != 1)
1831 return cmd_usage(cmdtp);
1832
1833 logo_black();
1834 return 0;
1835}
1836
1837U_BOOT_CMD(
1838 clrlogo, 1, 0, do_clrlogo,
1839 "fill the boot logo area with black",
1840 " "
1841 );
1842
1843static void plot_logo_or_black(void *screen, int width, int x, int y, int black)
wdenkc6097192002-11-03 00:24:07 +00001844{
wdenkc6097192002-11-03 00:24:07 +00001845
wdenk4b248f32004-03-14 16:51:43 +00001846 int xcount, i;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001847 int skip = (width - VIDEO_LOGO_WIDTH) * VIDEO_PIXEL_SIZE;
Matthias Weisserbe129aa2010-01-12 12:06:31 +01001848 int ycount = video_logo_height;
wdenk4b248f32004-03-14 16:51:43 +00001849 unsigned char r, g, b, *logo_red, *logo_blue, *logo_green;
1850 unsigned char *source;
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001851 unsigned char *dest;
1852
1853#ifdef CONFIG_SPLASH_SCREEN_ALIGN
1854 if (x == BMP_ALIGN_CENTER)
1855 x = max(0, (VIDEO_VISIBLE_COLS - VIDEO_LOGO_WIDTH) / 2);
1856 else if (x < 0)
1857 x = max(0, VIDEO_VISIBLE_COLS - VIDEO_LOGO_WIDTH + x + 1);
1858
1859 if (y == BMP_ALIGN_CENTER)
1860 y = max(0, (VIDEO_VISIBLE_ROWS - VIDEO_LOGO_HEIGHT) / 2);
1861 else if (y < 0)
1862 y = max(0, VIDEO_VISIBLE_ROWS - VIDEO_LOGO_HEIGHT + y + 1);
1863#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1864
1865 dest = (unsigned char *)screen + (y * width + x) * VIDEO_PIXEL_SIZE;
wdenka6c7ad22002-12-03 21:28:10 +00001866
1867#ifdef CONFIG_VIDEO_BMP_LOGO
wdenk4b248f32004-03-14 16:51:43 +00001868 source = bmp_logo_bitmap;
wdenk8bde7f72003-06-27 21:31:46 +00001869
Anatolij Gustschin7c050f82010-06-19 20:41:56 +02001870 /* Allocate temporary space for computing colormap */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001871 logo_red = malloc(BMP_LOGO_COLORS);
1872 logo_green = malloc(BMP_LOGO_COLORS);
1873 logo_blue = malloc(BMP_LOGO_COLORS);
Anatolij Gustschin7c050f82010-06-19 20:41:56 +02001874 /* Compute color map */
wdenk4b248f32004-03-14 16:51:43 +00001875 for (i = 0; i < VIDEO_LOGO_COLORS; i++) {
1876 logo_red[i] = (bmp_logo_palette[i] & 0x0f00) >> 4;
1877 logo_green[i] = (bmp_logo_palette[i] & 0x00f0);
1878 logo_blue[i] = (bmp_logo_palette[i] & 0x000f) << 4;
1879 }
wdenka6c7ad22002-12-03 21:28:10 +00001880#else
wdenk4b248f32004-03-14 16:51:43 +00001881 source = linux_logo;
1882 logo_red = linux_logo_red;
1883 logo_green = linux_logo_green;
1884 logo_blue = linux_logo_blue;
wdenka6c7ad22002-12-03 21:28:10 +00001885#endif
wdenk8bde7f72003-06-27 21:31:46 +00001886
wdenk4b248f32004-03-14 16:51:43 +00001887 if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
1888 for (i = 0; i < VIDEO_LOGO_COLORS; i++) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001889 video_set_lut(i + VIDEO_LOGO_LUT_OFFSET,
1890 logo_red[i], logo_green[i],
1891 logo_blue[i]);
wdenk4b248f32004-03-14 16:51:43 +00001892 }
wdenk8bde7f72003-06-27 21:31:46 +00001893 }
wdenkc6097192002-11-03 00:24:07 +00001894
wdenk4b248f32004-03-14 16:51:43 +00001895 while (ycount--) {
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001896#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1897 int xpos = x;
1898#endif
wdenk4b248f32004-03-14 16:51:43 +00001899 xcount = VIDEO_LOGO_WIDTH;
1900 while (xcount--) {
Bastian Ruppert4b7d3a02012-09-13 22:29:02 +00001901 if (black) {
1902 r = 0x00;
1903 g = 0x00;
1904 b = 0x00;
1905 } else {
1906 r = logo_red[*source - VIDEO_LOGO_LUT_OFFSET];
1907 g = logo_green[*source - VIDEO_LOGO_LUT_OFFSET];
1908 b = logo_blue[*source - VIDEO_LOGO_LUT_OFFSET];
1909 }
wdenk8bde7f72003-06-27 21:31:46 +00001910
wdenk4b248f32004-03-14 16:51:43 +00001911 switch (VIDEO_DATA_FORMAT) {
1912 case GDF__8BIT_INDEX:
1913 *dest = *source;
1914 break;
1915 case GDF__8BIT_332RGB:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001916 *dest = ((r >> 5) << 5) |
1917 ((g >> 5) << 2) |
1918 (b >> 6);
wdenk4b248f32004-03-14 16:51:43 +00001919 break;
1920 case GDF_15BIT_555RGB:
Andrew Dyercc347802008-08-29 12:30:39 -05001921#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001922 fill_555rgb_pswap(dest, xpos++, r, g, b);
Andrew Dyercc347802008-08-29 12:30:39 -05001923#else
wdenk4b248f32004-03-14 16:51:43 +00001924 *(unsigned short *) dest =
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001925 SWAP16((unsigned short) (
1926 ((r >> 3) << 10) |
1927 ((g >> 3) << 5) |
1928 (b >> 3)));
Anatolij Gustschinbed53752008-01-11 14:30:01 +01001929#endif
wdenk4b248f32004-03-14 16:51:43 +00001930 break;
1931 case GDF_16BIT_565RGB:
1932 *(unsigned short *) dest =
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001933 SWAP16((unsigned short) (
1934 ((r >> 3) << 11) |
1935 ((g >> 2) << 5) |
1936 (b >> 3)));
wdenk4b248f32004-03-14 16:51:43 +00001937 break;
1938 case GDF_32BIT_X888RGB:
1939 *(unsigned long *) dest =
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001940 SWAP32((unsigned long) (
1941 (r << 16) |
1942 (g << 8) |
1943 b));
wdenk4b248f32004-03-14 16:51:43 +00001944 break;
1945 case GDF_24BIT_888RGB:
wdenkc6097192002-11-03 00:24:07 +00001946#ifdef VIDEO_FB_LITTLE_ENDIAN
wdenk4b248f32004-03-14 16:51:43 +00001947 dest[0] = b;
1948 dest[1] = g;
1949 dest[2] = r;
wdenkc6097192002-11-03 00:24:07 +00001950#else
wdenk4b248f32004-03-14 16:51:43 +00001951 dest[0] = r;
1952 dest[1] = g;
1953 dest[2] = b;
wdenkc6097192002-11-03 00:24:07 +00001954#endif
wdenk4b248f32004-03-14 16:51:43 +00001955 break;
1956 }
1957 source++;
1958 dest += VIDEO_PIXEL_SIZE;
1959 }
1960 dest += skip;
wdenk8bde7f72003-06-27 21:31:46 +00001961 }
wdenka6c7ad22002-12-03 21:28:10 +00001962#ifdef CONFIG_VIDEO_BMP_LOGO
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001963 free(logo_red);
1964 free(logo_green);
1965 free(logo_blue);
wdenka6c7ad22002-12-03 21:28:10 +00001966#endif
wdenkc6097192002-11-03 00:24:07 +00001967}
1968
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001969static void *video_logo(void)
wdenkc6097192002-11-03 00:24:07 +00001970{
wdenk4b248f32004-03-14 16:51:43 +00001971 char info[128];
Wolfgang Denka9a62af2011-11-04 15:55:20 +00001972 int space, len;
1973 __maybe_unused int y_off = 0;
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001974 __maybe_unused ulong addr;
1975 __maybe_unused char *s;
wdenkc6097192002-11-03 00:24:07 +00001976
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001977#ifdef CONFIG_SPLASH_SCREEN_ALIGN
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001978 s = getenv("splashpos");
1979 if (s != NULL) {
1980 if (s[0] == 'm')
1981 video_logo_xpos = BMP_ALIGN_CENTER;
1982 else
1983 video_logo_xpos = simple_strtol(s, NULL, 0);
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001984
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001985 s = strchr(s + 1, ',');
1986 if (s != NULL) {
1987 if (s[1] == 'm')
1988 video_logo_ypos = BMP_ALIGN_CENTER;
1989 else
1990 video_logo_ypos = simple_strtol(s + 1, NULL, 0);
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001991 }
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001992 }
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001993#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1994
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001995#ifdef CONFIG_SPLASH_SCREEN
1996 s = getenv("splashimage");
1997 if (s != NULL) {
1998
1999 addr = simple_strtoul(s, NULL, 16);
2000
2001
2002 if (video_display_bitmap(addr,
2003 video_logo_xpos,
2004 video_logo_ypos) == 0) {
Matthias Weisserbe129aa2010-01-12 12:06:31 +01002005 video_logo_height = 0;
wdenk4b248f32004-03-14 16:51:43 +00002006 return ((void *) (video_fb_address));
2007 }
2008 }
2009#endif /* CONFIG_SPLASH_SCREEN */
2010
Bastian Ruppert1e681f92012-09-13 22:29:01 +00002011 logo_plot(video_fb_address, VIDEO_COLS,
2012 video_logo_xpos, video_logo_ypos);
2013
2014#ifdef CONFIG_SPLASH_SCREEN_ALIGN
2015 /*
2016 * when using splashpos for video_logo, skip any info
2017 * output on video console if the logo is not at 0,0
2018 */
2019 if (video_logo_xpos || video_logo_ypos) {
2020 /*
2021 * video_logo_height is used in text and cursor offset
2022 * calculations. Since the console is below the logo,
2023 * we need to adjust the logo height
2024 */
2025 if (video_logo_ypos == BMP_ALIGN_CENTER)
2026 video_logo_height += max(0, (VIDEO_VISIBLE_ROWS - \
2027 VIDEO_LOGO_HEIGHT) / 2);
2028 else if (video_logo_ypos > 0)
2029 video_logo_height += video_logo_ypos;
2030
2031 return video_fb_address + video_logo_height * VIDEO_LINE_LEN;
2032 }
2033#endif
wdenk4b248f32004-03-14 16:51:43 +00002034
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002035 sprintf(info, " %s", version_string);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02002036
2037 space = (VIDEO_LINE_LEN / 2 - VIDEO_INFO_X) / VIDEO_FONT_WIDTH;
2038 len = strlen(info);
2039
2040 if (len > space) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002041 video_drawchars(VIDEO_INFO_X, VIDEO_INFO_Y,
2042 (uchar *) info, space);
2043 video_drawchars(VIDEO_INFO_X + VIDEO_FONT_WIDTH,
2044 VIDEO_INFO_Y + VIDEO_FONT_HEIGHT,
2045 (uchar *) info + space, len - space);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02002046 y_off = 1;
2047 } else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002048 video_drawstring(VIDEO_INFO_X, VIDEO_INFO_Y, (uchar *) info);
wdenkc6097192002-11-03 00:24:07 +00002049
2050#ifdef CONFIG_CONSOLE_EXTRA_INFO
wdenk4b248f32004-03-14 16:51:43 +00002051 {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002052 int i, n =
2053 ((video_logo_height -
2054 VIDEO_FONT_HEIGHT) / VIDEO_FONT_HEIGHT);
wdenkc6097192002-11-03 00:24:07 +00002055
wdenk4b248f32004-03-14 16:51:43 +00002056 for (i = 1; i < n; i++) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002057 video_get_info_str(i, info);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02002058 if (!*info)
2059 continue;
2060
2061 len = strlen(info);
2062 if (len > space) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002063 video_drawchars(VIDEO_INFO_X,
2064 VIDEO_INFO_Y +
2065 (i + y_off) *
2066 VIDEO_FONT_HEIGHT,
2067 (uchar *) info, space);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02002068 y_off++;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002069 video_drawchars(VIDEO_INFO_X +
2070 VIDEO_FONT_WIDTH,
2071 VIDEO_INFO_Y +
2072 (i + y_off) *
2073 VIDEO_FONT_HEIGHT,
2074 (uchar *) info + space,
2075 len - space);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02002076 } else {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002077 video_drawstring(VIDEO_INFO_X,
2078 VIDEO_INFO_Y +
2079 (i + y_off) *
2080 VIDEO_FONT_HEIGHT,
2081 (uchar *) info);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02002082 }
wdenk4b248f32004-03-14 16:51:43 +00002083 }
2084 }
wdenkc6097192002-11-03 00:24:07 +00002085#endif
2086
Matthias Weisserbe129aa2010-01-12 12:06:31 +01002087 return (video_fb_address + video_logo_height * VIDEO_LINE_LEN);
wdenkc6097192002-11-03 00:24:07 +00002088}
2089#endif
2090
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +02002091static int cfb_fb_is_in_dram(void)
2092{
2093 bd_t *bd = gd->bd;
2094#if defined(CONFIG_ARM) || defined(CONFIG_AVR32) || defined(COFNIG_NDS32) || \
2095defined(CONFIG_SANDBOX) || defined(CONFIG_X86)
2096 ulong start, end;
2097 int i;
2098
2099 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
2100 start = bd->bi_dram[i].start;
2101 end = bd->bi_dram[i].start + bd->bi_dram[i].size - 1;
2102 if ((ulong)video_fb_address >= start &&
2103 (ulong)video_fb_address < end)
2104 return 1;
2105 }
2106#else
2107 if ((ulong)video_fb_address >= bd->bi_memstart &&
2108 (ulong)video_fb_address < bd->bi_memstart + bd->bi_memsize)
2109 return 1;
2110#endif
2111 return 0;
2112}
2113
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002114static int video_init(void)
wdenkc6097192002-11-03 00:24:07 +00002115{
wdenk4b248f32004-03-14 16:51:43 +00002116 unsigned char color8;
wdenkc6097192002-11-03 00:24:07 +00002117
Wolfgang Denk57912932011-07-30 12:48:09 +00002118 pGD = video_hw_init();
2119 if (pGD == NULL)
wdenk4b248f32004-03-14 16:51:43 +00002120 return -1;
wdenkc6097192002-11-03 00:24:07 +00002121
wdenk4b248f32004-03-14 16:51:43 +00002122 video_fb_address = (void *) VIDEO_FB_ADRS;
wdenkc6097192002-11-03 00:24:07 +00002123#ifdef CONFIG_VIDEO_HW_CURSOR
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002124 video_init_hw_cursor(VIDEO_FONT_WIDTH, VIDEO_FONT_HEIGHT);
wdenkc6097192002-11-03 00:24:07 +00002125#endif
2126
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +02002127 cfb_do_flush_cache = cfb_fb_is_in_dram() && dcache_status();
2128
wdenk4b248f32004-03-14 16:51:43 +00002129 /* Init drawing pats */
2130 switch (VIDEO_DATA_FORMAT) {
2131 case GDF__8BIT_INDEX:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002132 video_set_lut(0x01, CONSOLE_FG_COL, CONSOLE_FG_COL,
2133 CONSOLE_FG_COL);
2134 video_set_lut(0x00, CONSOLE_BG_COL, CONSOLE_BG_COL,
2135 CONSOLE_BG_COL);
wdenk4b248f32004-03-14 16:51:43 +00002136 fgx = 0x01010101;
2137 bgx = 0x00000000;
2138 break;
2139 case GDF__8BIT_332RGB:
2140 color8 = ((CONSOLE_FG_COL & 0xe0) |
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002141 ((CONSOLE_FG_COL >> 3) & 0x1c) |
2142 CONSOLE_FG_COL >> 6);
2143 fgx = (color8 << 24) | (color8 << 16) | (color8 << 8) |
2144 color8;
wdenk4b248f32004-03-14 16:51:43 +00002145 color8 = ((CONSOLE_BG_COL & 0xe0) |
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002146 ((CONSOLE_BG_COL >> 3) & 0x1c) |
2147 CONSOLE_BG_COL >> 6);
2148 bgx = (color8 << 24) | (color8 << 16) | (color8 << 8) |
2149 color8;
wdenk4b248f32004-03-14 16:51:43 +00002150 break;
2151 case GDF_15BIT_555RGB:
2152 fgx = (((CONSOLE_FG_COL >> 3) << 26) |
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002153 ((CONSOLE_FG_COL >> 3) << 21) |
2154 ((CONSOLE_FG_COL >> 3) << 16) |
2155 ((CONSOLE_FG_COL >> 3) << 10) |
2156 ((CONSOLE_FG_COL >> 3) << 5) |
2157 (CONSOLE_FG_COL >> 3));
wdenk4b248f32004-03-14 16:51:43 +00002158 bgx = (((CONSOLE_BG_COL >> 3) << 26) |
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002159 ((CONSOLE_BG_COL >> 3) << 21) |
2160 ((CONSOLE_BG_COL >> 3) << 16) |
2161 ((CONSOLE_BG_COL >> 3) << 10) |
2162 ((CONSOLE_BG_COL >> 3) << 5) |
2163 (CONSOLE_BG_COL >> 3));
wdenk4b248f32004-03-14 16:51:43 +00002164 break;
2165 case GDF_16BIT_565RGB:
2166 fgx = (((CONSOLE_FG_COL >> 3) << 27) |
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002167 ((CONSOLE_FG_COL >> 2) << 21) |
2168 ((CONSOLE_FG_COL >> 3) << 16) |
2169 ((CONSOLE_FG_COL >> 3) << 11) |
2170 ((CONSOLE_FG_COL >> 2) << 5) |
2171 (CONSOLE_FG_COL >> 3));
wdenk4b248f32004-03-14 16:51:43 +00002172 bgx = (((CONSOLE_BG_COL >> 3) << 27) |
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002173 ((CONSOLE_BG_COL >> 2) << 21) |
2174 ((CONSOLE_BG_COL >> 3) << 16) |
2175 ((CONSOLE_BG_COL >> 3) << 11) |
2176 ((CONSOLE_BG_COL >> 2) << 5) |
2177 (CONSOLE_BG_COL >> 3));
wdenk4b248f32004-03-14 16:51:43 +00002178 break;
2179 case GDF_32BIT_X888RGB:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002180 fgx = (CONSOLE_FG_COL << 16) |
2181 (CONSOLE_FG_COL << 8) |
2182 CONSOLE_FG_COL;
2183 bgx = (CONSOLE_BG_COL << 16) |
2184 (CONSOLE_BG_COL << 8) |
2185 CONSOLE_BG_COL;
wdenk4b248f32004-03-14 16:51:43 +00002186 break;
2187 case GDF_24BIT_888RGB:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002188 fgx = (CONSOLE_FG_COL << 24) |
2189 (CONSOLE_FG_COL << 16) |
2190 (CONSOLE_FG_COL << 8) |
2191 CONSOLE_FG_COL;
2192 bgx = (CONSOLE_BG_COL << 24) |
2193 (CONSOLE_BG_COL << 16) |
2194 (CONSOLE_BG_COL << 8) |
2195 CONSOLE_BG_COL;
wdenk4b248f32004-03-14 16:51:43 +00002196 break;
2197 }
2198 eorx = fgx ^ bgx;
wdenkc6097192002-11-03 00:24:07 +00002199
2200#ifdef CONFIG_VIDEO_LOGO
wdenk4b248f32004-03-14 16:51:43 +00002201 /* Plot the logo and get start point of console */
Wolfgang Denk72c65f62011-07-29 09:55:28 +00002202 debug("Video: Drawing the logo ...\n");
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002203 video_console_address = video_logo();
wdenkc6097192002-11-03 00:24:07 +00002204#else
wdenk4b248f32004-03-14 16:51:43 +00002205 video_console_address = video_fb_address;
wdenkc6097192002-11-03 00:24:07 +00002206#endif
2207
wdenk4b248f32004-03-14 16:51:43 +00002208 /* Initialize the console */
2209 console_col = 0;
2210 console_row = 0;
wdenkc6097192002-11-03 00:24:07 +00002211
Eric Nelsondb0d47d2013-05-06 14:27:28 +02002212 if (cfb_do_flush_cache)
2213 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
2214
wdenk4b248f32004-03-14 16:51:43 +00002215 return 0;
wdenkc6097192002-11-03 00:24:07 +00002216}
2217
Wolfgang Denk6cc7ba92009-05-15 10:07:43 +02002218/*
2219 * Implement a weak default function for boards that optionally
2220 * need to skip the video initialization.
2221 */
2222int __board_video_skip(void)
2223{
2224 /* As default, don't skip test */
2225 return 0;
2226}
Wolfgang Denk6cc7ba92009-05-15 10:07:43 +02002227
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002228int board_video_skip(void)
2229 __attribute__ ((weak, alias("__board_video_skip")));
2230
2231int drv_video_init(void)
wdenkc6097192002-11-03 00:24:07 +00002232{
wdenk4b248f32004-03-14 16:51:43 +00002233 int skip_dev_init;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +02002234 struct stdio_dev console_dev;
wdenkc6097192002-11-03 00:24:07 +00002235
Wolfgang Denk6cc7ba92009-05-15 10:07:43 +02002236 /* Check if video initialization should be skipped */
2237 if (board_video_skip())
2238 return 0;
2239
wdenk81050922004-07-11 20:04:51 +00002240 /* Init video chip - returns with framebuffer cleared */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002241 skip_dev_init = (video_init() == -1);
wdenk81050922004-07-11 20:04:51 +00002242
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002243#if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
Wolfgang Denk72c65f62011-07-29 09:55:28 +00002244 debug("KBD: Keyboard init ...\n");
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002245 skip_dev_init |= (VIDEO_KBD_INIT_FCT == -1);
2246#endif
wdenkc6097192002-11-03 00:24:07 +00002247
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002248 if (skip_dev_init)
2249 return 0;
wdenkc6097192002-11-03 00:24:07 +00002250
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002251 /* Init vga device */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002252 memset(&console_dev, 0, sizeof(console_dev));
2253 strcpy(console_dev.name, "vga");
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002254 console_dev.ext = DEV_EXT_VIDEO; /* Video extensions */
2255 console_dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_SYSTEM;
2256 console_dev.putc = video_putc; /* 'putc' function */
2257 console_dev.puts = video_puts; /* 'puts' function */
2258 console_dev.tstc = NULL; /* 'tstc' function */
2259 console_dev.getc = NULL; /* 'getc' function */
2260
2261#if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
2262 /* Also init console device */
2263 console_dev.flags |= DEV_FLAGS_INPUT;
2264 console_dev.tstc = VIDEO_TSTC_FCT; /* 'tstc' function */
2265 console_dev.getc = VIDEO_GETC_FCT; /* 'getc' function */
wdenkc6097192002-11-03 00:24:07 +00002266#endif /* CONFIG_VGA_AS_SINGLE_DEVICE */
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002267
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002268 if (stdio_register(&console_dev) != 0)
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002269 return 0;
2270
2271 /* Return success */
2272 return 1;
wdenkc6097192002-11-03 00:24:07 +00002273}
Stefan Reinauerc20ee072012-09-28 15:11:12 +00002274
2275void video_position_cursor(unsigned col, unsigned row)
2276{
2277 console_col = min(col, CONSOLE_COLS - 1);
2278 console_row = min(row, CONSOLE_ROWS - 1);
2279}
2280
2281int video_get_pixel_width(void)
2282{
2283 return VIDEO_VISIBLE_COLS;
2284}
2285
2286int video_get_pixel_height(void)
2287{
2288 return VIDEO_VISIBLE_ROWS;
2289}
2290
2291int video_get_screen_rows(void)
2292{
2293 return CONSOLE_ROWS;
2294}
2295
2296int video_get_screen_columns(void)
2297{
2298 return CONSOLE_COLS;
2299}
2300
2301void video_clear(void)
2302{
Duncan Laurieae630572012-11-03 11:41:40 +00002303 if (!video_fb_address)
2304 return;
Stefan Reinauerc20ee072012-09-28 15:11:12 +00002305#ifdef VIDEO_HW_RECTFILL
2306 video_hw_rectfill(VIDEO_PIXEL_SIZE, /* bytes per pixel */
2307 0, /* dest pos x */
2308 0, /* dest pos y */
2309 VIDEO_VISIBLE_COLS, /* frame width */
2310 VIDEO_VISIBLE_ROWS, /* frame height */
2311 bgx /* fill color */
2312 );
2313#else
2314 memsetl(video_fb_address,
2315 (VIDEO_VISIBLE_ROWS * VIDEO_LINE_LEN) / sizeof(int), bgx);
2316#endif
2317}