blob: e384b71401f8c144bd80e647460ea394a59971a2 [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
Robert Winklerdd4425e2013-06-17 11:31:29 -0700184#include <splash.h>
185
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000186/*
187 * some Macros
188 */
wdenk4b248f32004-03-14 16:51:43 +0000189#define VIDEO_VISIBLE_COLS (pGD->winSizeX)
190#define VIDEO_VISIBLE_ROWS (pGD->winSizeY)
191#define VIDEO_PIXEL_SIZE (pGD->gdfBytesPP)
192#define VIDEO_DATA_FORMAT (pGD->gdfIndex)
193#define VIDEO_FB_ADRS (pGD->frameAdrs)
wdenkc6097192002-11-03 00:24:07 +0000194
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000195/*
196 * Console device defines with i8042 keyboard controller
197 * Any other keyboard controller must change this section
198 */
wdenkc6097192002-11-03 00:24:07 +0000199
wdenk4b248f32004-03-14 16:51:43 +0000200#ifdef CONFIG_I8042_KBD
wdenkc6097192002-11-03 00:24:07 +0000201#include <i8042.h>
202
wdenk4b248f32004-03-14 16:51:43 +0000203#define VIDEO_KBD_INIT_FCT i8042_kbd_init()
204#define VIDEO_TSTC_FCT i8042_tstc
205#define VIDEO_GETC_FCT i8042_getc
wdenkc6097192002-11-03 00:24:07 +0000206#endif
207
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000208/*
209 * Console device
210 */
wdenkc6097192002-11-03 00:24:07 +0000211
212#include <version.h>
213#include <linux/types.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200214#include <stdio_dev.h>
wdenkc6097192002-11-03 00:24:07 +0000215#include <video_font.h>
Che-Liang Chioud3983ee2011-10-21 17:04:21 +0800216#include <video_font_data.h>
wdenkc6097192002-11-03 00:24:07 +0000217
Jon Loeligerddb5d86f2007-07-10 11:13:21 -0500218#if defined(CONFIG_CMD_DATE)
219#include <rtc.h>
wdenkc6097192002-11-03 00:24:07 +0000220#endif
221
Jon Loeliger07d38a12007-07-09 17:30:01 -0500222#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
wdenk4b248f32004-03-14 16:51:43 +0000223#include <watchdog.h>
224#include <bmp_layout.h>
Anatolij Gustschinff8fb562013-07-02 00:04:05 +0200225#include <splash.h>
Jon Loeliger07d38a12007-07-09 17:30:01 -0500226#endif
wdenk4b248f32004-03-14 16:51:43 +0000227
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000228/*
229 * Cursor definition:
230 * CONFIG_CONSOLE_CURSOR: Uses a timer function (see drivers/input/i8042.c)
231 * to let the cursor blink. Uses the macros
232 * CURSOR_OFF and CURSOR_ON.
233 * CONFIG_VIDEO_SW_CURSOR: Draws a cursor after the last character. No
234 * blinking is provided. Uses the macros CURSOR_SET
235 * and CURSOR_OFF.
236 * CONFIG_VIDEO_HW_CURSOR: Uses the hardware cursor capability of the
237 * graphic chip. Uses the macro CURSOR_SET.
238 * ATTENTION: If booting an OS, the display driver
239 * must disable the hardware register of the graphic
240 * chip. Otherwise a blinking field is displayed
241 */
wdenkc6097192002-11-03 00:24:07 +0000242#if !defined(CONFIG_CONSOLE_CURSOR) && \
243 !defined(CONFIG_VIDEO_SW_CURSOR) && \
244 !defined(CONFIG_VIDEO_HW_CURSOR)
245/* no Cursor defined */
246#define CURSOR_ON
247#define CURSOR_OFF
248#define CURSOR_SET
249#endif
250
Gabe Black03d31fc2011-11-30 13:50:50 +0000251#if defined(CONFIG_CONSOLE_CURSOR) || defined(CONFIG_VIDEO_SW_CURSOR)
252#if defined(CURSOR_ON) || \
253 (defined(CONFIG_CONSOLE_CURSOR) && defined(CONFIG_VIDEO_SW_CURSOR))
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000254#error only one of CONFIG_CONSOLE_CURSOR, CONFIG_VIDEO_SW_CURSOR, \
255 or CONFIG_VIDEO_HW_CURSOR can be defined
wdenkc6097192002-11-03 00:24:07 +0000256#endif
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000257void console_cursor(int state);
258
Timur Tabi65618632010-08-27 15:45:47 -0500259#define CURSOR_ON console_cursor(1)
260#define CURSOR_OFF console_cursor(0)
Gabe Black03d31fc2011-11-30 13:50:50 +0000261#define CURSOR_SET video_set_cursor()
262#endif /* CONFIG_CONSOLE_CURSOR || CONFIG_VIDEO_SW_CURSOR */
263
264#ifdef CONFIG_CONSOLE_CURSOR
265#ifndef CONFIG_CONSOLE_TIME
266#error CONFIG_CONSOLE_CURSOR must be defined for CONFIG_CONSOLE_TIME
267#endif
wdenkc6097192002-11-03 00:24:07 +0000268#ifndef CONFIG_I8042_KBD
Marcel Ziswiler7817cb22007-12-30 03:30:46 +0100269#warning Cursor drawing on/off needs timer function s.a. drivers/input/i8042.c
wdenkc6097192002-11-03 00:24:07 +0000270#endif
wdenkc6097192002-11-03 00:24:07 +0000271#endif /* CONFIG_CONSOLE_CURSOR */
272
wdenkc6097192002-11-03 00:24:07 +0000273
274#ifdef CONFIG_VIDEO_HW_CURSOR
wdenk4b248f32004-03-14 16:51:43 +0000275#ifdef CURSOR_ON
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000276#error only one of CONFIG_CONSOLE_CURSOR, CONFIG_VIDEO_SW_CURSOR, \
277 or CONFIG_VIDEO_HW_CURSOR can be defined
wdenkc6097192002-11-03 00:24:07 +0000278#endif
279#define CURSOR_ON
280#define CURSOR_OFF
281#define CURSOR_SET video_set_hw_cursor(console_col * VIDEO_FONT_WIDTH, \
Timur Tabi65618632010-08-27 15:45:47 -0500282 (console_row * VIDEO_FONT_HEIGHT) + video_logo_height)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000283#endif /* CONFIG_VIDEO_HW_CURSOR */
wdenkc6097192002-11-03 00:24:07 +0000284
wdenk4b248f32004-03-14 16:51:43 +0000285#ifdef CONFIG_VIDEO_LOGO
286#ifdef CONFIG_VIDEO_BMP_LOGO
wdenka6c7ad22002-12-03 21:28:10 +0000287#include <bmp_logo.h>
Che-Liang Chiouc2707302011-10-20 23:04:20 +0000288#include <bmp_logo_data.h>
wdenk4b248f32004-03-14 16:51:43 +0000289#define VIDEO_LOGO_WIDTH BMP_LOGO_WIDTH
290#define VIDEO_LOGO_HEIGHT BMP_LOGO_HEIGHT
291#define VIDEO_LOGO_LUT_OFFSET BMP_LOGO_OFFSET
292#define VIDEO_LOGO_COLORS BMP_LOGO_COLORS
wdenka6c7ad22002-12-03 21:28:10 +0000293
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000294#else /* CONFIG_VIDEO_BMP_LOGO */
wdenk4b248f32004-03-14 16:51:43 +0000295#define LINUX_LOGO_WIDTH 80
296#define LINUX_LOGO_HEIGHT 80
297#define LINUX_LOGO_COLORS 214
298#define LINUX_LOGO_LUT_OFFSET 0x20
wdenkc6097192002-11-03 00:24:07 +0000299#define __initdata
300#include <linux_logo.h>
wdenk4b248f32004-03-14 16:51:43 +0000301#define VIDEO_LOGO_WIDTH LINUX_LOGO_WIDTH
302#define VIDEO_LOGO_HEIGHT LINUX_LOGO_HEIGHT
303#define VIDEO_LOGO_LUT_OFFSET LINUX_LOGO_LUT_OFFSET
304#define VIDEO_LOGO_COLORS LINUX_LOGO_COLORS
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000305#endif /* CONFIG_VIDEO_BMP_LOGO */
wdenk4b248f32004-03-14 16:51:43 +0000306#define VIDEO_INFO_X (VIDEO_LOGO_WIDTH)
307#define VIDEO_INFO_Y (VIDEO_FONT_HEIGHT/2)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000308#else /* CONFIG_VIDEO_LOGO */
wdenk4b248f32004-03-14 16:51:43 +0000309#define VIDEO_LOGO_WIDTH 0
310#define VIDEO_LOGO_HEIGHT 0
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000311#endif /* CONFIG_VIDEO_LOGO */
wdenkc6097192002-11-03 00:24:07 +0000312
wdenk4b248f32004-03-14 16:51:43 +0000313#define VIDEO_COLS VIDEO_VISIBLE_COLS
314#define VIDEO_ROWS VIDEO_VISIBLE_ROWS
315#define VIDEO_SIZE (VIDEO_ROWS*VIDEO_COLS*VIDEO_PIXEL_SIZE)
316#define VIDEO_PIX_BLOCKS (VIDEO_SIZE >> 2)
317#define VIDEO_LINE_LEN (VIDEO_COLS*VIDEO_PIXEL_SIZE)
318#define VIDEO_BURST_LEN (VIDEO_COLS/8)
wdenkc6097192002-11-03 00:24:07 +0000319
wdenk4b248f32004-03-14 16:51:43 +0000320#ifdef CONFIG_VIDEO_LOGO
Matthias Weisserbe129aa2010-01-12 12:06:31 +0100321#define CONSOLE_ROWS ((VIDEO_ROWS - video_logo_height) / VIDEO_FONT_HEIGHT)
wdenkc6097192002-11-03 00:24:07 +0000322#else
wdenk4b248f32004-03-14 16:51:43 +0000323#define CONSOLE_ROWS (VIDEO_ROWS / VIDEO_FONT_HEIGHT)
wdenkc6097192002-11-03 00:24:07 +0000324#endif
325
wdenk4b248f32004-03-14 16:51:43 +0000326#define CONSOLE_COLS (VIDEO_COLS / VIDEO_FONT_WIDTH)
327#define CONSOLE_ROW_SIZE (VIDEO_FONT_HEIGHT * VIDEO_LINE_LEN)
328#define CONSOLE_ROW_FIRST (video_console_address)
329#define CONSOLE_ROW_SECOND (video_console_address + CONSOLE_ROW_SIZE)
330#define CONSOLE_ROW_LAST (video_console_address + CONSOLE_SIZE - CONSOLE_ROW_SIZE)
331#define CONSOLE_SIZE (CONSOLE_ROW_SIZE * CONSOLE_ROWS)
332#define CONSOLE_SCROLL_SIZE (CONSOLE_SIZE - CONSOLE_ROW_SIZE)
wdenkc6097192002-11-03 00:24:07 +0000333
334/* Macros */
wdenk4b248f32004-03-14 16:51:43 +0000335#ifdef VIDEO_FB_LITTLE_ENDIAN
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000336#define SWAP16(x) ((((x) & 0x00ff) << 8) | \
337 ((x) >> 8) \
338 )
339#define SWAP32(x) ((((x) & 0x000000ff) << 24) | \
340 (((x) & 0x0000ff00) << 8) | \
341 (((x) & 0x00ff0000) >> 8) | \
342 (((x) & 0xff000000) >> 24) \
343 )
344#define SHORTSWAP32(x) ((((x) & 0x000000ff) << 8) | \
345 (((x) & 0x0000ff00) >> 8) | \
346 (((x) & 0x00ff0000) << 8) | \
347 (((x) & 0xff000000) >> 8) \
348 )
wdenkc6097192002-11-03 00:24:07 +0000349#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000350#define SWAP16(x) (x)
351#define SWAP32(x) (x)
Wolfgang Grandegger229b6dc2009-10-23 12:03:15 +0200352#if defined(VIDEO_FB_16BPP_WORD_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000353#define SHORTSWAP32(x) (((x) >> 16) | ((x) << 16))
Andrew Dyercc347802008-08-29 12:30:39 -0500354#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000355#define SHORTSWAP32(x) (x)
Anatolij Gustschinbed53752008-01-11 14:30:01 +0100356#endif
wdenkc6097192002-11-03 00:24:07 +0000357#endif
358
wdenkc6097192002-11-03 00:24:07 +0000359#ifdef CONFIG_CONSOLE_EXTRA_INFO
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000360/*
361 * setup a board string: type, speed, etc.
362 *
363 * line_number: location to place info string beside logo
364 * info: buffer for info string
365 */
366extern void video_get_info_str(int line_number, char *info);
wdenkc6097192002-11-03 00:24:07 +0000367#endif
368
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +0200369DECLARE_GLOBAL_DATA_PTR;
370
wdenkc6097192002-11-03 00:24:07 +0000371/* Locals */
372static GraphicDevice *pGD; /* Pointer to Graphic array */
373
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000374static void *video_fb_address; /* frame buffer address */
wdenk4b248f32004-03-14 16:51:43 +0000375static void *video_console_address; /* console buffer start address */
wdenkc6097192002-11-03 00:24:07 +0000376
Matthias Weisserbe129aa2010-01-12 12:06:31 +0100377static int video_logo_height = VIDEO_LOGO_HEIGHT;
378
Anatolij Gustschina45adde2011-12-07 03:58:10 +0000379static int __maybe_unused cursor_state;
380static int __maybe_unused old_col;
381static int __maybe_unused old_row;
Gabe Black03d31fc2011-11-30 13:50:50 +0000382
Wolfgang Denk57912932011-07-30 12:48:09 +0000383static int console_col; /* cursor col */
384static int console_row; /* cursor row */
wdenkc6097192002-11-03 00:24:07 +0000385
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000386static u32 eorx, fgx, bgx; /* color pats */
wdenkc6097192002-11-03 00:24:07 +0000387
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +0200388static int cfb_do_flush_cache;
389
Pali Rohár33a35bb2012-10-19 13:30:09 +0000390#ifdef CONFIG_CFB_CONSOLE_ANSI
391static char ansi_buf[10];
392static int ansi_buf_size;
393static int ansi_colors_need_revert;
394static int ansi_cursor_hidden;
395#endif
396
wdenkc6097192002-11-03 00:24:07 +0000397static const int video_font_draw_table8[] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000398 0x00000000, 0x000000ff, 0x0000ff00, 0x0000ffff,
399 0x00ff0000, 0x00ff00ff, 0x00ffff00, 0x00ffffff,
400 0xff000000, 0xff0000ff, 0xff00ff00, 0xff00ffff,
401 0xffff0000, 0xffff00ff, 0xffffff00, 0xffffffff
402};
wdenkc6097192002-11-03 00:24:07 +0000403
404static const int video_font_draw_table15[] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000405 0x00000000, 0x00007fff, 0x7fff0000, 0x7fff7fff
406};
wdenkc6097192002-11-03 00:24:07 +0000407
408static const int video_font_draw_table16[] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000409 0x00000000, 0x0000ffff, 0xffff0000, 0xffffffff
410};
wdenkc6097192002-11-03 00:24:07 +0000411
412static const int video_font_draw_table24[16][3] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000413 {0x00000000, 0x00000000, 0x00000000},
414 {0x00000000, 0x00000000, 0x00ffffff},
415 {0x00000000, 0x0000ffff, 0xff000000},
416 {0x00000000, 0x0000ffff, 0xffffffff},
417 {0x000000ff, 0xffff0000, 0x00000000},
418 {0x000000ff, 0xffff0000, 0x00ffffff},
419 {0x000000ff, 0xffffffff, 0xff000000},
420 {0x000000ff, 0xffffffff, 0xffffffff},
421 {0xffffff00, 0x00000000, 0x00000000},
422 {0xffffff00, 0x00000000, 0x00ffffff},
423 {0xffffff00, 0x0000ffff, 0xff000000},
424 {0xffffff00, 0x0000ffff, 0xffffffff},
425 {0xffffffff, 0xffff0000, 0x00000000},
426 {0xffffffff, 0xffff0000, 0x00ffffff},
427 {0xffffffff, 0xffffffff, 0xff000000},
428 {0xffffffff, 0xffffffff, 0xffffffff}
429};
wdenkc6097192002-11-03 00:24:07 +0000430
431static const int video_font_draw_table32[16][4] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000432 {0x00000000, 0x00000000, 0x00000000, 0x00000000},
433 {0x00000000, 0x00000000, 0x00000000, 0x00ffffff},
434 {0x00000000, 0x00000000, 0x00ffffff, 0x00000000},
435 {0x00000000, 0x00000000, 0x00ffffff, 0x00ffffff},
436 {0x00000000, 0x00ffffff, 0x00000000, 0x00000000},
437 {0x00000000, 0x00ffffff, 0x00000000, 0x00ffffff},
438 {0x00000000, 0x00ffffff, 0x00ffffff, 0x00000000},
439 {0x00000000, 0x00ffffff, 0x00ffffff, 0x00ffffff},
440 {0x00ffffff, 0x00000000, 0x00000000, 0x00000000},
441 {0x00ffffff, 0x00000000, 0x00000000, 0x00ffffff},
442 {0x00ffffff, 0x00000000, 0x00ffffff, 0x00000000},
443 {0x00ffffff, 0x00000000, 0x00ffffff, 0x00ffffff},
444 {0x00ffffff, 0x00ffffff, 0x00000000, 0x00000000},
445 {0x00ffffff, 0x00ffffff, 0x00000000, 0x00ffffff},
446 {0x00ffffff, 0x00ffffff, 0x00ffffff, 0x00000000},
447 {0x00ffffff, 0x00ffffff, 0x00ffffff, 0x00ffffff}
448};
wdenkc6097192002-11-03 00:24:07 +0000449
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000450static void video_drawchars(int xx, int yy, unsigned char *s, int count)
wdenkc6097192002-11-03 00:24:07 +0000451{
wdenk4b248f32004-03-14 16:51:43 +0000452 u8 *cdat, *dest, *dest0;
453 int rows, offset, c;
wdenkc6097192002-11-03 00:24:07 +0000454
wdenk4b248f32004-03-14 16:51:43 +0000455 offset = yy * VIDEO_LINE_LEN + xx * VIDEO_PIXEL_SIZE;
456 dest0 = video_fb_address + offset;
wdenkc6097192002-11-03 00:24:07 +0000457
wdenk4b248f32004-03-14 16:51:43 +0000458 switch (VIDEO_DATA_FORMAT) {
459 case GDF__8BIT_INDEX:
460 case GDF__8BIT_332RGB:
461 while (count--) {
462 c = *s;
463 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
464 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000465 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000466 u8 bits = *cdat++;
wdenkc6097192002-11-03 00:24:07 +0000467
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000468 ((u32 *) dest)[0] =
469 (video_font_draw_table8[bits >> 4] &
470 eorx) ^ bgx;
471 ((u32 *) dest)[1] =
472 (video_font_draw_table8[bits & 15] &
473 eorx) ^ bgx;
wdenk4b248f32004-03-14 16:51:43 +0000474 }
475 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
476 s++;
477 }
478 break;
wdenkc6097192002-11-03 00:24:07 +0000479
wdenk4b248f32004-03-14 16:51:43 +0000480 case GDF_15BIT_555RGB:
481 while (count--) {
482 c = *s;
483 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
484 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000485 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000486 u8 bits = *cdat++;
wdenkc6097192002-11-03 00:24:07 +0000487
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000488 ((u32 *) dest)[0] =
489 SHORTSWAP32((video_font_draw_table15
490 [bits >> 6] & eorx) ^
491 bgx);
492 ((u32 *) dest)[1] =
493 SHORTSWAP32((video_font_draw_table15
494 [bits >> 4 & 3] & eorx) ^
495 bgx);
496 ((u32 *) dest)[2] =
497 SHORTSWAP32((video_font_draw_table15
498 [bits >> 2 & 3] & eorx) ^
499 bgx);
500 ((u32 *) dest)[3] =
501 SHORTSWAP32((video_font_draw_table15
502 [bits & 3] & eorx) ^
503 bgx);
wdenk4b248f32004-03-14 16:51:43 +0000504 }
505 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
506 s++;
507 }
508 break;
wdenkc6097192002-11-03 00:24:07 +0000509
wdenk4b248f32004-03-14 16:51:43 +0000510 case GDF_16BIT_565RGB:
511 while (count--) {
512 c = *s;
513 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
514 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000515 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000516 u8 bits = *cdat++;
517
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000518 ((u32 *) dest)[0] =
519 SHORTSWAP32((video_font_draw_table16
520 [bits >> 6] & eorx) ^
521 bgx);
522 ((u32 *) dest)[1] =
523 SHORTSWAP32((video_font_draw_table16
524 [bits >> 4 & 3] & eorx) ^
525 bgx);
526 ((u32 *) dest)[2] =
527 SHORTSWAP32((video_font_draw_table16
528 [bits >> 2 & 3] & eorx) ^
529 bgx);
530 ((u32 *) dest)[3] =
531 SHORTSWAP32((video_font_draw_table16
532 [bits & 3] & eorx) ^
533 bgx);
wdenk4b248f32004-03-14 16:51:43 +0000534 }
535 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
536 s++;
537 }
538 break;
539
540 case GDF_32BIT_X888RGB:
541 while (count--) {
542 c = *s;
543 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
544 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000545 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000546 u8 bits = *cdat++;
547
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000548 ((u32 *) dest)[0] =
549 SWAP32((video_font_draw_table32
550 [bits >> 4][0] & eorx) ^ bgx);
551 ((u32 *) dest)[1] =
552 SWAP32((video_font_draw_table32
553 [bits >> 4][1] & eorx) ^ bgx);
554 ((u32 *) dest)[2] =
555 SWAP32((video_font_draw_table32
556 [bits >> 4][2] & eorx) ^ bgx);
557 ((u32 *) dest)[3] =
558 SWAP32((video_font_draw_table32
559 [bits >> 4][3] & eorx) ^ bgx);
560 ((u32 *) dest)[4] =
561 SWAP32((video_font_draw_table32
562 [bits & 15][0] & eorx) ^ bgx);
563 ((u32 *) dest)[5] =
564 SWAP32((video_font_draw_table32
565 [bits & 15][1] & eorx) ^ bgx);
566 ((u32 *) dest)[6] =
567 SWAP32((video_font_draw_table32
568 [bits & 15][2] & eorx) ^ bgx);
569 ((u32 *) dest)[7] =
570 SWAP32((video_font_draw_table32
571 [bits & 15][3] & eorx) ^ bgx);
wdenk4b248f32004-03-14 16:51:43 +0000572 }
573 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
574 s++;
575 }
576 break;
577
578 case GDF_24BIT_888RGB:
579 while (count--) {
580 c = *s;
581 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
582 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000583 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000584 u8 bits = *cdat++;
585
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000586 ((u32 *) dest)[0] =
587 (video_font_draw_table24[bits >> 4][0]
588 & eorx) ^ bgx;
589 ((u32 *) dest)[1] =
590 (video_font_draw_table24[bits >> 4][1]
591 & eorx) ^ bgx;
592 ((u32 *) dest)[2] =
593 (video_font_draw_table24[bits >> 4][2]
594 & eorx) ^ bgx;
595 ((u32 *) dest)[3] =
596 (video_font_draw_table24[bits & 15][0]
597 & eorx) ^ bgx;
598 ((u32 *) dest)[4] =
599 (video_font_draw_table24[bits & 15][1]
600 & eorx) ^ bgx;
601 ((u32 *) dest)[5] =
602 (video_font_draw_table24[bits & 15][2]
603 & eorx) ^ bgx;
wdenk4b248f32004-03-14 16:51:43 +0000604 }
605 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
606 s++;
607 }
608 break;
wdenk8bde7f72003-06-27 21:31:46 +0000609 }
wdenkc6097192002-11-03 00:24:07 +0000610}
611
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000612static inline void video_drawstring(int xx, int yy, unsigned char *s)
wdenkc6097192002-11-03 00:24:07 +0000613{
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000614 video_drawchars(xx, yy, s, strlen((char *) s));
wdenkc6097192002-11-03 00:24:07 +0000615}
616
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000617static void video_putchar(int xx, int yy, unsigned char c)
wdenkc6097192002-11-03 00:24:07 +0000618{
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000619 video_drawchars(xx, yy + video_logo_height, &c, 1);
wdenkc6097192002-11-03 00:24:07 +0000620}
621
wdenkc6097192002-11-03 00:24:07 +0000622#if defined(CONFIG_CONSOLE_CURSOR) || defined(CONFIG_VIDEO_SW_CURSOR)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000623static void video_set_cursor(void)
wdenkc6097192002-11-03 00:24:07 +0000624{
Gabe Black03d31fc2011-11-30 13:50:50 +0000625 if (cursor_state)
626 console_cursor(0);
627 console_cursor(1);
wdenkc6097192002-11-03 00:24:07 +0000628}
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000629
Anatolij Gustschina45adde2011-12-07 03:58:10 +0000630static void video_invertchar(int xx, int yy)
631{
632 int firstx = xx * VIDEO_PIXEL_SIZE;
633 int lastx = (xx + VIDEO_FONT_WIDTH) * VIDEO_PIXEL_SIZE;
634 int firsty = yy * VIDEO_LINE_LEN;
635 int lasty = (yy + VIDEO_FONT_HEIGHT) * VIDEO_LINE_LEN;
636 int x, y;
637 for (y = firsty; y < lasty; y += VIDEO_LINE_LEN) {
638 for (x = firstx; x < lastx; x++) {
639 u8 *dest = (u8 *)(video_fb_address) + x + y;
640 *dest = ~*dest;
641 }
642 }
643}
Gabe Black03d31fc2011-11-30 13:50:50 +0000644
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000645void console_cursor(int state)
wdenkc6097192002-11-03 00:24:07 +0000646{
wdenkc6097192002-11-03 00:24:07 +0000647#ifdef CONFIG_CONSOLE_TIME
wdenk4b248f32004-03-14 16:51:43 +0000648 struct rtc_time tm;
649 char info[16];
wdenkc6097192002-11-03 00:24:07 +0000650
wdenk4b248f32004-03-14 16:51:43 +0000651 /* time update only if cursor is on (faster scroll) */
652 if (state) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000653 rtc_get(&tm);
wdenkc6097192002-11-03 00:24:07 +0000654
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000655 sprintf(info, " %02d:%02d:%02d ", tm.tm_hour, tm.tm_min,
656 tm.tm_sec);
657 video_drawstring(VIDEO_VISIBLE_COLS - 10 * VIDEO_FONT_WIDTH,
658 VIDEO_INFO_Y, (uchar *) info);
wdenkc6097192002-11-03 00:24:07 +0000659
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000660 sprintf(info, "%02d.%02d.%04d", tm.tm_mday, tm.tm_mon,
661 tm.tm_year);
662 video_drawstring(VIDEO_VISIBLE_COLS - 10 * VIDEO_FONT_WIDTH,
663 VIDEO_INFO_Y + 1 * VIDEO_FONT_HEIGHT,
664 (uchar *) info);
wdenk4b248f32004-03-14 16:51:43 +0000665 }
wdenkc6097192002-11-03 00:24:07 +0000666#endif
667
Gabe Black03d31fc2011-11-30 13:50:50 +0000668 if (cursor_state != state) {
669 if (cursor_state) {
670 /* turn off the cursor */
671 video_invertchar(old_col * VIDEO_FONT_WIDTH,
672 old_row * VIDEO_FONT_HEIGHT +
673 video_logo_height);
674 } else {
675 /* turn off the cursor and record where it is */
676 video_invertchar(console_col * VIDEO_FONT_WIDTH,
677 console_row * VIDEO_FONT_HEIGHT +
678 video_logo_height);
679 old_col = console_col;
680 old_row = console_row;
681 }
682 cursor_state = state;
wdenk4b248f32004-03-14 16:51:43 +0000683 }
Eric Nelsondb0d47d2013-05-06 14:27:28 +0200684 if (cfb_do_flush_cache)
685 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
wdenkc6097192002-11-03 00:24:07 +0000686}
687#endif
688
wdenkc6097192002-11-03 00:24:07 +0000689#ifndef VIDEO_HW_RECTFILL
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000690static void memsetl(int *p, int c, int v)
wdenkc6097192002-11-03 00:24:07 +0000691{
wdenk4b248f32004-03-14 16:51:43 +0000692 while (c--)
693 *(p++) = v;
wdenkc6097192002-11-03 00:24:07 +0000694}
695#endif
696
wdenkc6097192002-11-03 00:24:07 +0000697#ifndef VIDEO_HW_BITBLT
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000698static void memcpyl(int *d, int *s, int c)
wdenkc6097192002-11-03 00:24:07 +0000699{
wdenk4b248f32004-03-14 16:51:43 +0000700 while (c--)
701 *(d++) = *(s++);
wdenkc6097192002-11-03 00:24:07 +0000702}
703#endif
704
Pali Rohár90f60a82012-04-28 07:26:44 +0000705static void console_clear_line(int line, int begin, int end)
706{
707#ifdef VIDEO_HW_RECTFILL
708 video_hw_rectfill(VIDEO_PIXEL_SIZE, /* bytes per pixel */
709 VIDEO_FONT_WIDTH * begin, /* dest pos x */
710 video_logo_height +
711 VIDEO_FONT_HEIGHT * line, /* dest pos y */
712 VIDEO_FONT_WIDTH * (end - begin + 1), /* fr. width */
713 VIDEO_FONT_HEIGHT, /* frame height */
714 bgx /* fill color */
715 );
716#else
717 if (begin == 0 && (end + 1) == CONSOLE_COLS) {
718 memsetl(CONSOLE_ROW_FIRST +
719 CONSOLE_ROW_SIZE * line, /* offset of row */
720 CONSOLE_ROW_SIZE >> 2, /* length of row */
721 bgx /* fill color */
722 );
723 } else {
724 void *offset;
725 int i, size;
726
727 offset = CONSOLE_ROW_FIRST +
728 CONSOLE_ROW_SIZE * line + /* offset of row */
729 VIDEO_FONT_WIDTH *
730 VIDEO_PIXEL_SIZE * begin; /* offset of col */
731 size = VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE * (end - begin + 1);
732 size >>= 2; /* length to end for memsetl() */
733 /* fill at col offset of i'th line using bgx as fill color */
734 for (i = 0; i < VIDEO_FONT_HEIGHT; i++)
735 memsetl(offset + i * VIDEO_LINE_LEN, size, bgx);
736 }
737#endif
738}
739
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000740static void console_scrollup(void)
wdenkc6097192002-11-03 00:24:07 +0000741{
wdenk4b248f32004-03-14 16:51:43 +0000742 /* copy up rows ignoring the first one */
wdenkc6097192002-11-03 00:24:07 +0000743
744#ifdef VIDEO_HW_BITBLT
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000745 video_hw_bitblt(VIDEO_PIXEL_SIZE, /* bytes per pixel */
746 0, /* source pos x */
747 video_logo_height +
748 VIDEO_FONT_HEIGHT, /* source pos y */
749 0, /* dest pos x */
750 video_logo_height, /* dest pos y */
751 VIDEO_VISIBLE_COLS, /* frame width */
752 VIDEO_VISIBLE_ROWS
753 - video_logo_height
754 - VIDEO_FONT_HEIGHT /* frame height */
wdenk4b248f32004-03-14 16:51:43 +0000755 );
wdenkc6097192002-11-03 00:24:07 +0000756#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000757 memcpyl(CONSOLE_ROW_FIRST, CONSOLE_ROW_SECOND,
758 CONSOLE_SCROLL_SIZE >> 2);
wdenkc6097192002-11-03 00:24:07 +0000759#endif
wdenk4b248f32004-03-14 16:51:43 +0000760 /* clear the last one */
Pali Rohár90f60a82012-04-28 07:26:44 +0000761 console_clear_line(CONSOLE_ROWS - 1, 0, CONSOLE_COLS - 1);
wdenkc6097192002-11-03 00:24:07 +0000762}
763
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000764static void console_back(void)
wdenkc6097192002-11-03 00:24:07 +0000765{
Timur Tabi65618632010-08-27 15:45:47 -0500766 console_col--;
wdenkc6097192002-11-03 00:24:07 +0000767
wdenk4b248f32004-03-14 16:51:43 +0000768 if (console_col < 0) {
769 console_col = CONSOLE_COLS - 1;
770 console_row--;
771 if (console_row < 0)
772 console_row = 0;
773 }
wdenkc6097192002-11-03 00:24:07 +0000774}
775
Pali Rohár33a35bb2012-10-19 13:30:09 +0000776#ifdef CONFIG_CFB_CONSOLE_ANSI
777
778static void console_clear(void)
wdenkc6097192002-11-03 00:24:07 +0000779{
Pali Rohár33a35bb2012-10-19 13:30:09 +0000780#ifdef VIDEO_HW_RECTFILL
781 video_hw_rectfill(VIDEO_PIXEL_SIZE, /* bytes per pixel */
782 0, /* dest pos x */
783 video_logo_height, /* dest pos y */
784 VIDEO_VISIBLE_COLS, /* frame width */
785 VIDEO_VISIBLE_ROWS, /* frame height */
786 bgx /* fill color */
787 );
788#else
789 memsetl(CONSOLE_ROW_FIRST, CONSOLE_SIZE, bgx);
790#endif
791}
792
793static void console_cursor_fix(void)
794{
795 if (console_row < 0)
796 console_row = 0;
797 if (console_row >= CONSOLE_ROWS)
798 console_row = CONSOLE_ROWS - 1;
799 if (console_col < 0)
800 console_col = 0;
801 if (console_col >= CONSOLE_COLS)
802 console_col = CONSOLE_COLS - 1;
803}
804
805static void console_cursor_up(int n)
806{
807 console_row -= n;
808 console_cursor_fix();
809}
810
811static void console_cursor_down(int n)
812{
813 console_row += n;
814 console_cursor_fix();
815}
816
817static void console_cursor_left(int n)
818{
819 console_col -= n;
820 console_cursor_fix();
821}
822
823static void console_cursor_right(int n)
824{
825 console_col += n;
826 console_cursor_fix();
827}
828
829static void console_cursor_set_position(int row, int col)
830{
831 if (console_row != -1)
832 console_row = row;
833 if (console_col != -1)
834 console_col = col;
835 console_cursor_fix();
836}
837
838static void console_previousline(int n)
839{
840 /* FIXME: also scroll terminal ? */
841 console_row -= n;
842 console_cursor_fix();
843}
844
845static void console_swap_colors(void)
846{
847 eorx = fgx;
848 fgx = bgx;
849 bgx = eorx;
850 eorx = fgx ^ bgx;
851}
852
853static inline int console_cursor_is_visible(void)
854{
855 return !ansi_cursor_hidden;
856}
857#else
858static inline int console_cursor_is_visible(void)
859{
860 return 1;
861}
862#endif
863
864static void console_newline(int n)
865{
866 console_row += n;
wdenk4b248f32004-03-14 16:51:43 +0000867 console_col = 0;
wdenkc6097192002-11-03 00:24:07 +0000868
wdenk4b248f32004-03-14 16:51:43 +0000869 /* Check if we need to scroll the terminal */
870 if (console_row >= CONSOLE_ROWS) {
871 /* Scroll everything up */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000872 console_scrollup();
wdenkc6097192002-11-03 00:24:07 +0000873
wdenk4b248f32004-03-14 16:51:43 +0000874 /* Decrement row number */
Pali Rohár33a35bb2012-10-19 13:30:09 +0000875 console_row = CONSOLE_ROWS - 1;
wdenk4b248f32004-03-14 16:51:43 +0000876 }
wdenkc6097192002-11-03 00:24:07 +0000877}
878
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000879static void console_cr(void)
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100880{
Timur Tabi65618632010-08-27 15:45:47 -0500881 console_col = 0;
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100882}
883
Pali Rohár33a35bb2012-10-19 13:30:09 +0000884static void parse_putc(const char c)
wdenkc6097192002-11-03 00:24:07 +0000885{
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100886 static int nl = 1;
887
Pali Rohár33a35bb2012-10-19 13:30:09 +0000888 if (console_cursor_is_visible())
889 CURSOR_OFF;
Gabe Black03d31fc2011-11-30 13:50:50 +0000890
wdenk4b248f32004-03-14 16:51:43 +0000891 switch (c) {
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100892 case 13: /* back to first column */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000893 console_cr();
wdenk4b248f32004-03-14 16:51:43 +0000894 break;
wdenkc6097192002-11-03 00:24:07 +0000895
wdenk4b248f32004-03-14 16:51:43 +0000896 case '\n': /* next line */
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100897 if (console_col || (!console_col && nl))
Pali Rohár33a35bb2012-10-19 13:30:09 +0000898 console_newline(1);
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100899 nl = 1;
wdenk4b248f32004-03-14 16:51:43 +0000900 break;
wdenkc6097192002-11-03 00:24:07 +0000901
wdenk4b248f32004-03-14 16:51:43 +0000902 case 9: /* tab 8 */
Timur Tabi65618632010-08-27 15:45:47 -0500903 console_col |= 0x0008;
wdenk4b248f32004-03-14 16:51:43 +0000904 console_col &= ~0x0007;
wdenkc6097192002-11-03 00:24:07 +0000905
wdenk4b248f32004-03-14 16:51:43 +0000906 if (console_col >= CONSOLE_COLS)
Pali Rohár33a35bb2012-10-19 13:30:09 +0000907 console_newline(1);
wdenk4b248f32004-03-14 16:51:43 +0000908 break;
wdenkc6097192002-11-03 00:24:07 +0000909
wdenk4b248f32004-03-14 16:51:43 +0000910 case 8: /* backspace */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000911 console_back();
wdenk4b248f32004-03-14 16:51:43 +0000912 break;
wdenkc6097192002-11-03 00:24:07 +0000913
Pali Rohár24fe06c2012-04-28 07:26:47 +0000914 case 7: /* bell */
915 break; /* ignored */
916
wdenk4b248f32004-03-14 16:51:43 +0000917 default: /* draw the char */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000918 video_putchar(console_col * VIDEO_FONT_WIDTH,
919 console_row * VIDEO_FONT_HEIGHT, c);
wdenk4b248f32004-03-14 16:51:43 +0000920 console_col++;
wdenkc6097192002-11-03 00:24:07 +0000921
wdenk4b248f32004-03-14 16:51:43 +0000922 /* check for newline */
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100923 if (console_col >= CONSOLE_COLS) {
Pali Rohár33a35bb2012-10-19 13:30:09 +0000924 console_newline(1);
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100925 nl = 0;
926 }
wdenk4b248f32004-03-14 16:51:43 +0000927 }
Pali Rohár33a35bb2012-10-19 13:30:09 +0000928
929 if (console_cursor_is_visible())
930 CURSOR_SET;
931}
932
933void video_putc(const char c)
934{
935#ifdef CONFIG_CFB_CONSOLE_ANSI
936 int i;
937
938 if (c == 27) {
939 for (i = 0; i < ansi_buf_size; ++i)
940 parse_putc(ansi_buf[i]);
941 ansi_buf[0] = 27;
942 ansi_buf_size = 1;
943 return;
944 }
945
946 if (ansi_buf_size > 0) {
947 /*
948 * 0 - ESC
949 * 1 - [
950 * 2 - num1
951 * 3 - ..
952 * 4 - ;
953 * 5 - num2
954 * 6 - ..
955 * - cchar
956 */
957 int next = 0;
958
959 int flush = 0;
960 int fail = 0;
961
962 int num1 = 0;
963 int num2 = 0;
964 int cchar = 0;
965
966 ansi_buf[ansi_buf_size++] = c;
967
968 if (ansi_buf_size >= sizeof(ansi_buf))
969 fail = 1;
970
971 for (i = 0; i < ansi_buf_size; ++i) {
972 if (fail)
973 break;
974
975 switch (next) {
976 case 0:
977 if (ansi_buf[i] == 27)
978 next = 1;
979 else
980 fail = 1;
981 break;
982
983 case 1:
984 if (ansi_buf[i] == '[')
985 next = 2;
986 else
987 fail = 1;
988 break;
989
990 case 2:
991 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
992 num1 = ansi_buf[i]-'0';
993 next = 3;
994 } else if (ansi_buf[i] != '?') {
995 --i;
996 num1 = 1;
997 next = 4;
998 }
999 break;
1000
1001 case 3:
1002 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
1003 num1 *= 10;
1004 num1 += ansi_buf[i]-'0';
1005 } else {
1006 --i;
1007 next = 4;
1008 }
1009 break;
1010
1011 case 4:
1012 if (ansi_buf[i] != ';') {
1013 --i;
1014 next = 7;
1015 } else
1016 next = 5;
1017 break;
1018
1019 case 5:
1020 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
1021 num2 = ansi_buf[i]-'0';
1022 next = 6;
1023 } else
1024 fail = 1;
1025 break;
1026
1027 case 6:
1028 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
1029 num2 *= 10;
1030 num2 += ansi_buf[i]-'0';
1031 } else {
1032 --i;
1033 next = 7;
1034 }
1035 break;
1036
1037 case 7:
1038 if ((ansi_buf[i] >= 'A' && ansi_buf[i] <= 'H')
1039 || ansi_buf[i] == 'J'
1040 || ansi_buf[i] == 'K'
1041 || ansi_buf[i] == 'h'
1042 || ansi_buf[i] == 'l'
1043 || ansi_buf[i] == 'm') {
1044 cchar = ansi_buf[i];
1045 flush = 1;
1046 } else
1047 fail = 1;
1048 break;
1049 }
1050 }
1051
1052 if (fail) {
1053 for (i = 0; i < ansi_buf_size; ++i)
1054 parse_putc(ansi_buf[i]);
1055 ansi_buf_size = 0;
1056 return;
1057 }
1058
1059 if (flush) {
1060 if (!ansi_cursor_hidden)
1061 CURSOR_OFF;
1062 ansi_buf_size = 0;
1063 switch (cchar) {
1064 case 'A':
1065 /* move cursor num1 rows up */
1066 console_cursor_up(num1);
1067 break;
1068 case 'B':
1069 /* move cursor num1 rows down */
1070 console_cursor_down(num1);
1071 break;
1072 case 'C':
1073 /* move cursor num1 columns forward */
1074 console_cursor_right(num1);
1075 break;
1076 case 'D':
1077 /* move cursor num1 columns back */
1078 console_cursor_left(num1);
1079 break;
1080 case 'E':
1081 /* move cursor num1 rows up at begin of row */
1082 console_previousline(num1);
1083 break;
1084 case 'F':
1085 /* move cursor num1 rows down at begin of row */
1086 console_newline(num1);
1087 break;
1088 case 'G':
1089 /* move cursor to column num1 */
1090 console_cursor_set_position(-1, num1-1);
1091 break;
1092 case 'H':
1093 /* move cursor to row num1, column num2 */
1094 console_cursor_set_position(num1-1, num2-1);
1095 break;
1096 case 'J':
1097 /* clear console and move cursor to 0, 0 */
1098 console_clear();
1099 console_cursor_set_position(0, 0);
1100 break;
1101 case 'K':
1102 /* clear line */
1103 if (num1 == 0)
1104 console_clear_line(console_row,
1105 console_col,
1106 CONSOLE_COLS-1);
1107 else if (num1 == 1)
1108 console_clear_line(console_row,
1109 0, console_col);
1110 else
1111 console_clear_line(console_row,
1112 0, CONSOLE_COLS-1);
1113 break;
1114 case 'h':
1115 ansi_cursor_hidden = 0;
1116 break;
1117 case 'l':
1118 ansi_cursor_hidden = 1;
1119 break;
1120 case 'm':
1121 if (num1 == 0) { /* reset swapped colors */
1122 if (ansi_colors_need_revert) {
1123 console_swap_colors();
1124 ansi_colors_need_revert = 0;
1125 }
1126 } else if (num1 == 7) { /* once swap colors */
1127 if (!ansi_colors_need_revert) {
1128 console_swap_colors();
1129 ansi_colors_need_revert = 1;
1130 }
1131 }
1132 break;
1133 }
1134 if (!ansi_cursor_hidden)
1135 CURSOR_SET;
1136 }
1137 } else {
1138 parse_putc(c);
1139 }
1140#else
1141 parse_putc(c);
1142#endif
Eric Nelsondb0d47d2013-05-06 14:27:28 +02001143 if (cfb_do_flush_cache)
1144 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
Timur Tabi65618632010-08-27 15:45:47 -05001145}
wdenkc6097192002-11-03 00:24:07 +00001146
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001147void video_puts(const char *s)
wdenkc6097192002-11-03 00:24:07 +00001148{
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001149 int count = strlen(s);
wdenkc6097192002-11-03 00:24:07 +00001150
wdenk4b248f32004-03-14 16:51:43 +00001151 while (count--)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001152 video_putc(*s++);
wdenkc6097192002-11-03 00:24:07 +00001153}
1154
Anatolij Gustschin10543822010-05-01 22:21:09 +02001155/*
1156 * Do not enforce drivers (or board code) to provide empty
1157 * video_set_lut() if they do not support 8 bpp format.
1158 * Implement weak default function instead.
1159 */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001160void __video_set_lut(unsigned int index, unsigned char r,
1161 unsigned char g, unsigned char b)
Anatolij Gustschin10543822010-05-01 22:21:09 +02001162{
1163}
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001164
1165void video_set_lut(unsigned int, unsigned char, unsigned char, unsigned char)
1166 __attribute__ ((weak, alias("__video_set_lut")));
Anatolij Gustschin10543822010-05-01 22:21:09 +02001167
Jon Loeliger07d38a12007-07-09 17:30:01 -05001168#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
wdenk4b248f32004-03-14 16:51:43 +00001169
1170#define FILL_8BIT_332RGB(r,g,b) { \
1171 *fb = ((r>>5)<<5) | ((g>>5)<<2) | (b>>6); \
1172 fb ++; \
1173}
1174
1175#define FILL_15BIT_555RGB(r,g,b) { \
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001176 *(unsigned short *)fb = \
1177 SWAP16((unsigned short)(((r>>3)<<10) | \
1178 ((g>>3)<<5) | \
1179 (b>>3))); \
wdenk4b248f32004-03-14 16:51:43 +00001180 fb += 2; \
1181}
1182
1183#define FILL_16BIT_565RGB(r,g,b) { \
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001184 *(unsigned short *)fb = \
1185 SWAP16((unsigned short)((((r)>>3)<<11)| \
1186 (((g)>>2)<<5) | \
1187 ((b)>>3))); \
wdenk4b248f32004-03-14 16:51:43 +00001188 fb += 2; \
1189}
1190
1191#define FILL_32BIT_X888RGB(r,g,b) { \
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001192 *(unsigned long *)fb = \
1193 SWAP32((unsigned long)(((r<<16) | \
1194 (g<<8) | \
1195 b))); \
wdenk4b248f32004-03-14 16:51:43 +00001196 fb += 4; \
1197}
1198
1199#ifdef VIDEO_FB_LITTLE_ENDIAN
1200#define FILL_24BIT_888RGB(r,g,b) { \
1201 fb[0] = b; \
1202 fb[1] = g; \
1203 fb[2] = r; \
1204 fb += 3; \
1205}
1206#else
1207#define FILL_24BIT_888RGB(r,g,b) { \
1208 fb[0] = r; \
1209 fb[1] = g; \
1210 fb[2] = b; \
1211 fb += 3; \
1212}
1213#endif
1214
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001215#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001216static inline void fill_555rgb_pswap(uchar *fb, int x, u8 r, u8 g, u8 b)
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001217{
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001218 ushort *dst = (ushort *) fb;
1219 ushort color = (ushort) (((r >> 3) << 10) |
1220 ((g >> 3) << 5) |
1221 (b >> 3));
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001222 if (x & 1)
1223 *(--dst) = color;
1224 else
1225 *(++dst) = color;
1226}
1227#endif
wdenk4b248f32004-03-14 16:51:43 +00001228
1229/*
Anatolij Gustschind5011762010-03-15 14:50:25 +01001230 * RLE8 bitmap support
1231 */
1232
1233#ifdef CONFIG_VIDEO_BMP_RLE8
1234/* Pre-calculated color table entry */
1235struct palette {
1236 union {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001237 unsigned short w; /* word */
1238 unsigned int dw; /* double word */
1239 } ce; /* color entry */
Anatolij Gustschind5011762010-03-15 14:50:25 +01001240};
1241
1242/*
1243 * Helper to draw encoded/unencoded run.
1244 */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001245static void draw_bitmap(uchar **fb, uchar *bm, struct palette *p,
1246 int cnt, int enc)
Anatolij Gustschind5011762010-03-15 14:50:25 +01001247{
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001248 ulong addr = (ulong) *fb;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001249 int *off;
1250 int enc_off = 1;
1251 int i;
1252
1253 /*
1254 * Setup offset of the color index in the bitmap.
1255 * Color index of encoded run is at offset 1.
1256 */
1257 off = enc ? &enc_off : &i;
1258
1259 switch (VIDEO_DATA_FORMAT) {
1260 case GDF__8BIT_INDEX:
1261 for (i = 0; i < cnt; i++)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001262 *(unsigned char *) addr++ = bm[*off];
Anatolij Gustschind5011762010-03-15 14:50:25 +01001263 break;
1264 case GDF_15BIT_555RGB:
1265 case GDF_16BIT_565RGB:
1266 /* differences handled while pre-calculating palette */
1267 for (i = 0; i < cnt; i++) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001268 *(unsigned short *) addr = p[bm[*off]].ce.w;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001269 addr += 2;
1270 }
1271 break;
1272 case GDF_32BIT_X888RGB:
1273 for (i = 0; i < cnt; i++) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001274 *(unsigned long *) addr = p[bm[*off]].ce.dw;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001275 addr += 4;
1276 }
1277 break;
1278 }
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001279 *fb = (uchar *) addr; /* return modified address */
Anatolij Gustschind5011762010-03-15 14:50:25 +01001280}
1281
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001282static int display_rle8_bitmap(bmp_image_t *img, int xoff, int yoff,
1283 int width, int height)
Anatolij Gustschind5011762010-03-15 14:50:25 +01001284{
1285 unsigned char *bm;
1286 unsigned char *fbp;
1287 unsigned int cnt, runlen;
1288 int decode = 1;
1289 int x, y, bpp, i, ncolors;
1290 struct palette p[256];
1291 bmp_color_table_entry_t cte;
1292 int green_shift, red_off;
Anatolij Gustschin74446b62011-02-21 21:33:29 +01001293 int limit = VIDEO_COLS * VIDEO_ROWS;
1294 int pixels = 0;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001295
1296 x = 0;
1297 y = __le32_to_cpu(img->header.height) - 1;
1298 ncolors = __le32_to_cpu(img->header.colors_used);
1299 bpp = VIDEO_PIXEL_SIZE;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001300 fbp = (unsigned char *) ((unsigned int) video_fb_address +
1301 (((y + yoff) * VIDEO_COLS) + xoff) * bpp);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001302
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001303 bm = (uchar *) img + __le32_to_cpu(img->header.data_offset);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001304
1305 /* pre-calculate and setup palette */
1306 switch (VIDEO_DATA_FORMAT) {
1307 case GDF__8BIT_INDEX:
1308 for (i = 0; i < ncolors; i++) {
1309 cte = img->color_table[i];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001310 video_set_lut(i, cte.red, cte.green, cte.blue);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001311 }
1312 break;
1313 case GDF_15BIT_555RGB:
1314 case GDF_16BIT_565RGB:
1315 if (VIDEO_DATA_FORMAT == GDF_15BIT_555RGB) {
1316 green_shift = 3;
1317 red_off = 10;
1318 } else {
1319 green_shift = 2;
1320 red_off = 11;
1321 }
1322 for (i = 0; i < ncolors; i++) {
1323 cte = img->color_table[i];
1324 p[i].ce.w = SWAP16((unsigned short)
1325 (((cte.red >> 3) << red_off) |
1326 ((cte.green >> green_shift) << 5) |
1327 cte.blue >> 3));
1328 }
1329 break;
1330 case GDF_32BIT_X888RGB:
1331 for (i = 0; i < ncolors; i++) {
1332 cte = img->color_table[i];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001333 p[i].ce.dw = SWAP32((cte.red << 16) |
1334 (cte.green << 8) |
Anatolij Gustschind5011762010-03-15 14:50:25 +01001335 cte.blue);
1336 }
1337 break;
1338 default:
1339 printf("RLE Bitmap unsupported in video mode 0x%x\n",
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001340 VIDEO_DATA_FORMAT);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001341 return -1;
1342 }
1343
1344 while (decode) {
1345 switch (bm[0]) {
1346 case 0:
1347 switch (bm[1]) {
1348 case 0:
1349 /* scan line end marker */
1350 bm += 2;
1351 x = 0;
1352 y--;
1353 fbp = (unsigned char *)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001354 ((unsigned int) video_fb_address +
Anatolij Gustschind5011762010-03-15 14:50:25 +01001355 (((y + yoff) * VIDEO_COLS) +
1356 xoff) * bpp);
1357 continue;
1358 case 1:
1359 /* end of bitmap data marker */
1360 decode = 0;
1361 break;
1362 case 2:
1363 /* run offset marker */
1364 x += bm[2];
1365 y -= bm[3];
1366 fbp = (unsigned char *)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001367 ((unsigned int) video_fb_address +
Anatolij Gustschind5011762010-03-15 14:50:25 +01001368 (((y + yoff) * VIDEO_COLS) +
1369 x + xoff) * bpp);
1370 bm += 4;
1371 break;
1372 default:
1373 /* unencoded run */
1374 cnt = bm[1];
1375 runlen = cnt;
Anatolij Gustschin74446b62011-02-21 21:33:29 +01001376 pixels += cnt;
1377 if (pixels > limit)
1378 goto error;
1379
Anatolij Gustschind5011762010-03-15 14:50:25 +01001380 bm += 2;
1381 if (y < height) {
1382 if (x >= width) {
1383 x += runlen;
1384 goto next_run;
1385 }
1386 if (x + runlen > width)
1387 cnt = width - x;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001388 draw_bitmap(&fbp, bm, p, cnt, 0);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001389 x += runlen;
1390 }
1391next_run:
1392 bm += runlen;
1393 if (runlen & 1)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001394 bm++; /* 0 padding if length is odd */
Anatolij Gustschind5011762010-03-15 14:50:25 +01001395 }
1396 break;
1397 default:
1398 /* encoded run */
Anatolij Gustschin74446b62011-02-21 21:33:29 +01001399 cnt = bm[0];
1400 runlen = cnt;
1401 pixels += cnt;
1402 if (pixels > limit)
1403 goto error;
1404
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001405 if (y < height) { /* only draw into visible area */
Anatolij Gustschind5011762010-03-15 14:50:25 +01001406 if (x >= width) {
1407 x += runlen;
1408 bm += 2;
1409 continue;
1410 }
1411 if (x + runlen > width)
1412 cnt = width - x;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001413 draw_bitmap(&fbp, bm, p, cnt, 1);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001414 x += runlen;
1415 }
1416 bm += 2;
1417 break;
1418 }
1419 }
1420 return 0;
Anatolij Gustschin74446b62011-02-21 21:33:29 +01001421error:
1422 printf("Error: Too much encoded pixel data, validate your bitmap\n");
1423 return -1;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001424}
1425#endif
1426
1427/*
wdenk4b248f32004-03-14 16:51:43 +00001428 * Display the BMP file located at address bmp_image.
wdenk4b248f32004-03-14 16:51:43 +00001429 */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001430int video_display_bitmap(ulong bmp_image, int x, int y)
wdenk4b248f32004-03-14 16:51:43 +00001431{
1432 ushort xcount, ycount;
1433 uchar *fb;
1434 bmp_image_t *bmp = (bmp_image_t *) bmp_image;
1435 uchar *bmap;
1436 ushort padded_line;
1437 unsigned long width, height, bpp;
1438 unsigned colors;
1439 unsigned long compression;
1440 bmp_color_table_entry_t cte;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001441
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001442#ifdef CONFIG_VIDEO_BMP_GZIP
1443 unsigned char *dst = NULL;
1444 ulong len;
1445#endif
wdenk4b248f32004-03-14 16:51:43 +00001446
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001447 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001448
1449 if (!((bmp->header.signature[0] == 'B') &&
1450 (bmp->header.signature[1] == 'M'))) {
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001451
1452#ifdef CONFIG_VIDEO_BMP_GZIP
1453 /*
1454 * Could be a gzipped bmp image, try to decrompress...
1455 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001456 len = CONFIG_SYS_VIDEO_LOGO_MAX_SIZE;
1457 dst = malloc(CONFIG_SYS_VIDEO_LOGO_MAX_SIZE);
Stefan Roesec29ab9d2005-10-08 10:19:07 +02001458 if (dst == NULL) {
1459 printf("Error: malloc in gunzip failed!\n");
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001460 return 1;
Stefan Roesec29ab9d2005-10-08 10:19:07 +02001461 }
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001462 if (gunzip(dst, CONFIG_SYS_VIDEO_LOGO_MAX_SIZE,
1463 (uchar *) bmp_image,
1464 &len) != 0) {
1465 printf("Error: no valid bmp or bmp.gz image at %lx\n",
1466 bmp_image);
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001467 free(dst);
1468 return 1;
1469 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001470 if (len == CONFIG_SYS_VIDEO_LOGO_MAX_SIZE) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001471 printf("Image could be truncated "
1472 "(increase CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)!\n");
Stefan Roesec29ab9d2005-10-08 10:19:07 +02001473 }
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001474
1475 /*
1476 * Set addr to decompressed image
1477 */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001478 bmp = (bmp_image_t *) dst;
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001479
1480 if (!((bmp->header.signature[0] == 'B') &&
1481 (bmp->header.signature[1] == 'M'))) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001482 printf("Error: no valid bmp.gz image at %lx\n",
1483 bmp_image);
Matthias Fuchsa49e0d12008-04-21 11:19:04 +02001484 free(dst);
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001485 return 1;
1486 }
1487#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001488 printf("Error: no valid bmp image at %lx\n", bmp_image);
wdenk4b248f32004-03-14 16:51:43 +00001489 return 1;
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001490#endif /* CONFIG_VIDEO_BMP_GZIP */
wdenk4b248f32004-03-14 16:51:43 +00001491 }
1492
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001493 width = le32_to_cpu(bmp->header.width);
1494 height = le32_to_cpu(bmp->header.height);
1495 bpp = le16_to_cpu(bmp->header.bit_count);
1496 colors = le32_to_cpu(bmp->header.colors_used);
1497 compression = le32_to_cpu(bmp->header.compression);
wdenk4b248f32004-03-14 16:51:43 +00001498
Marek Vasut68da5b12011-10-21 14:17:04 +00001499 debug("Display-bmp: %ld x %ld with %d colors\n",
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001500 width, height, colors);
wdenk4b248f32004-03-14 16:51:43 +00001501
Anatolij Gustschind5011762010-03-15 14:50:25 +01001502 if (compression != BMP_BI_RGB
1503#ifdef CONFIG_VIDEO_BMP_RLE8
1504 && compression != BMP_BI_RLE8
1505#endif
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001506 ) {
1507 printf("Error: compression type %ld not supported\n",
1508 compression);
Matthias Fuchsa49e0d12008-04-21 11:19:04 +02001509#ifdef CONFIG_VIDEO_BMP_GZIP
1510 if (dst)
1511 free(dst);
1512#endif
wdenk4b248f32004-03-14 16:51:43 +00001513 return 1;
1514 }
1515
1516 padded_line = (((width * bpp + 7) / 8) + 3) & ~0x3;
1517
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001518#ifdef CONFIG_SPLASH_SCREEN_ALIGN
1519 if (x == BMP_ALIGN_CENTER)
1520 x = max(0, (VIDEO_VISIBLE_COLS - width) / 2);
1521 else if (x < 0)
1522 x = max(0, VIDEO_VISIBLE_COLS - width + x + 1);
1523
1524 if (y == BMP_ALIGN_CENTER)
1525 y = max(0, (VIDEO_VISIBLE_ROWS - height) / 2);
1526 else if (y < 0)
1527 y = max(0, VIDEO_VISIBLE_ROWS - height + y + 1);
1528#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1529
Matthias Weisseracf3baa2013-02-15 03:35:12 +00001530 /*
1531 * Just ignore elements which are completely beyond screen
1532 * dimensions.
1533 */
1534 if ((x >= VIDEO_VISIBLE_COLS) || (y >= VIDEO_VISIBLE_ROWS))
1535 return 0;
1536
wdenk4b248f32004-03-14 16:51:43 +00001537 if ((x + width) > VIDEO_VISIBLE_COLS)
1538 width = VIDEO_VISIBLE_COLS - x;
1539 if ((y + height) > VIDEO_VISIBLE_ROWS)
1540 height = VIDEO_VISIBLE_ROWS - y;
1541
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001542 bmap = (uchar *) bmp + le32_to_cpu(bmp->header.data_offset);
wdenk4b248f32004-03-14 16:51:43 +00001543 fb = (uchar *) (video_fb_address +
1544 ((y + height - 1) * VIDEO_COLS * VIDEO_PIXEL_SIZE) +
1545 x * VIDEO_PIXEL_SIZE);
1546
Anatolij Gustschind5011762010-03-15 14:50:25 +01001547#ifdef CONFIG_VIDEO_BMP_RLE8
1548 if (compression == BMP_BI_RLE8) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001549 return display_rle8_bitmap(bmp, x, y, width, height);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001550 }
1551#endif
1552
Timur Tabi68f66182010-08-23 16:58:00 -05001553 /* We handle only 4, 8, or 24 bpp bitmaps */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001554 switch (le16_to_cpu(bmp->header.bit_count)) {
Timur Tabi68f66182010-08-23 16:58:00 -05001555 case 4:
1556 padded_line -= width / 2;
1557 ycount = height;
1558
1559 switch (VIDEO_DATA_FORMAT) {
1560 case GDF_32BIT_X888RGB:
1561 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001562 WATCHDOG_RESET();
Timur Tabi68f66182010-08-23 16:58:00 -05001563 /*
1564 * Don't assume that 'width' is an
1565 * even number
1566 */
1567 for (xcount = 0; xcount < width; xcount++) {
1568 uchar idx;
1569
1570 if (xcount & 1) {
1571 idx = *bmap & 0xF;
1572 bmap++;
1573 } else
1574 idx = *bmap >> 4;
1575 cte = bmp->color_table[idx];
1576 FILL_32BIT_X888RGB(cte.red, cte.green,
1577 cte.blue);
1578 }
1579 bmap += padded_line;
1580 fb -= (VIDEO_VISIBLE_COLS + width) *
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001581 VIDEO_PIXEL_SIZE;
Timur Tabi68f66182010-08-23 16:58:00 -05001582 }
1583 break;
1584 default:
1585 puts("4bpp bitmap unsupported with current "
1586 "video mode\n");
1587 break;
1588 }
1589 break;
1590
wdenk4b248f32004-03-14 16:51:43 +00001591 case 8:
1592 padded_line -= width;
1593 if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
Anatolij Gustschin7c050f82010-06-19 20:41:56 +02001594 /* Copy colormap */
wdenk4b248f32004-03-14 16:51:43 +00001595 for (xcount = 0; xcount < colors; ++xcount) {
1596 cte = bmp->color_table[xcount];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001597 video_set_lut(xcount, cte.red, cte.green,
1598 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001599 }
1600 }
1601 ycount = height;
1602 switch (VIDEO_DATA_FORMAT) {
1603 case GDF__8BIT_INDEX:
1604 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001605 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001606 xcount = width;
1607 while (xcount--) {
1608 *fb++ = *bmap++;
1609 }
1610 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001611 fb -= (VIDEO_VISIBLE_COLS + width) *
1612 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001613 }
1614 break;
1615 case GDF__8BIT_332RGB:
1616 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001617 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001618 xcount = width;
1619 while (xcount--) {
1620 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001621 FILL_8BIT_332RGB(cte.red, cte.green,
1622 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001623 }
1624 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001625 fb -= (VIDEO_VISIBLE_COLS + width) *
1626 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001627 }
1628 break;
1629 case GDF_15BIT_555RGB:
1630 while (ycount--) {
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001631#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1632 int xpos = x;
1633#endif
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001634 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001635 xcount = width;
1636 while (xcount--) {
1637 cte = bmp->color_table[*bmap++];
Andrew Dyercc347802008-08-29 12:30:39 -05001638#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001639 fill_555rgb_pswap(fb, xpos++, cte.red,
1640 cte.green,
1641 cte.blue);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001642 fb += 2;
Andrew Dyercc347802008-08-29 12:30:39 -05001643#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001644 FILL_15BIT_555RGB(cte.red, cte.green,
1645 cte.blue);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001646#endif
wdenk4b248f32004-03-14 16:51:43 +00001647 }
1648 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001649 fb -= (VIDEO_VISIBLE_COLS + width) *
1650 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001651 }
1652 break;
1653 case GDF_16BIT_565RGB:
1654 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001655 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001656 xcount = width;
1657 while (xcount--) {
1658 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001659 FILL_16BIT_565RGB(cte.red, cte.green,
1660 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001661 }
1662 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001663 fb -= (VIDEO_VISIBLE_COLS + width) *
1664 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001665 }
1666 break;
1667 case GDF_32BIT_X888RGB:
1668 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001669 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001670 xcount = width;
1671 while (xcount--) {
1672 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001673 FILL_32BIT_X888RGB(cte.red, cte.green,
1674 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001675 }
1676 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001677 fb -= (VIDEO_VISIBLE_COLS + width) *
1678 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001679 }
1680 break;
1681 case GDF_24BIT_888RGB:
1682 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001683 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001684 xcount = width;
1685 while (xcount--) {
1686 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001687 FILL_24BIT_888RGB(cte.red, cte.green,
1688 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001689 }
1690 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001691 fb -= (VIDEO_VISIBLE_COLS + width) *
1692 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001693 }
1694 break;
1695 }
1696 break;
1697 case 24:
1698 padded_line -= 3 * width;
1699 ycount = height;
1700 switch (VIDEO_DATA_FORMAT) {
1701 case GDF__8BIT_332RGB:
1702 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001703 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001704 xcount = width;
1705 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001706 FILL_8BIT_332RGB(bmap[2], bmap[1],
1707 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001708 bmap += 3;
1709 }
1710 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001711 fb -= (VIDEO_VISIBLE_COLS + width) *
1712 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001713 }
1714 break;
1715 case GDF_15BIT_555RGB:
1716 while (ycount--) {
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001717#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1718 int xpos = x;
1719#endif
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001720 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001721 xcount = width;
1722 while (xcount--) {
Andrew Dyercc347802008-08-29 12:30:39 -05001723#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001724 fill_555rgb_pswap(fb, xpos++, bmap[2],
1725 bmap[1], bmap[0]);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001726 fb += 2;
Andrew Dyercc347802008-08-29 12:30:39 -05001727#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001728 FILL_15BIT_555RGB(bmap[2], bmap[1],
1729 bmap[0]);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001730#endif
wdenk4b248f32004-03-14 16:51:43 +00001731 bmap += 3;
1732 }
1733 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001734 fb -= (VIDEO_VISIBLE_COLS + width) *
1735 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001736 }
1737 break;
1738 case GDF_16BIT_565RGB:
1739 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001740 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001741 xcount = width;
1742 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001743 FILL_16BIT_565RGB(bmap[2], bmap[1],
1744 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001745 bmap += 3;
1746 }
1747 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001748 fb -= (VIDEO_VISIBLE_COLS + width) *
1749 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001750 }
1751 break;
1752 case GDF_32BIT_X888RGB:
1753 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001754 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001755 xcount = width;
1756 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001757 FILL_32BIT_X888RGB(bmap[2], bmap[1],
1758 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001759 bmap += 3;
1760 }
1761 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001762 fb -= (VIDEO_VISIBLE_COLS + width) *
1763 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001764 }
1765 break;
1766 case GDF_24BIT_888RGB:
1767 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001768 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001769 xcount = width;
1770 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001771 FILL_24BIT_888RGB(bmap[2], bmap[1],
1772 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001773 bmap += 3;
1774 }
1775 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001776 fb -= (VIDEO_VISIBLE_COLS + width) *
1777 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001778 }
1779 break;
1780 default:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001781 printf("Error: 24 bits/pixel bitmap incompatible "
1782 "with current video mode\n");
wdenk4b248f32004-03-14 16:51:43 +00001783 break;
1784 }
1785 break;
1786 default:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001787 printf("Error: %d bit/pixel bitmaps not supported by U-Boot\n",
1788 le16_to_cpu(bmp->header.bit_count));
wdenk4b248f32004-03-14 16:51:43 +00001789 break;
1790 }
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001791
1792#ifdef CONFIG_VIDEO_BMP_GZIP
1793 if (dst) {
1794 free(dst);
1795 }
1796#endif
1797
Eric Nelsondb0d47d2013-05-06 14:27:28 +02001798 if (cfb_do_flush_cache)
1799 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
wdenk4b248f32004-03-14 16:51:43 +00001800 return (0);
1801}
Jon Loeliger07d38a12007-07-09 17:30:01 -05001802#endif
wdenk4b248f32004-03-14 16:51:43 +00001803
wdenk4b248f32004-03-14 16:51:43 +00001804
wdenkc6097192002-11-03 00:24:07 +00001805#ifdef CONFIG_VIDEO_LOGO
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001806static int video_logo_xpos;
1807static int video_logo_ypos;
1808
Bastian Ruppert4b7d3a02012-09-13 22:29:02 +00001809static void plot_logo_or_black(void *screen, int width, int x, int y, \
1810 int black);
1811
1812static void logo_plot(void *screen, int width, int x, int y)
1813{
1814 plot_logo_or_black(screen, width, x, y, 0);
1815}
1816
1817static void logo_black(void)
1818{
1819 plot_logo_or_black(video_fb_address, \
1820 VIDEO_COLS, \
1821 video_logo_xpos, \
1822 video_logo_ypos, \
1823 1);
1824}
1825
1826static int do_clrlogo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1827{
1828 if (argc != 1)
1829 return cmd_usage(cmdtp);
1830
1831 logo_black();
1832 return 0;
1833}
1834
1835U_BOOT_CMD(
1836 clrlogo, 1, 0, do_clrlogo,
1837 "fill the boot logo area with black",
1838 " "
1839 );
1840
1841static void plot_logo_or_black(void *screen, int width, int x, int y, int black)
wdenkc6097192002-11-03 00:24:07 +00001842{
wdenkc6097192002-11-03 00:24:07 +00001843
wdenk4b248f32004-03-14 16:51:43 +00001844 int xcount, i;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001845 int skip = (width - VIDEO_LOGO_WIDTH) * VIDEO_PIXEL_SIZE;
Matthias Weisserbe129aa2010-01-12 12:06:31 +01001846 int ycount = video_logo_height;
wdenk4b248f32004-03-14 16:51:43 +00001847 unsigned char r, g, b, *logo_red, *logo_blue, *logo_green;
1848 unsigned char *source;
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001849 unsigned char *dest;
1850
1851#ifdef CONFIG_SPLASH_SCREEN_ALIGN
1852 if (x == BMP_ALIGN_CENTER)
1853 x = max(0, (VIDEO_VISIBLE_COLS - VIDEO_LOGO_WIDTH) / 2);
1854 else if (x < 0)
1855 x = max(0, VIDEO_VISIBLE_COLS - VIDEO_LOGO_WIDTH + x + 1);
1856
1857 if (y == BMP_ALIGN_CENTER)
1858 y = max(0, (VIDEO_VISIBLE_ROWS - VIDEO_LOGO_HEIGHT) / 2);
1859 else if (y < 0)
1860 y = max(0, VIDEO_VISIBLE_ROWS - VIDEO_LOGO_HEIGHT + y + 1);
1861#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1862
1863 dest = (unsigned char *)screen + (y * width + x) * VIDEO_PIXEL_SIZE;
wdenka6c7ad22002-12-03 21:28:10 +00001864
1865#ifdef CONFIG_VIDEO_BMP_LOGO
wdenk4b248f32004-03-14 16:51:43 +00001866 source = bmp_logo_bitmap;
wdenk8bde7f72003-06-27 21:31:46 +00001867
Anatolij Gustschin7c050f82010-06-19 20:41:56 +02001868 /* Allocate temporary space for computing colormap */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001869 logo_red = malloc(BMP_LOGO_COLORS);
1870 logo_green = malloc(BMP_LOGO_COLORS);
1871 logo_blue = malloc(BMP_LOGO_COLORS);
Anatolij Gustschin7c050f82010-06-19 20:41:56 +02001872 /* Compute color map */
wdenk4b248f32004-03-14 16:51:43 +00001873 for (i = 0; i < VIDEO_LOGO_COLORS; i++) {
1874 logo_red[i] = (bmp_logo_palette[i] & 0x0f00) >> 4;
1875 logo_green[i] = (bmp_logo_palette[i] & 0x00f0);
1876 logo_blue[i] = (bmp_logo_palette[i] & 0x000f) << 4;
1877 }
wdenka6c7ad22002-12-03 21:28:10 +00001878#else
wdenk4b248f32004-03-14 16:51:43 +00001879 source = linux_logo;
1880 logo_red = linux_logo_red;
1881 logo_green = linux_logo_green;
1882 logo_blue = linux_logo_blue;
wdenka6c7ad22002-12-03 21:28:10 +00001883#endif
wdenk8bde7f72003-06-27 21:31:46 +00001884
wdenk4b248f32004-03-14 16:51:43 +00001885 if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
1886 for (i = 0; i < VIDEO_LOGO_COLORS; i++) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001887 video_set_lut(i + VIDEO_LOGO_LUT_OFFSET,
1888 logo_red[i], logo_green[i],
1889 logo_blue[i]);
wdenk4b248f32004-03-14 16:51:43 +00001890 }
wdenk8bde7f72003-06-27 21:31:46 +00001891 }
wdenkc6097192002-11-03 00:24:07 +00001892
wdenk4b248f32004-03-14 16:51:43 +00001893 while (ycount--) {
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001894#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1895 int xpos = x;
1896#endif
wdenk4b248f32004-03-14 16:51:43 +00001897 xcount = VIDEO_LOGO_WIDTH;
1898 while (xcount--) {
Bastian Ruppert4b7d3a02012-09-13 22:29:02 +00001899 if (black) {
1900 r = 0x00;
1901 g = 0x00;
1902 b = 0x00;
1903 } else {
1904 r = logo_red[*source - VIDEO_LOGO_LUT_OFFSET];
1905 g = logo_green[*source - VIDEO_LOGO_LUT_OFFSET];
1906 b = logo_blue[*source - VIDEO_LOGO_LUT_OFFSET];
1907 }
wdenk8bde7f72003-06-27 21:31:46 +00001908
wdenk4b248f32004-03-14 16:51:43 +00001909 switch (VIDEO_DATA_FORMAT) {
1910 case GDF__8BIT_INDEX:
1911 *dest = *source;
1912 break;
1913 case GDF__8BIT_332RGB:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001914 *dest = ((r >> 5) << 5) |
1915 ((g >> 5) << 2) |
1916 (b >> 6);
wdenk4b248f32004-03-14 16:51:43 +00001917 break;
1918 case GDF_15BIT_555RGB:
Andrew Dyercc347802008-08-29 12:30:39 -05001919#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001920 fill_555rgb_pswap(dest, xpos++, r, g, b);
Andrew Dyercc347802008-08-29 12:30:39 -05001921#else
wdenk4b248f32004-03-14 16:51:43 +00001922 *(unsigned short *) dest =
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001923 SWAP16((unsigned short) (
1924 ((r >> 3) << 10) |
1925 ((g >> 3) << 5) |
1926 (b >> 3)));
Anatolij Gustschinbed53752008-01-11 14:30:01 +01001927#endif
wdenk4b248f32004-03-14 16:51:43 +00001928 break;
1929 case GDF_16BIT_565RGB:
1930 *(unsigned short *) dest =
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001931 SWAP16((unsigned short) (
1932 ((r >> 3) << 11) |
1933 ((g >> 2) << 5) |
1934 (b >> 3)));
wdenk4b248f32004-03-14 16:51:43 +00001935 break;
1936 case GDF_32BIT_X888RGB:
1937 *(unsigned long *) dest =
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001938 SWAP32((unsigned long) (
1939 (r << 16) |
1940 (g << 8) |
1941 b));
wdenk4b248f32004-03-14 16:51:43 +00001942 break;
1943 case GDF_24BIT_888RGB:
wdenkc6097192002-11-03 00:24:07 +00001944#ifdef VIDEO_FB_LITTLE_ENDIAN
wdenk4b248f32004-03-14 16:51:43 +00001945 dest[0] = b;
1946 dest[1] = g;
1947 dest[2] = r;
wdenkc6097192002-11-03 00:24:07 +00001948#else
wdenk4b248f32004-03-14 16:51:43 +00001949 dest[0] = r;
1950 dest[1] = g;
1951 dest[2] = b;
wdenkc6097192002-11-03 00:24:07 +00001952#endif
wdenk4b248f32004-03-14 16:51:43 +00001953 break;
1954 }
1955 source++;
1956 dest += VIDEO_PIXEL_SIZE;
1957 }
1958 dest += skip;
wdenk8bde7f72003-06-27 21:31:46 +00001959 }
wdenka6c7ad22002-12-03 21:28:10 +00001960#ifdef CONFIG_VIDEO_BMP_LOGO
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001961 free(logo_red);
1962 free(logo_green);
1963 free(logo_blue);
wdenka6c7ad22002-12-03 21:28:10 +00001964#endif
wdenkc6097192002-11-03 00:24:07 +00001965}
1966
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001967static void *video_logo(void)
wdenkc6097192002-11-03 00:24:07 +00001968{
wdenk4b248f32004-03-14 16:51:43 +00001969 char info[128];
Wolfgang Denka9a62af2011-11-04 15:55:20 +00001970 int space, len;
1971 __maybe_unused int y_off = 0;
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001972 __maybe_unused ulong addr;
1973 __maybe_unused char *s;
wdenkc6097192002-11-03 00:24:07 +00001974
Anatolij Gustschinff8fb562013-07-02 00:04:05 +02001975 splash_get_pos(&video_logo_xpos, &video_logo_ypos);
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001976
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001977#ifdef CONFIG_SPLASH_SCREEN
1978 s = getenv("splashimage");
1979 if (s != NULL) {
Robert Winklerdd4425e2013-06-17 11:31:29 -07001980 splash_screen_prepare();
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001981 addr = simple_strtoul(s, NULL, 16);
1982
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001983 if (video_display_bitmap(addr,
1984 video_logo_xpos,
1985 video_logo_ypos) == 0) {
Matthias Weisserbe129aa2010-01-12 12:06:31 +01001986 video_logo_height = 0;
wdenk4b248f32004-03-14 16:51:43 +00001987 return ((void *) (video_fb_address));
1988 }
1989 }
1990#endif /* CONFIG_SPLASH_SCREEN */
1991
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001992 logo_plot(video_fb_address, VIDEO_COLS,
1993 video_logo_xpos, video_logo_ypos);
1994
1995#ifdef CONFIG_SPLASH_SCREEN_ALIGN
1996 /*
1997 * when using splashpos for video_logo, skip any info
1998 * output on video console if the logo is not at 0,0
1999 */
2000 if (video_logo_xpos || video_logo_ypos) {
2001 /*
2002 * video_logo_height is used in text and cursor offset
2003 * calculations. Since the console is below the logo,
2004 * we need to adjust the logo height
2005 */
2006 if (video_logo_ypos == BMP_ALIGN_CENTER)
2007 video_logo_height += max(0, (VIDEO_VISIBLE_ROWS - \
2008 VIDEO_LOGO_HEIGHT) / 2);
2009 else if (video_logo_ypos > 0)
2010 video_logo_height += video_logo_ypos;
2011
2012 return video_fb_address + video_logo_height * VIDEO_LINE_LEN;
2013 }
2014#endif
wdenk4b248f32004-03-14 16:51:43 +00002015
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002016 sprintf(info, " %s", version_string);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02002017
2018 space = (VIDEO_LINE_LEN / 2 - VIDEO_INFO_X) / VIDEO_FONT_WIDTH;
2019 len = strlen(info);
2020
2021 if (len > space) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002022 video_drawchars(VIDEO_INFO_X, VIDEO_INFO_Y,
2023 (uchar *) info, space);
2024 video_drawchars(VIDEO_INFO_X + VIDEO_FONT_WIDTH,
2025 VIDEO_INFO_Y + VIDEO_FONT_HEIGHT,
2026 (uchar *) info + space, len - space);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02002027 y_off = 1;
2028 } else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002029 video_drawstring(VIDEO_INFO_X, VIDEO_INFO_Y, (uchar *) info);
wdenkc6097192002-11-03 00:24:07 +00002030
2031#ifdef CONFIG_CONSOLE_EXTRA_INFO
wdenk4b248f32004-03-14 16:51:43 +00002032 {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002033 int i, n =
2034 ((video_logo_height -
2035 VIDEO_FONT_HEIGHT) / VIDEO_FONT_HEIGHT);
wdenkc6097192002-11-03 00:24:07 +00002036
wdenk4b248f32004-03-14 16:51:43 +00002037 for (i = 1; i < n; i++) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002038 video_get_info_str(i, info);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02002039 if (!*info)
2040 continue;
2041
2042 len = strlen(info);
2043 if (len > space) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002044 video_drawchars(VIDEO_INFO_X,
2045 VIDEO_INFO_Y +
2046 (i + y_off) *
2047 VIDEO_FONT_HEIGHT,
2048 (uchar *) info, space);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02002049 y_off++;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002050 video_drawchars(VIDEO_INFO_X +
2051 VIDEO_FONT_WIDTH,
2052 VIDEO_INFO_Y +
2053 (i + y_off) *
2054 VIDEO_FONT_HEIGHT,
2055 (uchar *) info + space,
2056 len - space);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02002057 } else {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002058 video_drawstring(VIDEO_INFO_X,
2059 VIDEO_INFO_Y +
2060 (i + y_off) *
2061 VIDEO_FONT_HEIGHT,
2062 (uchar *) info);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02002063 }
wdenk4b248f32004-03-14 16:51:43 +00002064 }
2065 }
wdenkc6097192002-11-03 00:24:07 +00002066#endif
2067
Matthias Weisserbe129aa2010-01-12 12:06:31 +01002068 return (video_fb_address + video_logo_height * VIDEO_LINE_LEN);
wdenkc6097192002-11-03 00:24:07 +00002069}
2070#endif
2071
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +02002072static int cfb_fb_is_in_dram(void)
2073{
2074 bd_t *bd = gd->bd;
2075#if defined(CONFIG_ARM) || defined(CONFIG_AVR32) || defined(COFNIG_NDS32) || \
2076defined(CONFIG_SANDBOX) || defined(CONFIG_X86)
2077 ulong start, end;
2078 int i;
2079
2080 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
2081 start = bd->bi_dram[i].start;
2082 end = bd->bi_dram[i].start + bd->bi_dram[i].size - 1;
2083 if ((ulong)video_fb_address >= start &&
2084 (ulong)video_fb_address < end)
2085 return 1;
2086 }
2087#else
2088 if ((ulong)video_fb_address >= bd->bi_memstart &&
2089 (ulong)video_fb_address < bd->bi_memstart + bd->bi_memsize)
2090 return 1;
2091#endif
2092 return 0;
2093}
2094
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002095static int video_init(void)
wdenkc6097192002-11-03 00:24:07 +00002096{
wdenk4b248f32004-03-14 16:51:43 +00002097 unsigned char color8;
wdenkc6097192002-11-03 00:24:07 +00002098
Wolfgang Denk57912932011-07-30 12:48:09 +00002099 pGD = video_hw_init();
2100 if (pGD == NULL)
wdenk4b248f32004-03-14 16:51:43 +00002101 return -1;
wdenkc6097192002-11-03 00:24:07 +00002102
wdenk4b248f32004-03-14 16:51:43 +00002103 video_fb_address = (void *) VIDEO_FB_ADRS;
wdenkc6097192002-11-03 00:24:07 +00002104#ifdef CONFIG_VIDEO_HW_CURSOR
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002105 video_init_hw_cursor(VIDEO_FONT_WIDTH, VIDEO_FONT_HEIGHT);
wdenkc6097192002-11-03 00:24:07 +00002106#endif
2107
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +02002108 cfb_do_flush_cache = cfb_fb_is_in_dram() && dcache_status();
2109
wdenk4b248f32004-03-14 16:51:43 +00002110 /* Init drawing pats */
2111 switch (VIDEO_DATA_FORMAT) {
2112 case GDF__8BIT_INDEX:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002113 video_set_lut(0x01, CONSOLE_FG_COL, CONSOLE_FG_COL,
2114 CONSOLE_FG_COL);
2115 video_set_lut(0x00, CONSOLE_BG_COL, CONSOLE_BG_COL,
2116 CONSOLE_BG_COL);
wdenk4b248f32004-03-14 16:51:43 +00002117 fgx = 0x01010101;
2118 bgx = 0x00000000;
2119 break;
2120 case GDF__8BIT_332RGB:
2121 color8 = ((CONSOLE_FG_COL & 0xe0) |
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002122 ((CONSOLE_FG_COL >> 3) & 0x1c) |
2123 CONSOLE_FG_COL >> 6);
2124 fgx = (color8 << 24) | (color8 << 16) | (color8 << 8) |
2125 color8;
wdenk4b248f32004-03-14 16:51:43 +00002126 color8 = ((CONSOLE_BG_COL & 0xe0) |
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002127 ((CONSOLE_BG_COL >> 3) & 0x1c) |
2128 CONSOLE_BG_COL >> 6);
2129 bgx = (color8 << 24) | (color8 << 16) | (color8 << 8) |
2130 color8;
wdenk4b248f32004-03-14 16:51:43 +00002131 break;
2132 case GDF_15BIT_555RGB:
2133 fgx = (((CONSOLE_FG_COL >> 3) << 26) |
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002134 ((CONSOLE_FG_COL >> 3) << 21) |
2135 ((CONSOLE_FG_COL >> 3) << 16) |
2136 ((CONSOLE_FG_COL >> 3) << 10) |
2137 ((CONSOLE_FG_COL >> 3) << 5) |
2138 (CONSOLE_FG_COL >> 3));
wdenk4b248f32004-03-14 16:51:43 +00002139 bgx = (((CONSOLE_BG_COL >> 3) << 26) |
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002140 ((CONSOLE_BG_COL >> 3) << 21) |
2141 ((CONSOLE_BG_COL >> 3) << 16) |
2142 ((CONSOLE_BG_COL >> 3) << 10) |
2143 ((CONSOLE_BG_COL >> 3) << 5) |
2144 (CONSOLE_BG_COL >> 3));
wdenk4b248f32004-03-14 16:51:43 +00002145 break;
2146 case GDF_16BIT_565RGB:
2147 fgx = (((CONSOLE_FG_COL >> 3) << 27) |
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002148 ((CONSOLE_FG_COL >> 2) << 21) |
2149 ((CONSOLE_FG_COL >> 3) << 16) |
2150 ((CONSOLE_FG_COL >> 3) << 11) |
2151 ((CONSOLE_FG_COL >> 2) << 5) |
2152 (CONSOLE_FG_COL >> 3));
wdenk4b248f32004-03-14 16:51:43 +00002153 bgx = (((CONSOLE_BG_COL >> 3) << 27) |
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002154 ((CONSOLE_BG_COL >> 2) << 21) |
2155 ((CONSOLE_BG_COL >> 3) << 16) |
2156 ((CONSOLE_BG_COL >> 3) << 11) |
2157 ((CONSOLE_BG_COL >> 2) << 5) |
2158 (CONSOLE_BG_COL >> 3));
wdenk4b248f32004-03-14 16:51:43 +00002159 break;
2160 case GDF_32BIT_X888RGB:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002161 fgx = (CONSOLE_FG_COL << 16) |
2162 (CONSOLE_FG_COL << 8) |
2163 CONSOLE_FG_COL;
2164 bgx = (CONSOLE_BG_COL << 16) |
2165 (CONSOLE_BG_COL << 8) |
2166 CONSOLE_BG_COL;
wdenk4b248f32004-03-14 16:51:43 +00002167 break;
2168 case GDF_24BIT_888RGB:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002169 fgx = (CONSOLE_FG_COL << 24) |
2170 (CONSOLE_FG_COL << 16) |
2171 (CONSOLE_FG_COL << 8) |
2172 CONSOLE_FG_COL;
2173 bgx = (CONSOLE_BG_COL << 24) |
2174 (CONSOLE_BG_COL << 16) |
2175 (CONSOLE_BG_COL << 8) |
2176 CONSOLE_BG_COL;
wdenk4b248f32004-03-14 16:51:43 +00002177 break;
2178 }
2179 eorx = fgx ^ bgx;
wdenkc6097192002-11-03 00:24:07 +00002180
2181#ifdef CONFIG_VIDEO_LOGO
wdenk4b248f32004-03-14 16:51:43 +00002182 /* Plot the logo and get start point of console */
Wolfgang Denk72c65f62011-07-29 09:55:28 +00002183 debug("Video: Drawing the logo ...\n");
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002184 video_console_address = video_logo();
wdenkc6097192002-11-03 00:24:07 +00002185#else
wdenk4b248f32004-03-14 16:51:43 +00002186 video_console_address = video_fb_address;
wdenkc6097192002-11-03 00:24:07 +00002187#endif
2188
wdenk4b248f32004-03-14 16:51:43 +00002189 /* Initialize the console */
2190 console_col = 0;
2191 console_row = 0;
wdenkc6097192002-11-03 00:24:07 +00002192
Eric Nelsondb0d47d2013-05-06 14:27:28 +02002193 if (cfb_do_flush_cache)
2194 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
2195
wdenk4b248f32004-03-14 16:51:43 +00002196 return 0;
wdenkc6097192002-11-03 00:24:07 +00002197}
2198
Wolfgang Denk6cc7ba92009-05-15 10:07:43 +02002199/*
2200 * Implement a weak default function for boards that optionally
2201 * need to skip the video initialization.
2202 */
2203int __board_video_skip(void)
2204{
2205 /* As default, don't skip test */
2206 return 0;
2207}
Wolfgang Denk6cc7ba92009-05-15 10:07:43 +02002208
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002209int board_video_skip(void)
2210 __attribute__ ((weak, alias("__board_video_skip")));
2211
2212int drv_video_init(void)
wdenkc6097192002-11-03 00:24:07 +00002213{
wdenk4b248f32004-03-14 16:51:43 +00002214 int skip_dev_init;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +02002215 struct stdio_dev console_dev;
wdenkc6097192002-11-03 00:24:07 +00002216
Wolfgang Denk6cc7ba92009-05-15 10:07:43 +02002217 /* Check if video initialization should be skipped */
2218 if (board_video_skip())
2219 return 0;
2220
wdenk81050922004-07-11 20:04:51 +00002221 /* Init video chip - returns with framebuffer cleared */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002222 skip_dev_init = (video_init() == -1);
wdenk81050922004-07-11 20:04:51 +00002223
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002224#if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
Wolfgang Denk72c65f62011-07-29 09:55:28 +00002225 debug("KBD: Keyboard init ...\n");
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002226 skip_dev_init |= (VIDEO_KBD_INIT_FCT == -1);
2227#endif
wdenkc6097192002-11-03 00:24:07 +00002228
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002229 if (skip_dev_init)
2230 return 0;
wdenkc6097192002-11-03 00:24:07 +00002231
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002232 /* Init vga device */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002233 memset(&console_dev, 0, sizeof(console_dev));
2234 strcpy(console_dev.name, "vga");
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002235 console_dev.ext = DEV_EXT_VIDEO; /* Video extensions */
2236 console_dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_SYSTEM;
2237 console_dev.putc = video_putc; /* 'putc' function */
2238 console_dev.puts = video_puts; /* 'puts' function */
2239 console_dev.tstc = NULL; /* 'tstc' function */
2240 console_dev.getc = NULL; /* 'getc' function */
2241
2242#if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
2243 /* Also init console device */
2244 console_dev.flags |= DEV_FLAGS_INPUT;
2245 console_dev.tstc = VIDEO_TSTC_FCT; /* 'tstc' function */
2246 console_dev.getc = VIDEO_GETC_FCT; /* 'getc' function */
wdenkc6097192002-11-03 00:24:07 +00002247#endif /* CONFIG_VGA_AS_SINGLE_DEVICE */
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002248
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002249 if (stdio_register(&console_dev) != 0)
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002250 return 0;
2251
2252 /* Return success */
2253 return 1;
wdenkc6097192002-11-03 00:24:07 +00002254}
Stefan Reinauerc20ee072012-09-28 15:11:12 +00002255
2256void video_position_cursor(unsigned col, unsigned row)
2257{
2258 console_col = min(col, CONSOLE_COLS - 1);
2259 console_row = min(row, CONSOLE_ROWS - 1);
2260}
2261
2262int video_get_pixel_width(void)
2263{
2264 return VIDEO_VISIBLE_COLS;
2265}
2266
2267int video_get_pixel_height(void)
2268{
2269 return VIDEO_VISIBLE_ROWS;
2270}
2271
2272int video_get_screen_rows(void)
2273{
2274 return CONSOLE_ROWS;
2275}
2276
2277int video_get_screen_columns(void)
2278{
2279 return CONSOLE_COLS;
2280}
2281
2282void video_clear(void)
2283{
Duncan Laurieae630572012-11-03 11:41:40 +00002284 if (!video_fb_address)
2285 return;
Stefan Reinauerc20ee072012-09-28 15:11:12 +00002286#ifdef VIDEO_HW_RECTFILL
2287 video_hw_rectfill(VIDEO_PIXEL_SIZE, /* bytes per pixel */
2288 0, /* dest pos x */
2289 0, /* dest pos y */
2290 VIDEO_VISIBLE_COLS, /* frame width */
2291 VIDEO_VISIBLE_ROWS, /* frame height */
2292 bgx /* fill color */
2293 );
2294#else
2295 memsetl(video_fb_address,
2296 (VIDEO_VISIBLE_ROWS * VIDEO_LINE_LEN) / sizeof(int), bgx);
2297#endif
2298}