blob: 785bbcfc3206247fb6525117e4b28689c68c5b57 [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>
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200225
226#ifdef CONFIG_SPLASH_SCREEN_ALIGN
227#define BMP_ALIGN_CENTER 0x7FFF
228#endif
229
Jon Loeliger07d38a12007-07-09 17:30:01 -0500230#endif
wdenk4b248f32004-03-14 16:51:43 +0000231
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000232/*
233 * Cursor definition:
234 * CONFIG_CONSOLE_CURSOR: Uses a timer function (see drivers/input/i8042.c)
235 * to let the cursor blink. Uses the macros
236 * CURSOR_OFF and CURSOR_ON.
237 * CONFIG_VIDEO_SW_CURSOR: Draws a cursor after the last character. No
238 * blinking is provided. Uses the macros CURSOR_SET
239 * and CURSOR_OFF.
240 * CONFIG_VIDEO_HW_CURSOR: Uses the hardware cursor capability of the
241 * graphic chip. Uses the macro CURSOR_SET.
242 * ATTENTION: If booting an OS, the display driver
243 * must disable the hardware register of the graphic
244 * chip. Otherwise a blinking field is displayed
245 */
wdenkc6097192002-11-03 00:24:07 +0000246#if !defined(CONFIG_CONSOLE_CURSOR) && \
247 !defined(CONFIG_VIDEO_SW_CURSOR) && \
248 !defined(CONFIG_VIDEO_HW_CURSOR)
249/* no Cursor defined */
250#define CURSOR_ON
251#define CURSOR_OFF
252#define CURSOR_SET
253#endif
254
Gabe Black03d31fc2011-11-30 13:50:50 +0000255#if defined(CONFIG_CONSOLE_CURSOR) || defined(CONFIG_VIDEO_SW_CURSOR)
256#if defined(CURSOR_ON) || \
257 (defined(CONFIG_CONSOLE_CURSOR) && defined(CONFIG_VIDEO_SW_CURSOR))
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000258#error only one of CONFIG_CONSOLE_CURSOR, CONFIG_VIDEO_SW_CURSOR, \
259 or CONFIG_VIDEO_HW_CURSOR can be defined
wdenkc6097192002-11-03 00:24:07 +0000260#endif
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000261void console_cursor(int state);
262
Timur Tabi65618632010-08-27 15:45:47 -0500263#define CURSOR_ON console_cursor(1)
264#define CURSOR_OFF console_cursor(0)
Gabe Black03d31fc2011-11-30 13:50:50 +0000265#define CURSOR_SET video_set_cursor()
266#endif /* CONFIG_CONSOLE_CURSOR || CONFIG_VIDEO_SW_CURSOR */
267
268#ifdef CONFIG_CONSOLE_CURSOR
269#ifndef CONFIG_CONSOLE_TIME
270#error CONFIG_CONSOLE_CURSOR must be defined for CONFIG_CONSOLE_TIME
271#endif
wdenkc6097192002-11-03 00:24:07 +0000272#ifndef CONFIG_I8042_KBD
Marcel Ziswiler7817cb22007-12-30 03:30:46 +0100273#warning Cursor drawing on/off needs timer function s.a. drivers/input/i8042.c
wdenkc6097192002-11-03 00:24:07 +0000274#endif
wdenkc6097192002-11-03 00:24:07 +0000275#endif /* CONFIG_CONSOLE_CURSOR */
276
wdenkc6097192002-11-03 00:24:07 +0000277
278#ifdef CONFIG_VIDEO_HW_CURSOR
wdenk4b248f32004-03-14 16:51:43 +0000279#ifdef CURSOR_ON
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000280#error only one of CONFIG_CONSOLE_CURSOR, CONFIG_VIDEO_SW_CURSOR, \
281 or CONFIG_VIDEO_HW_CURSOR can be defined
wdenkc6097192002-11-03 00:24:07 +0000282#endif
283#define CURSOR_ON
284#define CURSOR_OFF
285#define CURSOR_SET video_set_hw_cursor(console_col * VIDEO_FONT_WIDTH, \
Timur Tabi65618632010-08-27 15:45:47 -0500286 (console_row * VIDEO_FONT_HEIGHT) + video_logo_height)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000287#endif /* CONFIG_VIDEO_HW_CURSOR */
wdenkc6097192002-11-03 00:24:07 +0000288
wdenk4b248f32004-03-14 16:51:43 +0000289#ifdef CONFIG_VIDEO_LOGO
290#ifdef CONFIG_VIDEO_BMP_LOGO
wdenka6c7ad22002-12-03 21:28:10 +0000291#include <bmp_logo.h>
Che-Liang Chiouc2707302011-10-20 23:04:20 +0000292#include <bmp_logo_data.h>
wdenk4b248f32004-03-14 16:51:43 +0000293#define VIDEO_LOGO_WIDTH BMP_LOGO_WIDTH
294#define VIDEO_LOGO_HEIGHT BMP_LOGO_HEIGHT
295#define VIDEO_LOGO_LUT_OFFSET BMP_LOGO_OFFSET
296#define VIDEO_LOGO_COLORS BMP_LOGO_COLORS
wdenka6c7ad22002-12-03 21:28:10 +0000297
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000298#else /* CONFIG_VIDEO_BMP_LOGO */
wdenk4b248f32004-03-14 16:51:43 +0000299#define LINUX_LOGO_WIDTH 80
300#define LINUX_LOGO_HEIGHT 80
301#define LINUX_LOGO_COLORS 214
302#define LINUX_LOGO_LUT_OFFSET 0x20
wdenkc6097192002-11-03 00:24:07 +0000303#define __initdata
304#include <linux_logo.h>
wdenk4b248f32004-03-14 16:51:43 +0000305#define VIDEO_LOGO_WIDTH LINUX_LOGO_WIDTH
306#define VIDEO_LOGO_HEIGHT LINUX_LOGO_HEIGHT
307#define VIDEO_LOGO_LUT_OFFSET LINUX_LOGO_LUT_OFFSET
308#define VIDEO_LOGO_COLORS LINUX_LOGO_COLORS
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000309#endif /* CONFIG_VIDEO_BMP_LOGO */
wdenk4b248f32004-03-14 16:51:43 +0000310#define VIDEO_INFO_X (VIDEO_LOGO_WIDTH)
311#define VIDEO_INFO_Y (VIDEO_FONT_HEIGHT/2)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000312#else /* CONFIG_VIDEO_LOGO */
wdenk4b248f32004-03-14 16:51:43 +0000313#define VIDEO_LOGO_WIDTH 0
314#define VIDEO_LOGO_HEIGHT 0
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000315#endif /* CONFIG_VIDEO_LOGO */
wdenkc6097192002-11-03 00:24:07 +0000316
wdenk4b248f32004-03-14 16:51:43 +0000317#define VIDEO_COLS VIDEO_VISIBLE_COLS
318#define VIDEO_ROWS VIDEO_VISIBLE_ROWS
319#define VIDEO_SIZE (VIDEO_ROWS*VIDEO_COLS*VIDEO_PIXEL_SIZE)
320#define VIDEO_PIX_BLOCKS (VIDEO_SIZE >> 2)
321#define VIDEO_LINE_LEN (VIDEO_COLS*VIDEO_PIXEL_SIZE)
322#define VIDEO_BURST_LEN (VIDEO_COLS/8)
wdenkc6097192002-11-03 00:24:07 +0000323
wdenk4b248f32004-03-14 16:51:43 +0000324#ifdef CONFIG_VIDEO_LOGO
Matthias Weisserbe129aa2010-01-12 12:06:31 +0100325#define CONSOLE_ROWS ((VIDEO_ROWS - video_logo_height) / VIDEO_FONT_HEIGHT)
wdenkc6097192002-11-03 00:24:07 +0000326#else
wdenk4b248f32004-03-14 16:51:43 +0000327#define CONSOLE_ROWS (VIDEO_ROWS / VIDEO_FONT_HEIGHT)
wdenkc6097192002-11-03 00:24:07 +0000328#endif
329
wdenk4b248f32004-03-14 16:51:43 +0000330#define CONSOLE_COLS (VIDEO_COLS / VIDEO_FONT_WIDTH)
331#define CONSOLE_ROW_SIZE (VIDEO_FONT_HEIGHT * VIDEO_LINE_LEN)
332#define CONSOLE_ROW_FIRST (video_console_address)
333#define CONSOLE_ROW_SECOND (video_console_address + CONSOLE_ROW_SIZE)
334#define CONSOLE_ROW_LAST (video_console_address + CONSOLE_SIZE - CONSOLE_ROW_SIZE)
335#define CONSOLE_SIZE (CONSOLE_ROW_SIZE * CONSOLE_ROWS)
336#define CONSOLE_SCROLL_SIZE (CONSOLE_SIZE - CONSOLE_ROW_SIZE)
wdenkc6097192002-11-03 00:24:07 +0000337
338/* Macros */
wdenk4b248f32004-03-14 16:51:43 +0000339#ifdef VIDEO_FB_LITTLE_ENDIAN
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000340#define SWAP16(x) ((((x) & 0x00ff) << 8) | \
341 ((x) >> 8) \
342 )
343#define SWAP32(x) ((((x) & 0x000000ff) << 24) | \
344 (((x) & 0x0000ff00) << 8) | \
345 (((x) & 0x00ff0000) >> 8) | \
346 (((x) & 0xff000000) >> 24) \
347 )
348#define SHORTSWAP32(x) ((((x) & 0x000000ff) << 8) | \
349 (((x) & 0x0000ff00) >> 8) | \
350 (((x) & 0x00ff0000) << 8) | \
351 (((x) & 0xff000000) >> 8) \
352 )
wdenkc6097192002-11-03 00:24:07 +0000353#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000354#define SWAP16(x) (x)
355#define SWAP32(x) (x)
Wolfgang Grandegger229b6dc2009-10-23 12:03:15 +0200356#if defined(VIDEO_FB_16BPP_WORD_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000357#define SHORTSWAP32(x) (((x) >> 16) | ((x) << 16))
Andrew Dyercc347802008-08-29 12:30:39 -0500358#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000359#define SHORTSWAP32(x) (x)
Anatolij Gustschinbed53752008-01-11 14:30:01 +0100360#endif
wdenkc6097192002-11-03 00:24:07 +0000361#endif
362
wdenkc6097192002-11-03 00:24:07 +0000363#ifdef CONFIG_CONSOLE_EXTRA_INFO
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000364/*
365 * setup a board string: type, speed, etc.
366 *
367 * line_number: location to place info string beside logo
368 * info: buffer for info string
369 */
370extern void video_get_info_str(int line_number, char *info);
wdenkc6097192002-11-03 00:24:07 +0000371#endif
372
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +0200373DECLARE_GLOBAL_DATA_PTR;
374
wdenkc6097192002-11-03 00:24:07 +0000375/* Locals */
376static GraphicDevice *pGD; /* Pointer to Graphic array */
377
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000378static void *video_fb_address; /* frame buffer address */
wdenk4b248f32004-03-14 16:51:43 +0000379static void *video_console_address; /* console buffer start address */
wdenkc6097192002-11-03 00:24:07 +0000380
Matthias Weisserbe129aa2010-01-12 12:06:31 +0100381static int video_logo_height = VIDEO_LOGO_HEIGHT;
382
Anatolij Gustschina45adde2011-12-07 03:58:10 +0000383static int __maybe_unused cursor_state;
384static int __maybe_unused old_col;
385static int __maybe_unused old_row;
Gabe Black03d31fc2011-11-30 13:50:50 +0000386
Wolfgang Denk57912932011-07-30 12:48:09 +0000387static int console_col; /* cursor col */
388static int console_row; /* cursor row */
wdenkc6097192002-11-03 00:24:07 +0000389
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000390static u32 eorx, fgx, bgx; /* color pats */
wdenkc6097192002-11-03 00:24:07 +0000391
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +0200392static int cfb_do_flush_cache;
393
Pali Rohár33a35bb2012-10-19 13:30:09 +0000394#ifdef CONFIG_CFB_CONSOLE_ANSI
395static char ansi_buf[10];
396static int ansi_buf_size;
397static int ansi_colors_need_revert;
398static int ansi_cursor_hidden;
399#endif
400
wdenkc6097192002-11-03 00:24:07 +0000401static const int video_font_draw_table8[] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000402 0x00000000, 0x000000ff, 0x0000ff00, 0x0000ffff,
403 0x00ff0000, 0x00ff00ff, 0x00ffff00, 0x00ffffff,
404 0xff000000, 0xff0000ff, 0xff00ff00, 0xff00ffff,
405 0xffff0000, 0xffff00ff, 0xffffff00, 0xffffffff
406};
wdenkc6097192002-11-03 00:24:07 +0000407
408static const int video_font_draw_table15[] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000409 0x00000000, 0x00007fff, 0x7fff0000, 0x7fff7fff
410};
wdenkc6097192002-11-03 00:24:07 +0000411
412static const int video_font_draw_table16[] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000413 0x00000000, 0x0000ffff, 0xffff0000, 0xffffffff
414};
wdenkc6097192002-11-03 00:24:07 +0000415
416static const int video_font_draw_table24[16][3] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000417 {0x00000000, 0x00000000, 0x00000000},
418 {0x00000000, 0x00000000, 0x00ffffff},
419 {0x00000000, 0x0000ffff, 0xff000000},
420 {0x00000000, 0x0000ffff, 0xffffffff},
421 {0x000000ff, 0xffff0000, 0x00000000},
422 {0x000000ff, 0xffff0000, 0x00ffffff},
423 {0x000000ff, 0xffffffff, 0xff000000},
424 {0x000000ff, 0xffffffff, 0xffffffff},
425 {0xffffff00, 0x00000000, 0x00000000},
426 {0xffffff00, 0x00000000, 0x00ffffff},
427 {0xffffff00, 0x0000ffff, 0xff000000},
428 {0xffffff00, 0x0000ffff, 0xffffffff},
429 {0xffffffff, 0xffff0000, 0x00000000},
430 {0xffffffff, 0xffff0000, 0x00ffffff},
431 {0xffffffff, 0xffffffff, 0xff000000},
432 {0xffffffff, 0xffffffff, 0xffffffff}
433};
wdenkc6097192002-11-03 00:24:07 +0000434
435static const int video_font_draw_table32[16][4] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000436 {0x00000000, 0x00000000, 0x00000000, 0x00000000},
437 {0x00000000, 0x00000000, 0x00000000, 0x00ffffff},
438 {0x00000000, 0x00000000, 0x00ffffff, 0x00000000},
439 {0x00000000, 0x00000000, 0x00ffffff, 0x00ffffff},
440 {0x00000000, 0x00ffffff, 0x00000000, 0x00000000},
441 {0x00000000, 0x00ffffff, 0x00000000, 0x00ffffff},
442 {0x00000000, 0x00ffffff, 0x00ffffff, 0x00000000},
443 {0x00000000, 0x00ffffff, 0x00ffffff, 0x00ffffff},
444 {0x00ffffff, 0x00000000, 0x00000000, 0x00000000},
445 {0x00ffffff, 0x00000000, 0x00000000, 0x00ffffff},
446 {0x00ffffff, 0x00000000, 0x00ffffff, 0x00000000},
447 {0x00ffffff, 0x00000000, 0x00ffffff, 0x00ffffff},
448 {0x00ffffff, 0x00ffffff, 0x00000000, 0x00000000},
449 {0x00ffffff, 0x00ffffff, 0x00000000, 0x00ffffff},
450 {0x00ffffff, 0x00ffffff, 0x00ffffff, 0x00000000},
451 {0x00ffffff, 0x00ffffff, 0x00ffffff, 0x00ffffff}
452};
wdenkc6097192002-11-03 00:24:07 +0000453
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000454static void video_drawchars(int xx, int yy, unsigned char *s, int count)
wdenkc6097192002-11-03 00:24:07 +0000455{
wdenk4b248f32004-03-14 16:51:43 +0000456 u8 *cdat, *dest, *dest0;
457 int rows, offset, c;
wdenkc6097192002-11-03 00:24:07 +0000458
wdenk4b248f32004-03-14 16:51:43 +0000459 offset = yy * VIDEO_LINE_LEN + xx * VIDEO_PIXEL_SIZE;
460 dest0 = video_fb_address + offset;
wdenkc6097192002-11-03 00:24:07 +0000461
wdenk4b248f32004-03-14 16:51:43 +0000462 switch (VIDEO_DATA_FORMAT) {
463 case GDF__8BIT_INDEX:
464 case GDF__8BIT_332RGB:
465 while (count--) {
466 c = *s;
467 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
468 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000469 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000470 u8 bits = *cdat++;
wdenkc6097192002-11-03 00:24:07 +0000471
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000472 ((u32 *) dest)[0] =
473 (video_font_draw_table8[bits >> 4] &
474 eorx) ^ bgx;
475 ((u32 *) dest)[1] =
476 (video_font_draw_table8[bits & 15] &
477 eorx) ^ bgx;
wdenk4b248f32004-03-14 16:51:43 +0000478 }
479 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
480 s++;
481 }
482 break;
wdenkc6097192002-11-03 00:24:07 +0000483
wdenk4b248f32004-03-14 16:51:43 +0000484 case GDF_15BIT_555RGB:
485 while (count--) {
486 c = *s;
487 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
488 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000489 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000490 u8 bits = *cdat++;
wdenkc6097192002-11-03 00:24:07 +0000491
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000492 ((u32 *) dest)[0] =
493 SHORTSWAP32((video_font_draw_table15
494 [bits >> 6] & eorx) ^
495 bgx);
496 ((u32 *) dest)[1] =
497 SHORTSWAP32((video_font_draw_table15
498 [bits >> 4 & 3] & eorx) ^
499 bgx);
500 ((u32 *) dest)[2] =
501 SHORTSWAP32((video_font_draw_table15
502 [bits >> 2 & 3] & eorx) ^
503 bgx);
504 ((u32 *) dest)[3] =
505 SHORTSWAP32((video_font_draw_table15
506 [bits & 3] & eorx) ^
507 bgx);
wdenk4b248f32004-03-14 16:51:43 +0000508 }
509 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
510 s++;
511 }
512 break;
wdenkc6097192002-11-03 00:24:07 +0000513
wdenk4b248f32004-03-14 16:51:43 +0000514 case GDF_16BIT_565RGB:
515 while (count--) {
516 c = *s;
517 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
518 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000519 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000520 u8 bits = *cdat++;
521
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000522 ((u32 *) dest)[0] =
523 SHORTSWAP32((video_font_draw_table16
524 [bits >> 6] & eorx) ^
525 bgx);
526 ((u32 *) dest)[1] =
527 SHORTSWAP32((video_font_draw_table16
528 [bits >> 4 & 3] & eorx) ^
529 bgx);
530 ((u32 *) dest)[2] =
531 SHORTSWAP32((video_font_draw_table16
532 [bits >> 2 & 3] & eorx) ^
533 bgx);
534 ((u32 *) dest)[3] =
535 SHORTSWAP32((video_font_draw_table16
536 [bits & 3] & eorx) ^
537 bgx);
wdenk4b248f32004-03-14 16:51:43 +0000538 }
539 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
540 s++;
541 }
542 break;
543
544 case GDF_32BIT_X888RGB:
545 while (count--) {
546 c = *s;
547 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
548 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000549 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000550 u8 bits = *cdat++;
551
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000552 ((u32 *) dest)[0] =
553 SWAP32((video_font_draw_table32
554 [bits >> 4][0] & eorx) ^ bgx);
555 ((u32 *) dest)[1] =
556 SWAP32((video_font_draw_table32
557 [bits >> 4][1] & eorx) ^ bgx);
558 ((u32 *) dest)[2] =
559 SWAP32((video_font_draw_table32
560 [bits >> 4][2] & eorx) ^ bgx);
561 ((u32 *) dest)[3] =
562 SWAP32((video_font_draw_table32
563 [bits >> 4][3] & eorx) ^ bgx);
564 ((u32 *) dest)[4] =
565 SWAP32((video_font_draw_table32
566 [bits & 15][0] & eorx) ^ bgx);
567 ((u32 *) dest)[5] =
568 SWAP32((video_font_draw_table32
569 [bits & 15][1] & eorx) ^ bgx);
570 ((u32 *) dest)[6] =
571 SWAP32((video_font_draw_table32
572 [bits & 15][2] & eorx) ^ bgx);
573 ((u32 *) dest)[7] =
574 SWAP32((video_font_draw_table32
575 [bits & 15][3] & eorx) ^ bgx);
wdenk4b248f32004-03-14 16:51:43 +0000576 }
577 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
578 s++;
579 }
580 break;
581
582 case GDF_24BIT_888RGB:
583 while (count--) {
584 c = *s;
585 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
586 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000587 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000588 u8 bits = *cdat++;
589
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000590 ((u32 *) dest)[0] =
591 (video_font_draw_table24[bits >> 4][0]
592 & eorx) ^ bgx;
593 ((u32 *) dest)[1] =
594 (video_font_draw_table24[bits >> 4][1]
595 & eorx) ^ bgx;
596 ((u32 *) dest)[2] =
597 (video_font_draw_table24[bits >> 4][2]
598 & eorx) ^ bgx;
599 ((u32 *) dest)[3] =
600 (video_font_draw_table24[bits & 15][0]
601 & eorx) ^ bgx;
602 ((u32 *) dest)[4] =
603 (video_font_draw_table24[bits & 15][1]
604 & eorx) ^ bgx;
605 ((u32 *) dest)[5] =
606 (video_font_draw_table24[bits & 15][2]
607 & eorx) ^ bgx;
wdenk4b248f32004-03-14 16:51:43 +0000608 }
609 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
610 s++;
611 }
612 break;
wdenk8bde7f72003-06-27 21:31:46 +0000613 }
wdenkc6097192002-11-03 00:24:07 +0000614}
615
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000616static inline void video_drawstring(int xx, int yy, unsigned char *s)
wdenkc6097192002-11-03 00:24:07 +0000617{
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000618 video_drawchars(xx, yy, s, strlen((char *) s));
wdenkc6097192002-11-03 00:24:07 +0000619}
620
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000621static void video_putchar(int xx, int yy, unsigned char c)
wdenkc6097192002-11-03 00:24:07 +0000622{
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000623 video_drawchars(xx, yy + video_logo_height, &c, 1);
wdenkc6097192002-11-03 00:24:07 +0000624}
625
wdenkc6097192002-11-03 00:24:07 +0000626#if defined(CONFIG_CONSOLE_CURSOR) || defined(CONFIG_VIDEO_SW_CURSOR)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000627static void video_set_cursor(void)
wdenkc6097192002-11-03 00:24:07 +0000628{
Gabe Black03d31fc2011-11-30 13:50:50 +0000629 if (cursor_state)
630 console_cursor(0);
631 console_cursor(1);
wdenkc6097192002-11-03 00:24:07 +0000632}
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000633
Anatolij Gustschina45adde2011-12-07 03:58:10 +0000634static void video_invertchar(int xx, int yy)
635{
636 int firstx = xx * VIDEO_PIXEL_SIZE;
637 int lastx = (xx + VIDEO_FONT_WIDTH) * VIDEO_PIXEL_SIZE;
638 int firsty = yy * VIDEO_LINE_LEN;
639 int lasty = (yy + VIDEO_FONT_HEIGHT) * VIDEO_LINE_LEN;
640 int x, y;
641 for (y = firsty; y < lasty; y += VIDEO_LINE_LEN) {
642 for (x = firstx; x < lastx; x++) {
643 u8 *dest = (u8 *)(video_fb_address) + x + y;
644 *dest = ~*dest;
645 }
646 }
647}
Gabe Black03d31fc2011-11-30 13:50:50 +0000648
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000649void console_cursor(int state)
wdenkc6097192002-11-03 00:24:07 +0000650{
wdenkc6097192002-11-03 00:24:07 +0000651#ifdef CONFIG_CONSOLE_TIME
wdenk4b248f32004-03-14 16:51:43 +0000652 struct rtc_time tm;
653 char info[16];
wdenkc6097192002-11-03 00:24:07 +0000654
wdenk4b248f32004-03-14 16:51:43 +0000655 /* time update only if cursor is on (faster scroll) */
656 if (state) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000657 rtc_get(&tm);
wdenkc6097192002-11-03 00:24:07 +0000658
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000659 sprintf(info, " %02d:%02d:%02d ", tm.tm_hour, tm.tm_min,
660 tm.tm_sec);
661 video_drawstring(VIDEO_VISIBLE_COLS - 10 * VIDEO_FONT_WIDTH,
662 VIDEO_INFO_Y, (uchar *) info);
wdenkc6097192002-11-03 00:24:07 +0000663
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000664 sprintf(info, "%02d.%02d.%04d", tm.tm_mday, tm.tm_mon,
665 tm.tm_year);
666 video_drawstring(VIDEO_VISIBLE_COLS - 10 * VIDEO_FONT_WIDTH,
667 VIDEO_INFO_Y + 1 * VIDEO_FONT_HEIGHT,
668 (uchar *) info);
wdenk4b248f32004-03-14 16:51:43 +0000669 }
wdenkc6097192002-11-03 00:24:07 +0000670#endif
671
Gabe Black03d31fc2011-11-30 13:50:50 +0000672 if (cursor_state != state) {
673 if (cursor_state) {
674 /* turn off the cursor */
675 video_invertchar(old_col * VIDEO_FONT_WIDTH,
676 old_row * VIDEO_FONT_HEIGHT +
677 video_logo_height);
678 } else {
679 /* turn off the cursor and record where it is */
680 video_invertchar(console_col * VIDEO_FONT_WIDTH,
681 console_row * VIDEO_FONT_HEIGHT +
682 video_logo_height);
683 old_col = console_col;
684 old_row = console_row;
685 }
686 cursor_state = state;
wdenk4b248f32004-03-14 16:51:43 +0000687 }
Eric Nelsondb0d47d2013-05-06 14:27:28 +0200688 if (cfb_do_flush_cache)
689 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
wdenkc6097192002-11-03 00:24:07 +0000690}
691#endif
692
wdenkc6097192002-11-03 00:24:07 +0000693#ifndef VIDEO_HW_RECTFILL
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000694static void memsetl(int *p, int c, int v)
wdenkc6097192002-11-03 00:24:07 +0000695{
wdenk4b248f32004-03-14 16:51:43 +0000696 while (c--)
697 *(p++) = v;
wdenkc6097192002-11-03 00:24:07 +0000698}
699#endif
700
wdenkc6097192002-11-03 00:24:07 +0000701#ifndef VIDEO_HW_BITBLT
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000702static void memcpyl(int *d, int *s, int c)
wdenkc6097192002-11-03 00:24:07 +0000703{
wdenk4b248f32004-03-14 16:51:43 +0000704 while (c--)
705 *(d++) = *(s++);
wdenkc6097192002-11-03 00:24:07 +0000706}
707#endif
708
Pali Rohár90f60a82012-04-28 07:26:44 +0000709static void console_clear_line(int line, int begin, int end)
710{
711#ifdef VIDEO_HW_RECTFILL
712 video_hw_rectfill(VIDEO_PIXEL_SIZE, /* bytes per pixel */
713 VIDEO_FONT_WIDTH * begin, /* dest pos x */
714 video_logo_height +
715 VIDEO_FONT_HEIGHT * line, /* dest pos y */
716 VIDEO_FONT_WIDTH * (end - begin + 1), /* fr. width */
717 VIDEO_FONT_HEIGHT, /* frame height */
718 bgx /* fill color */
719 );
720#else
721 if (begin == 0 && (end + 1) == CONSOLE_COLS) {
722 memsetl(CONSOLE_ROW_FIRST +
723 CONSOLE_ROW_SIZE * line, /* offset of row */
724 CONSOLE_ROW_SIZE >> 2, /* length of row */
725 bgx /* fill color */
726 );
727 } else {
728 void *offset;
729 int i, size;
730
731 offset = CONSOLE_ROW_FIRST +
732 CONSOLE_ROW_SIZE * line + /* offset of row */
733 VIDEO_FONT_WIDTH *
734 VIDEO_PIXEL_SIZE * begin; /* offset of col */
735 size = VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE * (end - begin + 1);
736 size >>= 2; /* length to end for memsetl() */
737 /* fill at col offset of i'th line using bgx as fill color */
738 for (i = 0; i < VIDEO_FONT_HEIGHT; i++)
739 memsetl(offset + i * VIDEO_LINE_LEN, size, bgx);
740 }
741#endif
742}
743
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000744static void console_scrollup(void)
wdenkc6097192002-11-03 00:24:07 +0000745{
wdenk4b248f32004-03-14 16:51:43 +0000746 /* copy up rows ignoring the first one */
wdenkc6097192002-11-03 00:24:07 +0000747
748#ifdef VIDEO_HW_BITBLT
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000749 video_hw_bitblt(VIDEO_PIXEL_SIZE, /* bytes per pixel */
750 0, /* source pos x */
751 video_logo_height +
752 VIDEO_FONT_HEIGHT, /* source pos y */
753 0, /* dest pos x */
754 video_logo_height, /* dest pos y */
755 VIDEO_VISIBLE_COLS, /* frame width */
756 VIDEO_VISIBLE_ROWS
757 - video_logo_height
758 - VIDEO_FONT_HEIGHT /* frame height */
wdenk4b248f32004-03-14 16:51:43 +0000759 );
wdenkc6097192002-11-03 00:24:07 +0000760#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000761 memcpyl(CONSOLE_ROW_FIRST, CONSOLE_ROW_SECOND,
762 CONSOLE_SCROLL_SIZE >> 2);
wdenkc6097192002-11-03 00:24:07 +0000763#endif
wdenk4b248f32004-03-14 16:51:43 +0000764 /* clear the last one */
Pali Rohár90f60a82012-04-28 07:26:44 +0000765 console_clear_line(CONSOLE_ROWS - 1, 0, CONSOLE_COLS - 1);
wdenkc6097192002-11-03 00:24:07 +0000766}
767
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000768static void console_back(void)
wdenkc6097192002-11-03 00:24:07 +0000769{
Timur Tabi65618632010-08-27 15:45:47 -0500770 console_col--;
wdenkc6097192002-11-03 00:24:07 +0000771
wdenk4b248f32004-03-14 16:51:43 +0000772 if (console_col < 0) {
773 console_col = CONSOLE_COLS - 1;
774 console_row--;
775 if (console_row < 0)
776 console_row = 0;
777 }
wdenkc6097192002-11-03 00:24:07 +0000778}
779
Pali Rohár33a35bb2012-10-19 13:30:09 +0000780#ifdef CONFIG_CFB_CONSOLE_ANSI
781
782static void console_clear(void)
wdenkc6097192002-11-03 00:24:07 +0000783{
Pali Rohár33a35bb2012-10-19 13:30:09 +0000784#ifdef VIDEO_HW_RECTFILL
785 video_hw_rectfill(VIDEO_PIXEL_SIZE, /* bytes per pixel */
786 0, /* dest pos x */
787 video_logo_height, /* dest pos y */
788 VIDEO_VISIBLE_COLS, /* frame width */
789 VIDEO_VISIBLE_ROWS, /* frame height */
790 bgx /* fill color */
791 );
792#else
793 memsetl(CONSOLE_ROW_FIRST, CONSOLE_SIZE, bgx);
794#endif
795}
796
797static void console_cursor_fix(void)
798{
799 if (console_row < 0)
800 console_row = 0;
801 if (console_row >= CONSOLE_ROWS)
802 console_row = CONSOLE_ROWS - 1;
803 if (console_col < 0)
804 console_col = 0;
805 if (console_col >= CONSOLE_COLS)
806 console_col = CONSOLE_COLS - 1;
807}
808
809static void console_cursor_up(int n)
810{
811 console_row -= n;
812 console_cursor_fix();
813}
814
815static void console_cursor_down(int n)
816{
817 console_row += n;
818 console_cursor_fix();
819}
820
821static void console_cursor_left(int n)
822{
823 console_col -= n;
824 console_cursor_fix();
825}
826
827static void console_cursor_right(int n)
828{
829 console_col += n;
830 console_cursor_fix();
831}
832
833static void console_cursor_set_position(int row, int col)
834{
835 if (console_row != -1)
836 console_row = row;
837 if (console_col != -1)
838 console_col = col;
839 console_cursor_fix();
840}
841
842static void console_previousline(int n)
843{
844 /* FIXME: also scroll terminal ? */
845 console_row -= n;
846 console_cursor_fix();
847}
848
849static void console_swap_colors(void)
850{
851 eorx = fgx;
852 fgx = bgx;
853 bgx = eorx;
854 eorx = fgx ^ bgx;
855}
856
857static inline int console_cursor_is_visible(void)
858{
859 return !ansi_cursor_hidden;
860}
861#else
862static inline int console_cursor_is_visible(void)
863{
864 return 1;
865}
866#endif
867
868static void console_newline(int n)
869{
870 console_row += n;
wdenk4b248f32004-03-14 16:51:43 +0000871 console_col = 0;
wdenkc6097192002-11-03 00:24:07 +0000872
wdenk4b248f32004-03-14 16:51:43 +0000873 /* Check if we need to scroll the terminal */
874 if (console_row >= CONSOLE_ROWS) {
875 /* Scroll everything up */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000876 console_scrollup();
wdenkc6097192002-11-03 00:24:07 +0000877
wdenk4b248f32004-03-14 16:51:43 +0000878 /* Decrement row number */
Pali Rohár33a35bb2012-10-19 13:30:09 +0000879 console_row = CONSOLE_ROWS - 1;
wdenk4b248f32004-03-14 16:51:43 +0000880 }
wdenkc6097192002-11-03 00:24:07 +0000881}
882
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000883static void console_cr(void)
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100884{
Timur Tabi65618632010-08-27 15:45:47 -0500885 console_col = 0;
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100886}
887
Pali Rohár33a35bb2012-10-19 13:30:09 +0000888static void parse_putc(const char c)
wdenkc6097192002-11-03 00:24:07 +0000889{
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100890 static int nl = 1;
891
Pali Rohár33a35bb2012-10-19 13:30:09 +0000892 if (console_cursor_is_visible())
893 CURSOR_OFF;
Gabe Black03d31fc2011-11-30 13:50:50 +0000894
wdenk4b248f32004-03-14 16:51:43 +0000895 switch (c) {
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100896 case 13: /* back to first column */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000897 console_cr();
wdenk4b248f32004-03-14 16:51:43 +0000898 break;
wdenkc6097192002-11-03 00:24:07 +0000899
wdenk4b248f32004-03-14 16:51:43 +0000900 case '\n': /* next line */
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100901 if (console_col || (!console_col && nl))
Pali Rohár33a35bb2012-10-19 13:30:09 +0000902 console_newline(1);
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100903 nl = 1;
wdenk4b248f32004-03-14 16:51:43 +0000904 break;
wdenkc6097192002-11-03 00:24:07 +0000905
wdenk4b248f32004-03-14 16:51:43 +0000906 case 9: /* tab 8 */
Timur Tabi65618632010-08-27 15:45:47 -0500907 console_col |= 0x0008;
wdenk4b248f32004-03-14 16:51:43 +0000908 console_col &= ~0x0007;
wdenkc6097192002-11-03 00:24:07 +0000909
wdenk4b248f32004-03-14 16:51:43 +0000910 if (console_col >= CONSOLE_COLS)
Pali Rohár33a35bb2012-10-19 13:30:09 +0000911 console_newline(1);
wdenk4b248f32004-03-14 16:51:43 +0000912 break;
wdenkc6097192002-11-03 00:24:07 +0000913
wdenk4b248f32004-03-14 16:51:43 +0000914 case 8: /* backspace */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000915 console_back();
wdenk4b248f32004-03-14 16:51:43 +0000916 break;
wdenkc6097192002-11-03 00:24:07 +0000917
Pali Rohár24fe06c2012-04-28 07:26:47 +0000918 case 7: /* bell */
919 break; /* ignored */
920
wdenk4b248f32004-03-14 16:51:43 +0000921 default: /* draw the char */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000922 video_putchar(console_col * VIDEO_FONT_WIDTH,
923 console_row * VIDEO_FONT_HEIGHT, c);
wdenk4b248f32004-03-14 16:51:43 +0000924 console_col++;
wdenkc6097192002-11-03 00:24:07 +0000925
wdenk4b248f32004-03-14 16:51:43 +0000926 /* check for newline */
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100927 if (console_col >= CONSOLE_COLS) {
Pali Rohár33a35bb2012-10-19 13:30:09 +0000928 console_newline(1);
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100929 nl = 0;
930 }
wdenk4b248f32004-03-14 16:51:43 +0000931 }
Pali Rohár33a35bb2012-10-19 13:30:09 +0000932
933 if (console_cursor_is_visible())
934 CURSOR_SET;
935}
936
937void video_putc(const char c)
938{
939#ifdef CONFIG_CFB_CONSOLE_ANSI
940 int i;
941
942 if (c == 27) {
943 for (i = 0; i < ansi_buf_size; ++i)
944 parse_putc(ansi_buf[i]);
945 ansi_buf[0] = 27;
946 ansi_buf_size = 1;
947 return;
948 }
949
950 if (ansi_buf_size > 0) {
951 /*
952 * 0 - ESC
953 * 1 - [
954 * 2 - num1
955 * 3 - ..
956 * 4 - ;
957 * 5 - num2
958 * 6 - ..
959 * - cchar
960 */
961 int next = 0;
962
963 int flush = 0;
964 int fail = 0;
965
966 int num1 = 0;
967 int num2 = 0;
968 int cchar = 0;
969
970 ansi_buf[ansi_buf_size++] = c;
971
972 if (ansi_buf_size >= sizeof(ansi_buf))
973 fail = 1;
974
975 for (i = 0; i < ansi_buf_size; ++i) {
976 if (fail)
977 break;
978
979 switch (next) {
980 case 0:
981 if (ansi_buf[i] == 27)
982 next = 1;
983 else
984 fail = 1;
985 break;
986
987 case 1:
988 if (ansi_buf[i] == '[')
989 next = 2;
990 else
991 fail = 1;
992 break;
993
994 case 2:
995 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
996 num1 = ansi_buf[i]-'0';
997 next = 3;
998 } else if (ansi_buf[i] != '?') {
999 --i;
1000 num1 = 1;
1001 next = 4;
1002 }
1003 break;
1004
1005 case 3:
1006 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
1007 num1 *= 10;
1008 num1 += ansi_buf[i]-'0';
1009 } else {
1010 --i;
1011 next = 4;
1012 }
1013 break;
1014
1015 case 4:
1016 if (ansi_buf[i] != ';') {
1017 --i;
1018 next = 7;
1019 } else
1020 next = 5;
1021 break;
1022
1023 case 5:
1024 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
1025 num2 = ansi_buf[i]-'0';
1026 next = 6;
1027 } else
1028 fail = 1;
1029 break;
1030
1031 case 6:
1032 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
1033 num2 *= 10;
1034 num2 += ansi_buf[i]-'0';
1035 } else {
1036 --i;
1037 next = 7;
1038 }
1039 break;
1040
1041 case 7:
1042 if ((ansi_buf[i] >= 'A' && ansi_buf[i] <= 'H')
1043 || ansi_buf[i] == 'J'
1044 || ansi_buf[i] == 'K'
1045 || ansi_buf[i] == 'h'
1046 || ansi_buf[i] == 'l'
1047 || ansi_buf[i] == 'm') {
1048 cchar = ansi_buf[i];
1049 flush = 1;
1050 } else
1051 fail = 1;
1052 break;
1053 }
1054 }
1055
1056 if (fail) {
1057 for (i = 0; i < ansi_buf_size; ++i)
1058 parse_putc(ansi_buf[i]);
1059 ansi_buf_size = 0;
1060 return;
1061 }
1062
1063 if (flush) {
1064 if (!ansi_cursor_hidden)
1065 CURSOR_OFF;
1066 ansi_buf_size = 0;
1067 switch (cchar) {
1068 case 'A':
1069 /* move cursor num1 rows up */
1070 console_cursor_up(num1);
1071 break;
1072 case 'B':
1073 /* move cursor num1 rows down */
1074 console_cursor_down(num1);
1075 break;
1076 case 'C':
1077 /* move cursor num1 columns forward */
1078 console_cursor_right(num1);
1079 break;
1080 case 'D':
1081 /* move cursor num1 columns back */
1082 console_cursor_left(num1);
1083 break;
1084 case 'E':
1085 /* move cursor num1 rows up at begin of row */
1086 console_previousline(num1);
1087 break;
1088 case 'F':
1089 /* move cursor num1 rows down at begin of row */
1090 console_newline(num1);
1091 break;
1092 case 'G':
1093 /* move cursor to column num1 */
1094 console_cursor_set_position(-1, num1-1);
1095 break;
1096 case 'H':
1097 /* move cursor to row num1, column num2 */
1098 console_cursor_set_position(num1-1, num2-1);
1099 break;
1100 case 'J':
1101 /* clear console and move cursor to 0, 0 */
1102 console_clear();
1103 console_cursor_set_position(0, 0);
1104 break;
1105 case 'K':
1106 /* clear line */
1107 if (num1 == 0)
1108 console_clear_line(console_row,
1109 console_col,
1110 CONSOLE_COLS-1);
1111 else if (num1 == 1)
1112 console_clear_line(console_row,
1113 0, console_col);
1114 else
1115 console_clear_line(console_row,
1116 0, CONSOLE_COLS-1);
1117 break;
1118 case 'h':
1119 ansi_cursor_hidden = 0;
1120 break;
1121 case 'l':
1122 ansi_cursor_hidden = 1;
1123 break;
1124 case 'm':
1125 if (num1 == 0) { /* reset swapped colors */
1126 if (ansi_colors_need_revert) {
1127 console_swap_colors();
1128 ansi_colors_need_revert = 0;
1129 }
1130 } else if (num1 == 7) { /* once swap colors */
1131 if (!ansi_colors_need_revert) {
1132 console_swap_colors();
1133 ansi_colors_need_revert = 1;
1134 }
1135 }
1136 break;
1137 }
1138 if (!ansi_cursor_hidden)
1139 CURSOR_SET;
1140 }
1141 } else {
1142 parse_putc(c);
1143 }
1144#else
1145 parse_putc(c);
1146#endif
Eric Nelsondb0d47d2013-05-06 14:27:28 +02001147 if (cfb_do_flush_cache)
1148 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
Timur Tabi65618632010-08-27 15:45:47 -05001149}
wdenkc6097192002-11-03 00:24:07 +00001150
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001151void video_puts(const char *s)
wdenkc6097192002-11-03 00:24:07 +00001152{
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001153 int count = strlen(s);
wdenkc6097192002-11-03 00:24:07 +00001154
wdenk4b248f32004-03-14 16:51:43 +00001155 while (count--)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001156 video_putc(*s++);
wdenkc6097192002-11-03 00:24:07 +00001157}
1158
Anatolij Gustschin10543822010-05-01 22:21:09 +02001159/*
1160 * Do not enforce drivers (or board code) to provide empty
1161 * video_set_lut() if they do not support 8 bpp format.
1162 * Implement weak default function instead.
1163 */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001164void __video_set_lut(unsigned int index, unsigned char r,
1165 unsigned char g, unsigned char b)
Anatolij Gustschin10543822010-05-01 22:21:09 +02001166{
1167}
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001168
1169void video_set_lut(unsigned int, unsigned char, unsigned char, unsigned char)
1170 __attribute__ ((weak, alias("__video_set_lut")));
Anatolij Gustschin10543822010-05-01 22:21:09 +02001171
Jon Loeliger07d38a12007-07-09 17:30:01 -05001172#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
wdenk4b248f32004-03-14 16:51:43 +00001173
1174#define FILL_8BIT_332RGB(r,g,b) { \
1175 *fb = ((r>>5)<<5) | ((g>>5)<<2) | (b>>6); \
1176 fb ++; \
1177}
1178
1179#define FILL_15BIT_555RGB(r,g,b) { \
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001180 *(unsigned short *)fb = \
1181 SWAP16((unsigned short)(((r>>3)<<10) | \
1182 ((g>>3)<<5) | \
1183 (b>>3))); \
wdenk4b248f32004-03-14 16:51:43 +00001184 fb += 2; \
1185}
1186
1187#define FILL_16BIT_565RGB(r,g,b) { \
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001188 *(unsigned short *)fb = \
1189 SWAP16((unsigned short)((((r)>>3)<<11)| \
1190 (((g)>>2)<<5) | \
1191 ((b)>>3))); \
wdenk4b248f32004-03-14 16:51:43 +00001192 fb += 2; \
1193}
1194
1195#define FILL_32BIT_X888RGB(r,g,b) { \
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001196 *(unsigned long *)fb = \
1197 SWAP32((unsigned long)(((r<<16) | \
1198 (g<<8) | \
1199 b))); \
wdenk4b248f32004-03-14 16:51:43 +00001200 fb += 4; \
1201}
1202
1203#ifdef VIDEO_FB_LITTLE_ENDIAN
1204#define FILL_24BIT_888RGB(r,g,b) { \
1205 fb[0] = b; \
1206 fb[1] = g; \
1207 fb[2] = r; \
1208 fb += 3; \
1209}
1210#else
1211#define FILL_24BIT_888RGB(r,g,b) { \
1212 fb[0] = r; \
1213 fb[1] = g; \
1214 fb[2] = b; \
1215 fb += 3; \
1216}
1217#endif
1218
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001219#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001220static inline void fill_555rgb_pswap(uchar *fb, int x, u8 r, u8 g, u8 b)
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001221{
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001222 ushort *dst = (ushort *) fb;
1223 ushort color = (ushort) (((r >> 3) << 10) |
1224 ((g >> 3) << 5) |
1225 (b >> 3));
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001226 if (x & 1)
1227 *(--dst) = color;
1228 else
1229 *(++dst) = color;
1230}
1231#endif
wdenk4b248f32004-03-14 16:51:43 +00001232
1233/*
Anatolij Gustschind5011762010-03-15 14:50:25 +01001234 * RLE8 bitmap support
1235 */
1236
1237#ifdef CONFIG_VIDEO_BMP_RLE8
1238/* Pre-calculated color table entry */
1239struct palette {
1240 union {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001241 unsigned short w; /* word */
1242 unsigned int dw; /* double word */
1243 } ce; /* color entry */
Anatolij Gustschind5011762010-03-15 14:50:25 +01001244};
1245
1246/*
1247 * Helper to draw encoded/unencoded run.
1248 */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001249static void draw_bitmap(uchar **fb, uchar *bm, struct palette *p,
1250 int cnt, int enc)
Anatolij Gustschind5011762010-03-15 14:50:25 +01001251{
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001252 ulong addr = (ulong) *fb;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001253 int *off;
1254 int enc_off = 1;
1255 int i;
1256
1257 /*
1258 * Setup offset of the color index in the bitmap.
1259 * Color index of encoded run is at offset 1.
1260 */
1261 off = enc ? &enc_off : &i;
1262
1263 switch (VIDEO_DATA_FORMAT) {
1264 case GDF__8BIT_INDEX:
1265 for (i = 0; i < cnt; i++)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001266 *(unsigned char *) addr++ = bm[*off];
Anatolij Gustschind5011762010-03-15 14:50:25 +01001267 break;
1268 case GDF_15BIT_555RGB:
1269 case GDF_16BIT_565RGB:
1270 /* differences handled while pre-calculating palette */
1271 for (i = 0; i < cnt; i++) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001272 *(unsigned short *) addr = p[bm[*off]].ce.w;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001273 addr += 2;
1274 }
1275 break;
1276 case GDF_32BIT_X888RGB:
1277 for (i = 0; i < cnt; i++) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001278 *(unsigned long *) addr = p[bm[*off]].ce.dw;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001279 addr += 4;
1280 }
1281 break;
1282 }
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001283 *fb = (uchar *) addr; /* return modified address */
Anatolij Gustschind5011762010-03-15 14:50:25 +01001284}
1285
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001286static int display_rle8_bitmap(bmp_image_t *img, int xoff, int yoff,
1287 int width, int height)
Anatolij Gustschind5011762010-03-15 14:50:25 +01001288{
1289 unsigned char *bm;
1290 unsigned char *fbp;
1291 unsigned int cnt, runlen;
1292 int decode = 1;
1293 int x, y, bpp, i, ncolors;
1294 struct palette p[256];
1295 bmp_color_table_entry_t cte;
1296 int green_shift, red_off;
Anatolij Gustschin74446b62011-02-21 21:33:29 +01001297 int limit = VIDEO_COLS * VIDEO_ROWS;
1298 int pixels = 0;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001299
1300 x = 0;
1301 y = __le32_to_cpu(img->header.height) - 1;
1302 ncolors = __le32_to_cpu(img->header.colors_used);
1303 bpp = VIDEO_PIXEL_SIZE;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001304 fbp = (unsigned char *) ((unsigned int) video_fb_address +
1305 (((y + yoff) * VIDEO_COLS) + xoff) * bpp);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001306
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001307 bm = (uchar *) img + __le32_to_cpu(img->header.data_offset);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001308
1309 /* pre-calculate and setup palette */
1310 switch (VIDEO_DATA_FORMAT) {
1311 case GDF__8BIT_INDEX:
1312 for (i = 0; i < ncolors; i++) {
1313 cte = img->color_table[i];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001314 video_set_lut(i, cte.red, cte.green, cte.blue);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001315 }
1316 break;
1317 case GDF_15BIT_555RGB:
1318 case GDF_16BIT_565RGB:
1319 if (VIDEO_DATA_FORMAT == GDF_15BIT_555RGB) {
1320 green_shift = 3;
1321 red_off = 10;
1322 } else {
1323 green_shift = 2;
1324 red_off = 11;
1325 }
1326 for (i = 0; i < ncolors; i++) {
1327 cte = img->color_table[i];
1328 p[i].ce.w = SWAP16((unsigned short)
1329 (((cte.red >> 3) << red_off) |
1330 ((cte.green >> green_shift) << 5) |
1331 cte.blue >> 3));
1332 }
1333 break;
1334 case GDF_32BIT_X888RGB:
1335 for (i = 0; i < ncolors; i++) {
1336 cte = img->color_table[i];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001337 p[i].ce.dw = SWAP32((cte.red << 16) |
1338 (cte.green << 8) |
Anatolij Gustschind5011762010-03-15 14:50:25 +01001339 cte.blue);
1340 }
1341 break;
1342 default:
1343 printf("RLE Bitmap unsupported in video mode 0x%x\n",
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001344 VIDEO_DATA_FORMAT);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001345 return -1;
1346 }
1347
1348 while (decode) {
1349 switch (bm[0]) {
1350 case 0:
1351 switch (bm[1]) {
1352 case 0:
1353 /* scan line end marker */
1354 bm += 2;
1355 x = 0;
1356 y--;
1357 fbp = (unsigned char *)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001358 ((unsigned int) video_fb_address +
Anatolij Gustschind5011762010-03-15 14:50:25 +01001359 (((y + yoff) * VIDEO_COLS) +
1360 xoff) * bpp);
1361 continue;
1362 case 1:
1363 /* end of bitmap data marker */
1364 decode = 0;
1365 break;
1366 case 2:
1367 /* run offset marker */
1368 x += bm[2];
1369 y -= bm[3];
1370 fbp = (unsigned char *)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001371 ((unsigned int) video_fb_address +
Anatolij Gustschind5011762010-03-15 14:50:25 +01001372 (((y + yoff) * VIDEO_COLS) +
1373 x + xoff) * bpp);
1374 bm += 4;
1375 break;
1376 default:
1377 /* unencoded run */
1378 cnt = bm[1];
1379 runlen = cnt;
Anatolij Gustschin74446b62011-02-21 21:33:29 +01001380 pixels += cnt;
1381 if (pixels > limit)
1382 goto error;
1383
Anatolij Gustschind5011762010-03-15 14:50:25 +01001384 bm += 2;
1385 if (y < height) {
1386 if (x >= width) {
1387 x += runlen;
1388 goto next_run;
1389 }
1390 if (x + runlen > width)
1391 cnt = width - x;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001392 draw_bitmap(&fbp, bm, p, cnt, 0);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001393 x += runlen;
1394 }
1395next_run:
1396 bm += runlen;
1397 if (runlen & 1)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001398 bm++; /* 0 padding if length is odd */
Anatolij Gustschind5011762010-03-15 14:50:25 +01001399 }
1400 break;
1401 default:
1402 /* encoded run */
Anatolij Gustschin74446b62011-02-21 21:33:29 +01001403 cnt = bm[0];
1404 runlen = cnt;
1405 pixels += cnt;
1406 if (pixels > limit)
1407 goto error;
1408
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001409 if (y < height) { /* only draw into visible area */
Anatolij Gustschind5011762010-03-15 14:50:25 +01001410 if (x >= width) {
1411 x += runlen;
1412 bm += 2;
1413 continue;
1414 }
1415 if (x + runlen > width)
1416 cnt = width - x;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001417 draw_bitmap(&fbp, bm, p, cnt, 1);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001418 x += runlen;
1419 }
1420 bm += 2;
1421 break;
1422 }
1423 }
1424 return 0;
Anatolij Gustschin74446b62011-02-21 21:33:29 +01001425error:
1426 printf("Error: Too much encoded pixel data, validate your bitmap\n");
1427 return -1;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001428}
1429#endif
1430
1431/*
wdenk4b248f32004-03-14 16:51:43 +00001432 * Display the BMP file located at address bmp_image.
wdenk4b248f32004-03-14 16:51:43 +00001433 */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001434int video_display_bitmap(ulong bmp_image, int x, int y)
wdenk4b248f32004-03-14 16:51:43 +00001435{
1436 ushort xcount, ycount;
1437 uchar *fb;
1438 bmp_image_t *bmp = (bmp_image_t *) bmp_image;
1439 uchar *bmap;
1440 ushort padded_line;
1441 unsigned long width, height, bpp;
1442 unsigned colors;
1443 unsigned long compression;
1444 bmp_color_table_entry_t cte;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001445
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001446#ifdef CONFIG_VIDEO_BMP_GZIP
1447 unsigned char *dst = NULL;
1448 ulong len;
1449#endif
wdenk4b248f32004-03-14 16:51:43 +00001450
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001451 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001452
1453 if (!((bmp->header.signature[0] == 'B') &&
1454 (bmp->header.signature[1] == 'M'))) {
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001455
1456#ifdef CONFIG_VIDEO_BMP_GZIP
1457 /*
1458 * Could be a gzipped bmp image, try to decrompress...
1459 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001460 len = CONFIG_SYS_VIDEO_LOGO_MAX_SIZE;
1461 dst = malloc(CONFIG_SYS_VIDEO_LOGO_MAX_SIZE);
Stefan Roesec29ab9d2005-10-08 10:19:07 +02001462 if (dst == NULL) {
1463 printf("Error: malloc in gunzip failed!\n");
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001464 return 1;
Stefan Roesec29ab9d2005-10-08 10:19:07 +02001465 }
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001466 if (gunzip(dst, CONFIG_SYS_VIDEO_LOGO_MAX_SIZE,
1467 (uchar *) bmp_image,
1468 &len) != 0) {
1469 printf("Error: no valid bmp or bmp.gz image at %lx\n",
1470 bmp_image);
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001471 free(dst);
1472 return 1;
1473 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001474 if (len == CONFIG_SYS_VIDEO_LOGO_MAX_SIZE) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001475 printf("Image could be truncated "
1476 "(increase CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)!\n");
Stefan Roesec29ab9d2005-10-08 10:19:07 +02001477 }
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001478
1479 /*
1480 * Set addr to decompressed image
1481 */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001482 bmp = (bmp_image_t *) dst;
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001483
1484 if (!((bmp->header.signature[0] == 'B') &&
1485 (bmp->header.signature[1] == 'M'))) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001486 printf("Error: no valid bmp.gz image at %lx\n",
1487 bmp_image);
Matthias Fuchsa49e0d12008-04-21 11:19:04 +02001488 free(dst);
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001489 return 1;
1490 }
1491#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001492 printf("Error: no valid bmp image at %lx\n", bmp_image);
wdenk4b248f32004-03-14 16:51:43 +00001493 return 1;
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001494#endif /* CONFIG_VIDEO_BMP_GZIP */
wdenk4b248f32004-03-14 16:51:43 +00001495 }
1496
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001497 width = le32_to_cpu(bmp->header.width);
1498 height = le32_to_cpu(bmp->header.height);
1499 bpp = le16_to_cpu(bmp->header.bit_count);
1500 colors = le32_to_cpu(bmp->header.colors_used);
1501 compression = le32_to_cpu(bmp->header.compression);
wdenk4b248f32004-03-14 16:51:43 +00001502
Marek Vasut68da5b12011-10-21 14:17:04 +00001503 debug("Display-bmp: %ld x %ld with %d colors\n",
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001504 width, height, colors);
wdenk4b248f32004-03-14 16:51:43 +00001505
Anatolij Gustschind5011762010-03-15 14:50:25 +01001506 if (compression != BMP_BI_RGB
1507#ifdef CONFIG_VIDEO_BMP_RLE8
1508 && compression != BMP_BI_RLE8
1509#endif
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001510 ) {
1511 printf("Error: compression type %ld not supported\n",
1512 compression);
Matthias Fuchsa49e0d12008-04-21 11:19:04 +02001513#ifdef CONFIG_VIDEO_BMP_GZIP
1514 if (dst)
1515 free(dst);
1516#endif
wdenk4b248f32004-03-14 16:51:43 +00001517 return 1;
1518 }
1519
1520 padded_line = (((width * bpp + 7) / 8) + 3) & ~0x3;
1521
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001522#ifdef CONFIG_SPLASH_SCREEN_ALIGN
1523 if (x == BMP_ALIGN_CENTER)
1524 x = max(0, (VIDEO_VISIBLE_COLS - width) / 2);
1525 else if (x < 0)
1526 x = max(0, VIDEO_VISIBLE_COLS - width + x + 1);
1527
1528 if (y == BMP_ALIGN_CENTER)
1529 y = max(0, (VIDEO_VISIBLE_ROWS - height) / 2);
1530 else if (y < 0)
1531 y = max(0, VIDEO_VISIBLE_ROWS - height + y + 1);
1532#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1533
Matthias Weisseracf3baa2013-02-15 03:35:12 +00001534 /*
1535 * Just ignore elements which are completely beyond screen
1536 * dimensions.
1537 */
1538 if ((x >= VIDEO_VISIBLE_COLS) || (y >= VIDEO_VISIBLE_ROWS))
1539 return 0;
1540
wdenk4b248f32004-03-14 16:51:43 +00001541 if ((x + width) > VIDEO_VISIBLE_COLS)
1542 width = VIDEO_VISIBLE_COLS - x;
1543 if ((y + height) > VIDEO_VISIBLE_ROWS)
1544 height = VIDEO_VISIBLE_ROWS - y;
1545
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001546 bmap = (uchar *) bmp + le32_to_cpu(bmp->header.data_offset);
wdenk4b248f32004-03-14 16:51:43 +00001547 fb = (uchar *) (video_fb_address +
1548 ((y + height - 1) * VIDEO_COLS * VIDEO_PIXEL_SIZE) +
1549 x * VIDEO_PIXEL_SIZE);
1550
Anatolij Gustschind5011762010-03-15 14:50:25 +01001551#ifdef CONFIG_VIDEO_BMP_RLE8
1552 if (compression == BMP_BI_RLE8) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001553 return display_rle8_bitmap(bmp, x, y, width, height);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001554 }
1555#endif
1556
Timur Tabi68f66182010-08-23 16:58:00 -05001557 /* We handle only 4, 8, or 24 bpp bitmaps */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001558 switch (le16_to_cpu(bmp->header.bit_count)) {
Timur Tabi68f66182010-08-23 16:58:00 -05001559 case 4:
1560 padded_line -= width / 2;
1561 ycount = height;
1562
1563 switch (VIDEO_DATA_FORMAT) {
1564 case GDF_32BIT_X888RGB:
1565 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001566 WATCHDOG_RESET();
Timur Tabi68f66182010-08-23 16:58:00 -05001567 /*
1568 * Don't assume that 'width' is an
1569 * even number
1570 */
1571 for (xcount = 0; xcount < width; xcount++) {
1572 uchar idx;
1573
1574 if (xcount & 1) {
1575 idx = *bmap & 0xF;
1576 bmap++;
1577 } else
1578 idx = *bmap >> 4;
1579 cte = bmp->color_table[idx];
1580 FILL_32BIT_X888RGB(cte.red, cte.green,
1581 cte.blue);
1582 }
1583 bmap += padded_line;
1584 fb -= (VIDEO_VISIBLE_COLS + width) *
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001585 VIDEO_PIXEL_SIZE;
Timur Tabi68f66182010-08-23 16:58:00 -05001586 }
1587 break;
1588 default:
1589 puts("4bpp bitmap unsupported with current "
1590 "video mode\n");
1591 break;
1592 }
1593 break;
1594
wdenk4b248f32004-03-14 16:51:43 +00001595 case 8:
1596 padded_line -= width;
1597 if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
Anatolij Gustschin7c050f82010-06-19 20:41:56 +02001598 /* Copy colormap */
wdenk4b248f32004-03-14 16:51:43 +00001599 for (xcount = 0; xcount < colors; ++xcount) {
1600 cte = bmp->color_table[xcount];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001601 video_set_lut(xcount, cte.red, cte.green,
1602 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001603 }
1604 }
1605 ycount = height;
1606 switch (VIDEO_DATA_FORMAT) {
1607 case GDF__8BIT_INDEX:
1608 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001609 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001610 xcount = width;
1611 while (xcount--) {
1612 *fb++ = *bmap++;
1613 }
1614 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001615 fb -= (VIDEO_VISIBLE_COLS + width) *
1616 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001617 }
1618 break;
1619 case GDF__8BIT_332RGB:
1620 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001621 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001622 xcount = width;
1623 while (xcount--) {
1624 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001625 FILL_8BIT_332RGB(cte.red, cte.green,
1626 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001627 }
1628 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001629 fb -= (VIDEO_VISIBLE_COLS + width) *
1630 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001631 }
1632 break;
1633 case GDF_15BIT_555RGB:
1634 while (ycount--) {
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001635#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1636 int xpos = x;
1637#endif
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001638 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001639 xcount = width;
1640 while (xcount--) {
1641 cte = bmp->color_table[*bmap++];
Andrew Dyercc347802008-08-29 12:30:39 -05001642#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001643 fill_555rgb_pswap(fb, xpos++, cte.red,
1644 cte.green,
1645 cte.blue);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001646 fb += 2;
Andrew Dyercc347802008-08-29 12:30:39 -05001647#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001648 FILL_15BIT_555RGB(cte.red, cte.green,
1649 cte.blue);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001650#endif
wdenk4b248f32004-03-14 16:51:43 +00001651 }
1652 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001653 fb -= (VIDEO_VISIBLE_COLS + width) *
1654 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001655 }
1656 break;
1657 case GDF_16BIT_565RGB:
1658 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001659 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001660 xcount = width;
1661 while (xcount--) {
1662 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001663 FILL_16BIT_565RGB(cte.red, cte.green,
1664 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001665 }
1666 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001667 fb -= (VIDEO_VISIBLE_COLS + width) *
1668 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001669 }
1670 break;
1671 case GDF_32BIT_X888RGB:
1672 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001673 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001674 xcount = width;
1675 while (xcount--) {
1676 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001677 FILL_32BIT_X888RGB(cte.red, cte.green,
1678 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001679 }
1680 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001681 fb -= (VIDEO_VISIBLE_COLS + width) *
1682 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001683 }
1684 break;
1685 case GDF_24BIT_888RGB:
1686 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001687 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001688 xcount = width;
1689 while (xcount--) {
1690 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001691 FILL_24BIT_888RGB(cte.red, cte.green,
1692 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001693 }
1694 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001695 fb -= (VIDEO_VISIBLE_COLS + width) *
1696 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001697 }
1698 break;
1699 }
1700 break;
1701 case 24:
1702 padded_line -= 3 * width;
1703 ycount = height;
1704 switch (VIDEO_DATA_FORMAT) {
1705 case GDF__8BIT_332RGB:
1706 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001707 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001708 xcount = width;
1709 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001710 FILL_8BIT_332RGB(bmap[2], bmap[1],
1711 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001712 bmap += 3;
1713 }
1714 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001715 fb -= (VIDEO_VISIBLE_COLS + width) *
1716 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001717 }
1718 break;
1719 case GDF_15BIT_555RGB:
1720 while (ycount--) {
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001721#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1722 int xpos = x;
1723#endif
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001724 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001725 xcount = width;
1726 while (xcount--) {
Andrew Dyercc347802008-08-29 12:30:39 -05001727#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001728 fill_555rgb_pswap(fb, xpos++, bmap[2],
1729 bmap[1], bmap[0]);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001730 fb += 2;
Andrew Dyercc347802008-08-29 12:30:39 -05001731#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001732 FILL_15BIT_555RGB(bmap[2], bmap[1],
1733 bmap[0]);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001734#endif
wdenk4b248f32004-03-14 16:51:43 +00001735 bmap += 3;
1736 }
1737 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001738 fb -= (VIDEO_VISIBLE_COLS + width) *
1739 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001740 }
1741 break;
1742 case GDF_16BIT_565RGB:
1743 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001744 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001745 xcount = width;
1746 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001747 FILL_16BIT_565RGB(bmap[2], bmap[1],
1748 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001749 bmap += 3;
1750 }
1751 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001752 fb -= (VIDEO_VISIBLE_COLS + width) *
1753 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001754 }
1755 break;
1756 case GDF_32BIT_X888RGB:
1757 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001758 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001759 xcount = width;
1760 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001761 FILL_32BIT_X888RGB(bmap[2], bmap[1],
1762 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001763 bmap += 3;
1764 }
1765 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001766 fb -= (VIDEO_VISIBLE_COLS + width) *
1767 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001768 }
1769 break;
1770 case GDF_24BIT_888RGB:
1771 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001772 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001773 xcount = width;
1774 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001775 FILL_24BIT_888RGB(bmap[2], bmap[1],
1776 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001777 bmap += 3;
1778 }
1779 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001780 fb -= (VIDEO_VISIBLE_COLS + width) *
1781 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001782 }
1783 break;
1784 default:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001785 printf("Error: 24 bits/pixel bitmap incompatible "
1786 "with current video mode\n");
wdenk4b248f32004-03-14 16:51:43 +00001787 break;
1788 }
1789 break;
1790 default:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001791 printf("Error: %d bit/pixel bitmaps not supported by U-Boot\n",
1792 le16_to_cpu(bmp->header.bit_count));
wdenk4b248f32004-03-14 16:51:43 +00001793 break;
1794 }
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001795
1796#ifdef CONFIG_VIDEO_BMP_GZIP
1797 if (dst) {
1798 free(dst);
1799 }
1800#endif
1801
Eric Nelsondb0d47d2013-05-06 14:27:28 +02001802 if (cfb_do_flush_cache)
1803 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
wdenk4b248f32004-03-14 16:51:43 +00001804 return (0);
1805}
Jon Loeliger07d38a12007-07-09 17:30:01 -05001806#endif
wdenk4b248f32004-03-14 16:51:43 +00001807
wdenk4b248f32004-03-14 16:51:43 +00001808
wdenkc6097192002-11-03 00:24:07 +00001809#ifdef CONFIG_VIDEO_LOGO
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001810static int video_logo_xpos;
1811static int video_logo_ypos;
1812
Bastian Ruppert4b7d3a02012-09-13 22:29:02 +00001813static void plot_logo_or_black(void *screen, int width, int x, int y, \
1814 int black);
1815
1816static void logo_plot(void *screen, int width, int x, int y)
1817{
1818 plot_logo_or_black(screen, width, x, y, 0);
1819}
1820
1821static void logo_black(void)
1822{
1823 plot_logo_or_black(video_fb_address, \
1824 VIDEO_COLS, \
1825 video_logo_xpos, \
1826 video_logo_ypos, \
1827 1);
1828}
1829
1830static int do_clrlogo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1831{
1832 if (argc != 1)
1833 return cmd_usage(cmdtp);
1834
1835 logo_black();
1836 return 0;
1837}
1838
1839U_BOOT_CMD(
1840 clrlogo, 1, 0, do_clrlogo,
1841 "fill the boot logo area with black",
1842 " "
1843 );
1844
1845static void plot_logo_or_black(void *screen, int width, int x, int y, int black)
wdenkc6097192002-11-03 00:24:07 +00001846{
wdenkc6097192002-11-03 00:24:07 +00001847
wdenk4b248f32004-03-14 16:51:43 +00001848 int xcount, i;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001849 int skip = (width - VIDEO_LOGO_WIDTH) * VIDEO_PIXEL_SIZE;
Matthias Weisserbe129aa2010-01-12 12:06:31 +01001850 int ycount = video_logo_height;
wdenk4b248f32004-03-14 16:51:43 +00001851 unsigned char r, g, b, *logo_red, *logo_blue, *logo_green;
1852 unsigned char *source;
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001853 unsigned char *dest;
1854
1855#ifdef CONFIG_SPLASH_SCREEN_ALIGN
1856 if (x == BMP_ALIGN_CENTER)
1857 x = max(0, (VIDEO_VISIBLE_COLS - VIDEO_LOGO_WIDTH) / 2);
1858 else if (x < 0)
1859 x = max(0, VIDEO_VISIBLE_COLS - VIDEO_LOGO_WIDTH + x + 1);
1860
1861 if (y == BMP_ALIGN_CENTER)
1862 y = max(0, (VIDEO_VISIBLE_ROWS - VIDEO_LOGO_HEIGHT) / 2);
1863 else if (y < 0)
1864 y = max(0, VIDEO_VISIBLE_ROWS - VIDEO_LOGO_HEIGHT + y + 1);
1865#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1866
1867 dest = (unsigned char *)screen + (y * width + x) * VIDEO_PIXEL_SIZE;
wdenka6c7ad22002-12-03 21:28:10 +00001868
1869#ifdef CONFIG_VIDEO_BMP_LOGO
wdenk4b248f32004-03-14 16:51:43 +00001870 source = bmp_logo_bitmap;
wdenk8bde7f72003-06-27 21:31:46 +00001871
Anatolij Gustschin7c050f82010-06-19 20:41:56 +02001872 /* Allocate temporary space for computing colormap */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001873 logo_red = malloc(BMP_LOGO_COLORS);
1874 logo_green = malloc(BMP_LOGO_COLORS);
1875 logo_blue = malloc(BMP_LOGO_COLORS);
Anatolij Gustschin7c050f82010-06-19 20:41:56 +02001876 /* Compute color map */
wdenk4b248f32004-03-14 16:51:43 +00001877 for (i = 0; i < VIDEO_LOGO_COLORS; i++) {
1878 logo_red[i] = (bmp_logo_palette[i] & 0x0f00) >> 4;
1879 logo_green[i] = (bmp_logo_palette[i] & 0x00f0);
1880 logo_blue[i] = (bmp_logo_palette[i] & 0x000f) << 4;
1881 }
wdenka6c7ad22002-12-03 21:28:10 +00001882#else
wdenk4b248f32004-03-14 16:51:43 +00001883 source = linux_logo;
1884 logo_red = linux_logo_red;
1885 logo_green = linux_logo_green;
1886 logo_blue = linux_logo_blue;
wdenka6c7ad22002-12-03 21:28:10 +00001887#endif
wdenk8bde7f72003-06-27 21:31:46 +00001888
wdenk4b248f32004-03-14 16:51:43 +00001889 if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
1890 for (i = 0; i < VIDEO_LOGO_COLORS; i++) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001891 video_set_lut(i + VIDEO_LOGO_LUT_OFFSET,
1892 logo_red[i], logo_green[i],
1893 logo_blue[i]);
wdenk4b248f32004-03-14 16:51:43 +00001894 }
wdenk8bde7f72003-06-27 21:31:46 +00001895 }
wdenkc6097192002-11-03 00:24:07 +00001896
wdenk4b248f32004-03-14 16:51:43 +00001897 while (ycount--) {
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001898#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1899 int xpos = x;
1900#endif
wdenk4b248f32004-03-14 16:51:43 +00001901 xcount = VIDEO_LOGO_WIDTH;
1902 while (xcount--) {
Bastian Ruppert4b7d3a02012-09-13 22:29:02 +00001903 if (black) {
1904 r = 0x00;
1905 g = 0x00;
1906 b = 0x00;
1907 } else {
1908 r = logo_red[*source - VIDEO_LOGO_LUT_OFFSET];
1909 g = logo_green[*source - VIDEO_LOGO_LUT_OFFSET];
1910 b = logo_blue[*source - VIDEO_LOGO_LUT_OFFSET];
1911 }
wdenk8bde7f72003-06-27 21:31:46 +00001912
wdenk4b248f32004-03-14 16:51:43 +00001913 switch (VIDEO_DATA_FORMAT) {
1914 case GDF__8BIT_INDEX:
1915 *dest = *source;
1916 break;
1917 case GDF__8BIT_332RGB:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001918 *dest = ((r >> 5) << 5) |
1919 ((g >> 5) << 2) |
1920 (b >> 6);
wdenk4b248f32004-03-14 16:51:43 +00001921 break;
1922 case GDF_15BIT_555RGB:
Andrew Dyercc347802008-08-29 12:30:39 -05001923#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001924 fill_555rgb_pswap(dest, xpos++, r, g, b);
Andrew Dyercc347802008-08-29 12:30:39 -05001925#else
wdenk4b248f32004-03-14 16:51:43 +00001926 *(unsigned short *) dest =
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001927 SWAP16((unsigned short) (
1928 ((r >> 3) << 10) |
1929 ((g >> 3) << 5) |
1930 (b >> 3)));
Anatolij Gustschinbed53752008-01-11 14:30:01 +01001931#endif
wdenk4b248f32004-03-14 16:51:43 +00001932 break;
1933 case GDF_16BIT_565RGB:
1934 *(unsigned short *) dest =
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001935 SWAP16((unsigned short) (
1936 ((r >> 3) << 11) |
1937 ((g >> 2) << 5) |
1938 (b >> 3)));
wdenk4b248f32004-03-14 16:51:43 +00001939 break;
1940 case GDF_32BIT_X888RGB:
1941 *(unsigned long *) dest =
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001942 SWAP32((unsigned long) (
1943 (r << 16) |
1944 (g << 8) |
1945 b));
wdenk4b248f32004-03-14 16:51:43 +00001946 break;
1947 case GDF_24BIT_888RGB:
wdenkc6097192002-11-03 00:24:07 +00001948#ifdef VIDEO_FB_LITTLE_ENDIAN
wdenk4b248f32004-03-14 16:51:43 +00001949 dest[0] = b;
1950 dest[1] = g;
1951 dest[2] = r;
wdenkc6097192002-11-03 00:24:07 +00001952#else
wdenk4b248f32004-03-14 16:51:43 +00001953 dest[0] = r;
1954 dest[1] = g;
1955 dest[2] = b;
wdenkc6097192002-11-03 00:24:07 +00001956#endif
wdenk4b248f32004-03-14 16:51:43 +00001957 break;
1958 }
1959 source++;
1960 dest += VIDEO_PIXEL_SIZE;
1961 }
1962 dest += skip;
wdenk8bde7f72003-06-27 21:31:46 +00001963 }
wdenka6c7ad22002-12-03 21:28:10 +00001964#ifdef CONFIG_VIDEO_BMP_LOGO
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001965 free(logo_red);
1966 free(logo_green);
1967 free(logo_blue);
wdenka6c7ad22002-12-03 21:28:10 +00001968#endif
wdenkc6097192002-11-03 00:24:07 +00001969}
1970
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001971static void *video_logo(void)
wdenkc6097192002-11-03 00:24:07 +00001972{
wdenk4b248f32004-03-14 16:51:43 +00001973 char info[128];
Wolfgang Denka9a62af2011-11-04 15:55:20 +00001974 int space, len;
1975 __maybe_unused int y_off = 0;
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001976 __maybe_unused ulong addr;
1977 __maybe_unused char *s;
wdenkc6097192002-11-03 00:24:07 +00001978
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001979#ifdef CONFIG_SPLASH_SCREEN_ALIGN
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001980 s = getenv("splashpos");
1981 if (s != NULL) {
1982 if (s[0] == 'm')
1983 video_logo_xpos = BMP_ALIGN_CENTER;
1984 else
1985 video_logo_xpos = simple_strtol(s, NULL, 0);
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001986
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001987 s = strchr(s + 1, ',');
1988 if (s != NULL) {
1989 if (s[1] == 'm')
1990 video_logo_ypos = BMP_ALIGN_CENTER;
1991 else
1992 video_logo_ypos = simple_strtol(s + 1, NULL, 0);
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001993 }
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001994 }
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001995#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1996
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001997#ifdef CONFIG_SPLASH_SCREEN
1998 s = getenv("splashimage");
1999 if (s != NULL) {
Robert Winklerdd4425e2013-06-17 11:31:29 -07002000 splash_screen_prepare();
Bastian Ruppert1e681f92012-09-13 22:29:01 +00002001 addr = simple_strtoul(s, NULL, 16);
2002
Bastian Ruppert1e681f92012-09-13 22:29:01 +00002003 if (video_display_bitmap(addr,
2004 video_logo_xpos,
2005 video_logo_ypos) == 0) {
Matthias Weisserbe129aa2010-01-12 12:06:31 +01002006 video_logo_height = 0;
wdenk4b248f32004-03-14 16:51:43 +00002007 return ((void *) (video_fb_address));
2008 }
2009 }
2010#endif /* CONFIG_SPLASH_SCREEN */
2011
Bastian Ruppert1e681f92012-09-13 22:29:01 +00002012 logo_plot(video_fb_address, VIDEO_COLS,
2013 video_logo_xpos, video_logo_ypos);
2014
2015#ifdef CONFIG_SPLASH_SCREEN_ALIGN
2016 /*
2017 * when using splashpos for video_logo, skip any info
2018 * output on video console if the logo is not at 0,0
2019 */
2020 if (video_logo_xpos || video_logo_ypos) {
2021 /*
2022 * video_logo_height is used in text and cursor offset
2023 * calculations. Since the console is below the logo,
2024 * we need to adjust the logo height
2025 */
2026 if (video_logo_ypos == BMP_ALIGN_CENTER)
2027 video_logo_height += max(0, (VIDEO_VISIBLE_ROWS - \
2028 VIDEO_LOGO_HEIGHT) / 2);
2029 else if (video_logo_ypos > 0)
2030 video_logo_height += video_logo_ypos;
2031
2032 return video_fb_address + video_logo_height * VIDEO_LINE_LEN;
2033 }
2034#endif
wdenk4b248f32004-03-14 16:51:43 +00002035
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002036 sprintf(info, " %s", version_string);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02002037
2038 space = (VIDEO_LINE_LEN / 2 - VIDEO_INFO_X) / VIDEO_FONT_WIDTH;
2039 len = strlen(info);
2040
2041 if (len > space) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002042 video_drawchars(VIDEO_INFO_X, VIDEO_INFO_Y,
2043 (uchar *) info, space);
2044 video_drawchars(VIDEO_INFO_X + VIDEO_FONT_WIDTH,
2045 VIDEO_INFO_Y + VIDEO_FONT_HEIGHT,
2046 (uchar *) info + space, len - space);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02002047 y_off = 1;
2048 } else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002049 video_drawstring(VIDEO_INFO_X, VIDEO_INFO_Y, (uchar *) info);
wdenkc6097192002-11-03 00:24:07 +00002050
2051#ifdef CONFIG_CONSOLE_EXTRA_INFO
wdenk4b248f32004-03-14 16:51:43 +00002052 {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002053 int i, n =
2054 ((video_logo_height -
2055 VIDEO_FONT_HEIGHT) / VIDEO_FONT_HEIGHT);
wdenkc6097192002-11-03 00:24:07 +00002056
wdenk4b248f32004-03-14 16:51:43 +00002057 for (i = 1; i < n; i++) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002058 video_get_info_str(i, info);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02002059 if (!*info)
2060 continue;
2061
2062 len = strlen(info);
2063 if (len > space) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002064 video_drawchars(VIDEO_INFO_X,
2065 VIDEO_INFO_Y +
2066 (i + y_off) *
2067 VIDEO_FONT_HEIGHT,
2068 (uchar *) info, space);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02002069 y_off++;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002070 video_drawchars(VIDEO_INFO_X +
2071 VIDEO_FONT_WIDTH,
2072 VIDEO_INFO_Y +
2073 (i + y_off) *
2074 VIDEO_FONT_HEIGHT,
2075 (uchar *) info + space,
2076 len - space);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02002077 } else {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002078 video_drawstring(VIDEO_INFO_X,
2079 VIDEO_INFO_Y +
2080 (i + y_off) *
2081 VIDEO_FONT_HEIGHT,
2082 (uchar *) info);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02002083 }
wdenk4b248f32004-03-14 16:51:43 +00002084 }
2085 }
wdenkc6097192002-11-03 00:24:07 +00002086#endif
2087
Matthias Weisserbe129aa2010-01-12 12:06:31 +01002088 return (video_fb_address + video_logo_height * VIDEO_LINE_LEN);
wdenkc6097192002-11-03 00:24:07 +00002089}
2090#endif
2091
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +02002092static int cfb_fb_is_in_dram(void)
2093{
2094 bd_t *bd = gd->bd;
2095#if defined(CONFIG_ARM) || defined(CONFIG_AVR32) || defined(COFNIG_NDS32) || \
2096defined(CONFIG_SANDBOX) || defined(CONFIG_X86)
2097 ulong start, end;
2098 int i;
2099
2100 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
2101 start = bd->bi_dram[i].start;
2102 end = bd->bi_dram[i].start + bd->bi_dram[i].size - 1;
2103 if ((ulong)video_fb_address >= start &&
2104 (ulong)video_fb_address < end)
2105 return 1;
2106 }
2107#else
2108 if ((ulong)video_fb_address >= bd->bi_memstart &&
2109 (ulong)video_fb_address < bd->bi_memstart + bd->bi_memsize)
2110 return 1;
2111#endif
2112 return 0;
2113}
2114
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002115static int video_init(void)
wdenkc6097192002-11-03 00:24:07 +00002116{
wdenk4b248f32004-03-14 16:51:43 +00002117 unsigned char color8;
wdenkc6097192002-11-03 00:24:07 +00002118
Wolfgang Denk57912932011-07-30 12:48:09 +00002119 pGD = video_hw_init();
2120 if (pGD == NULL)
wdenk4b248f32004-03-14 16:51:43 +00002121 return -1;
wdenkc6097192002-11-03 00:24:07 +00002122
wdenk4b248f32004-03-14 16:51:43 +00002123 video_fb_address = (void *) VIDEO_FB_ADRS;
wdenkc6097192002-11-03 00:24:07 +00002124#ifdef CONFIG_VIDEO_HW_CURSOR
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002125 video_init_hw_cursor(VIDEO_FONT_WIDTH, VIDEO_FONT_HEIGHT);
wdenkc6097192002-11-03 00:24:07 +00002126#endif
2127
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +02002128 cfb_do_flush_cache = cfb_fb_is_in_dram() && dcache_status();
2129
wdenk4b248f32004-03-14 16:51:43 +00002130 /* Init drawing pats */
2131 switch (VIDEO_DATA_FORMAT) {
2132 case GDF__8BIT_INDEX:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002133 video_set_lut(0x01, CONSOLE_FG_COL, CONSOLE_FG_COL,
2134 CONSOLE_FG_COL);
2135 video_set_lut(0x00, CONSOLE_BG_COL, CONSOLE_BG_COL,
2136 CONSOLE_BG_COL);
wdenk4b248f32004-03-14 16:51:43 +00002137 fgx = 0x01010101;
2138 bgx = 0x00000000;
2139 break;
2140 case GDF__8BIT_332RGB:
2141 color8 = ((CONSOLE_FG_COL & 0xe0) |
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002142 ((CONSOLE_FG_COL >> 3) & 0x1c) |
2143 CONSOLE_FG_COL >> 6);
2144 fgx = (color8 << 24) | (color8 << 16) | (color8 << 8) |
2145 color8;
wdenk4b248f32004-03-14 16:51:43 +00002146 color8 = ((CONSOLE_BG_COL & 0xe0) |
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002147 ((CONSOLE_BG_COL >> 3) & 0x1c) |
2148 CONSOLE_BG_COL >> 6);
2149 bgx = (color8 << 24) | (color8 << 16) | (color8 << 8) |
2150 color8;
wdenk4b248f32004-03-14 16:51:43 +00002151 break;
2152 case GDF_15BIT_555RGB:
2153 fgx = (((CONSOLE_FG_COL >> 3) << 26) |
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002154 ((CONSOLE_FG_COL >> 3) << 21) |
2155 ((CONSOLE_FG_COL >> 3) << 16) |
2156 ((CONSOLE_FG_COL >> 3) << 10) |
2157 ((CONSOLE_FG_COL >> 3) << 5) |
2158 (CONSOLE_FG_COL >> 3));
wdenk4b248f32004-03-14 16:51:43 +00002159 bgx = (((CONSOLE_BG_COL >> 3) << 26) |
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002160 ((CONSOLE_BG_COL >> 3) << 21) |
2161 ((CONSOLE_BG_COL >> 3) << 16) |
2162 ((CONSOLE_BG_COL >> 3) << 10) |
2163 ((CONSOLE_BG_COL >> 3) << 5) |
2164 (CONSOLE_BG_COL >> 3));
wdenk4b248f32004-03-14 16:51:43 +00002165 break;
2166 case GDF_16BIT_565RGB:
2167 fgx = (((CONSOLE_FG_COL >> 3) << 27) |
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002168 ((CONSOLE_FG_COL >> 2) << 21) |
2169 ((CONSOLE_FG_COL >> 3) << 16) |
2170 ((CONSOLE_FG_COL >> 3) << 11) |
2171 ((CONSOLE_FG_COL >> 2) << 5) |
2172 (CONSOLE_FG_COL >> 3));
wdenk4b248f32004-03-14 16:51:43 +00002173 bgx = (((CONSOLE_BG_COL >> 3) << 27) |
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002174 ((CONSOLE_BG_COL >> 2) << 21) |
2175 ((CONSOLE_BG_COL >> 3) << 16) |
2176 ((CONSOLE_BG_COL >> 3) << 11) |
2177 ((CONSOLE_BG_COL >> 2) << 5) |
2178 (CONSOLE_BG_COL >> 3));
wdenk4b248f32004-03-14 16:51:43 +00002179 break;
2180 case GDF_32BIT_X888RGB:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002181 fgx = (CONSOLE_FG_COL << 16) |
2182 (CONSOLE_FG_COL << 8) |
2183 CONSOLE_FG_COL;
2184 bgx = (CONSOLE_BG_COL << 16) |
2185 (CONSOLE_BG_COL << 8) |
2186 CONSOLE_BG_COL;
wdenk4b248f32004-03-14 16:51:43 +00002187 break;
2188 case GDF_24BIT_888RGB:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002189 fgx = (CONSOLE_FG_COL << 24) |
2190 (CONSOLE_FG_COL << 16) |
2191 (CONSOLE_FG_COL << 8) |
2192 CONSOLE_FG_COL;
2193 bgx = (CONSOLE_BG_COL << 24) |
2194 (CONSOLE_BG_COL << 16) |
2195 (CONSOLE_BG_COL << 8) |
2196 CONSOLE_BG_COL;
wdenk4b248f32004-03-14 16:51:43 +00002197 break;
2198 }
2199 eorx = fgx ^ bgx;
wdenkc6097192002-11-03 00:24:07 +00002200
2201#ifdef CONFIG_VIDEO_LOGO
wdenk4b248f32004-03-14 16:51:43 +00002202 /* Plot the logo and get start point of console */
Wolfgang Denk72c65f62011-07-29 09:55:28 +00002203 debug("Video: Drawing the logo ...\n");
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002204 video_console_address = video_logo();
wdenkc6097192002-11-03 00:24:07 +00002205#else
wdenk4b248f32004-03-14 16:51:43 +00002206 video_console_address = video_fb_address;
wdenkc6097192002-11-03 00:24:07 +00002207#endif
2208
wdenk4b248f32004-03-14 16:51:43 +00002209 /* Initialize the console */
2210 console_col = 0;
2211 console_row = 0;
wdenkc6097192002-11-03 00:24:07 +00002212
Eric Nelsondb0d47d2013-05-06 14:27:28 +02002213 if (cfb_do_flush_cache)
2214 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
2215
wdenk4b248f32004-03-14 16:51:43 +00002216 return 0;
wdenkc6097192002-11-03 00:24:07 +00002217}
2218
Wolfgang Denk6cc7ba92009-05-15 10:07:43 +02002219/*
2220 * Implement a weak default function for boards that optionally
2221 * need to skip the video initialization.
2222 */
2223int __board_video_skip(void)
2224{
2225 /* As default, don't skip test */
2226 return 0;
2227}
Wolfgang Denk6cc7ba92009-05-15 10:07:43 +02002228
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002229int board_video_skip(void)
2230 __attribute__ ((weak, alias("__board_video_skip")));
2231
2232int drv_video_init(void)
wdenkc6097192002-11-03 00:24:07 +00002233{
wdenk4b248f32004-03-14 16:51:43 +00002234 int skip_dev_init;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +02002235 struct stdio_dev console_dev;
wdenkc6097192002-11-03 00:24:07 +00002236
Wolfgang Denk6cc7ba92009-05-15 10:07:43 +02002237 /* Check if video initialization should be skipped */
2238 if (board_video_skip())
2239 return 0;
2240
wdenk81050922004-07-11 20:04:51 +00002241 /* Init video chip - returns with framebuffer cleared */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002242 skip_dev_init = (video_init() == -1);
wdenk81050922004-07-11 20:04:51 +00002243
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002244#if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
Wolfgang Denk72c65f62011-07-29 09:55:28 +00002245 debug("KBD: Keyboard init ...\n");
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002246 skip_dev_init |= (VIDEO_KBD_INIT_FCT == -1);
2247#endif
wdenkc6097192002-11-03 00:24:07 +00002248
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002249 if (skip_dev_init)
2250 return 0;
wdenkc6097192002-11-03 00:24:07 +00002251
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002252 /* Init vga device */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002253 memset(&console_dev, 0, sizeof(console_dev));
2254 strcpy(console_dev.name, "vga");
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002255 console_dev.ext = DEV_EXT_VIDEO; /* Video extensions */
2256 console_dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_SYSTEM;
2257 console_dev.putc = video_putc; /* 'putc' function */
2258 console_dev.puts = video_puts; /* 'puts' function */
2259 console_dev.tstc = NULL; /* 'tstc' function */
2260 console_dev.getc = NULL; /* 'getc' function */
2261
2262#if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
2263 /* Also init console device */
2264 console_dev.flags |= DEV_FLAGS_INPUT;
2265 console_dev.tstc = VIDEO_TSTC_FCT; /* 'tstc' function */
2266 console_dev.getc = VIDEO_GETC_FCT; /* 'getc' function */
wdenkc6097192002-11-03 00:24:07 +00002267#endif /* CONFIG_VGA_AS_SINGLE_DEVICE */
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002268
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002269 if (stdio_register(&console_dev) != 0)
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002270 return 0;
2271
2272 /* Return success */
2273 return 1;
wdenkc6097192002-11-03 00:24:07 +00002274}
Stefan Reinauerc20ee072012-09-28 15:11:12 +00002275
2276void video_position_cursor(unsigned col, unsigned row)
2277{
2278 console_col = min(col, CONSOLE_COLS - 1);
2279 console_row = min(row, CONSOLE_ROWS - 1);
2280}
2281
2282int video_get_pixel_width(void)
2283{
2284 return VIDEO_VISIBLE_COLS;
2285}
2286
2287int video_get_pixel_height(void)
2288{
2289 return VIDEO_VISIBLE_ROWS;
2290}
2291
2292int video_get_screen_rows(void)
2293{
2294 return CONSOLE_ROWS;
2295}
2296
2297int video_get_screen_columns(void)
2298{
2299 return CONSOLE_COLS;
2300}
2301
2302void video_clear(void)
2303{
Duncan Laurieae630572012-11-03 11:41:40 +00002304 if (!video_fb_address)
2305 return;
Stefan Reinauerc20ee072012-09-28 15:11:12 +00002306#ifdef VIDEO_HW_RECTFILL
2307 video_hw_rectfill(VIDEO_PIXEL_SIZE, /* bytes per pixel */
2308 0, /* dest pos x */
2309 0, /* dest pos y */
2310 VIDEO_VISIBLE_COLS, /* frame width */
2311 VIDEO_VISIBLE_ROWS, /* frame height */
2312 bgx /* fill color */
2313 );
2314#else
2315 memsetl(video_fb_address,
2316 (VIDEO_VISIBLE_ROWS * VIDEO_LINE_LEN) / sizeof(int), bgx);
2317#endif
2318}