blob: 32e890cc7ebb5d06249eff29f4bf72019446dee9 [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
69 * CONFIG_VIDEO_LOGO - display Linux Logo in upper left corner
70 * CONFIG_VIDEO_BMP_LOGO - use bmp_logo instead of linux_logo
71 * CONFIG_CONSOLE_EXTRA_INFO - display additional board information
72 * strings that normaly goes to serial
73 * port. This define requires a board
74 * specific function:
75 * video_drawstring (VIDEO_INFO_X,
76 * VIDEO_INFO_Y + i*VIDEO_FONT_HEIGHT,
77 * info);
78 * that fills a info buffer at i=row.
79 * s.a: board/eltec/bab7xx.
80 * CONFIG_VGA_AS_SINGLE_DEVICE - If set the framebuffer device will be
81 * initialized as an output only device.
82 * The Keyboard driver will not be
83 * set-up. This may be used, if you have
84 * no or more than one Keyboard devices
85 * (USB Keyboard, AT Keyboard).
86 *
87 * CONFIG_VIDEO_SW_CURSOR: - Draws a cursor after the last
88 * character. No blinking is provided.
89 * Uses the macros CURSOR_SET and
90 * CURSOR_OFF.
91 *
92 * CONFIG_VIDEO_HW_CURSOR: - Uses the hardware cursor capability
93 * of the graphic chip. Uses the macro
94 * CURSOR_SET. ATTENTION: If booting an
95 * OS, the display driver must disable
96 * the hardware register of the graphic
97 * chip. Otherwise a blinking field is
98 * displayed.
99 */
wdenkc6097192002-11-03 00:24:07 +0000100
101#include <common.h>
Andreas Bießmann09c2e902011-07-18 20:24:04 +0200102#include <version.h>
wdenka6c7ad22002-12-03 21:28:10 +0000103#include <malloc.h>
Wolfgang Denka9a62af2011-11-04 15:55:20 +0000104#include <linux/compiler.h>
wdenka6c7ad22002-12-03 21:28:10 +0000105
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000106/*
107 * Console device defines with SMI graphic
108 * Any other graphic must change this section
109 */
wdenkc6097192002-11-03 00:24:07 +0000110
wdenk4b248f32004-03-14 16:51:43 +0000111#ifdef CONFIG_VIDEO_SMI_LYNXEM
wdenkc6097192002-11-03 00:24:07 +0000112
113#define VIDEO_FB_LITTLE_ENDIAN
114#define VIDEO_HW_RECTFILL
115#define VIDEO_HW_BITBLT
116#endif
117
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000118/*
119 * Defines for the CT69000 driver
120 */
wdenk4b248f32004-03-14 16:51:43 +0000121#ifdef CONFIG_VIDEO_CT69000
wdenkc6097192002-11-03 00:24:07 +0000122
123#define VIDEO_FB_LITTLE_ENDIAN
124#define VIDEO_HW_RECTFILL
125#define VIDEO_HW_BITBLT
126#endif
127
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000128/*
129 * Defines for the SED13806 driver
130 */
wdenka6c7ad22002-12-03 21:28:10 +0000131#ifdef CONFIG_VIDEO_SED13806
132
wdenk89394042004-08-04 21:56:49 +0000133#ifndef CONFIG_TOTAL5200
wdenka6c7ad22002-12-03 21:28:10 +0000134#define VIDEO_FB_LITTLE_ENDIAN
wdenk89394042004-08-04 21:56:49 +0000135#endif
wdenka6c7ad22002-12-03 21:28:10 +0000136#define VIDEO_HW_RECTFILL
137#define VIDEO_HW_BITBLT
138#endif
139
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000140/*
141 * Defines for the SED13806 driver
142 */
Stefan Roese98f4a3d2005-09-22 09:04:17 +0200143#ifdef CONFIG_VIDEO_SM501
144
145#ifdef CONFIG_HH405
146#define VIDEO_FB_LITTLE_ENDIAN
147#endif
148#endif
149
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000150/*
151 * Defines for the MB862xx driver
152 */
Anatolij Gustschinbed53752008-01-11 14:30:01 +0100153#ifdef CONFIG_VIDEO_MB862xx
154
155#ifdef CONFIG_VIDEO_CORALP
156#define VIDEO_FB_LITTLE_ENDIAN
157#endif
Anatolij Gustschin5d16ca82009-10-23 12:03:14 +0200158#ifdef CONFIG_VIDEO_MB862xx_ACCEL
Anatolij Gustschinbed53752008-01-11 14:30:01 +0100159#define VIDEO_HW_RECTFILL
160#define VIDEO_HW_BITBLT
161#endif
Anatolij Gustschin5d16ca82009-10-23 12:03:14 +0200162#endif
Anatolij Gustschinbed53752008-01-11 14:30:01 +0100163
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000164/*
Helmut Raiger62a22dc2011-10-12 23:16:29 +0000165 * Defines for the i.MX31 driver (mx3fb.c)
166 */
167#ifdef CONFIG_VIDEO_MX3
168#define VIDEO_FB_16BPP_WORD_SWAP
169#endif
170
171/*
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000172 * Include video_fb.h after definitions of VIDEO_HW_RECTFILL etc.
173 */
wdenkc6097192002-11-03 00:24:07 +0000174#include <video_fb.h>
175
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000176/*
177 * some Macros
178 */
wdenk4b248f32004-03-14 16:51:43 +0000179#define VIDEO_VISIBLE_COLS (pGD->winSizeX)
180#define VIDEO_VISIBLE_ROWS (pGD->winSizeY)
181#define VIDEO_PIXEL_SIZE (pGD->gdfBytesPP)
182#define VIDEO_DATA_FORMAT (pGD->gdfIndex)
183#define VIDEO_FB_ADRS (pGD->frameAdrs)
wdenkc6097192002-11-03 00:24:07 +0000184
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000185/*
186 * Console device defines with i8042 keyboard controller
187 * Any other keyboard controller must change this section
188 */
wdenkc6097192002-11-03 00:24:07 +0000189
wdenk4b248f32004-03-14 16:51:43 +0000190#ifdef CONFIG_I8042_KBD
wdenkc6097192002-11-03 00:24:07 +0000191#include <i8042.h>
192
wdenk4b248f32004-03-14 16:51:43 +0000193#define VIDEO_KBD_INIT_FCT i8042_kbd_init()
194#define VIDEO_TSTC_FCT i8042_tstc
195#define VIDEO_GETC_FCT i8042_getc
wdenkc6097192002-11-03 00:24:07 +0000196#endif
197
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000198/*
199 * Console device
200 */
wdenkc6097192002-11-03 00:24:07 +0000201
202#include <version.h>
203#include <linux/types.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200204#include <stdio_dev.h>
wdenkc6097192002-11-03 00:24:07 +0000205#include <video_font.h>
Che-Liang Chioud3983ee2011-10-21 17:04:21 +0800206#include <video_font_data.h>
wdenkc6097192002-11-03 00:24:07 +0000207
Jon Loeligerddb5d86f2007-07-10 11:13:21 -0500208#if defined(CONFIG_CMD_DATE)
209#include <rtc.h>
wdenkc6097192002-11-03 00:24:07 +0000210#endif
211
Jon Loeliger07d38a12007-07-09 17:30:01 -0500212#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
wdenk4b248f32004-03-14 16:51:43 +0000213#include <watchdog.h>
214#include <bmp_layout.h>
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200215
216#ifdef CONFIG_SPLASH_SCREEN_ALIGN
217#define BMP_ALIGN_CENTER 0x7FFF
218#endif
219
Jon Loeliger07d38a12007-07-09 17:30:01 -0500220#endif
wdenk4b248f32004-03-14 16:51:43 +0000221
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000222/*
223 * Cursor definition:
224 * CONFIG_CONSOLE_CURSOR: Uses a timer function (see drivers/input/i8042.c)
225 * to let the cursor blink. Uses the macros
226 * CURSOR_OFF and CURSOR_ON.
227 * CONFIG_VIDEO_SW_CURSOR: Draws a cursor after the last character. No
228 * blinking is provided. Uses the macros CURSOR_SET
229 * and CURSOR_OFF.
230 * CONFIG_VIDEO_HW_CURSOR: Uses the hardware cursor capability of the
231 * graphic chip. Uses the macro CURSOR_SET.
232 * ATTENTION: If booting an OS, the display driver
233 * must disable the hardware register of the graphic
234 * chip. Otherwise a blinking field is displayed
235 */
wdenkc6097192002-11-03 00:24:07 +0000236#if !defined(CONFIG_CONSOLE_CURSOR) && \
237 !defined(CONFIG_VIDEO_SW_CURSOR) && \
238 !defined(CONFIG_VIDEO_HW_CURSOR)
239/* no Cursor defined */
240#define CURSOR_ON
241#define CURSOR_OFF
242#define CURSOR_SET
243#endif
244
wdenk4b248f32004-03-14 16:51:43 +0000245#ifdef CONFIG_CONSOLE_CURSOR
246#ifdef CURSOR_ON
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000247#error only one of CONFIG_CONSOLE_CURSOR, CONFIG_VIDEO_SW_CURSOR, \
248 or CONFIG_VIDEO_HW_CURSOR can be defined
wdenkc6097192002-11-03 00:24:07 +0000249#endif
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000250void console_cursor(int state);
251
Timur Tabi65618632010-08-27 15:45:47 -0500252#define CURSOR_ON console_cursor(1)
253#define CURSOR_OFF console_cursor(0)
wdenkc6097192002-11-03 00:24:07 +0000254#define CURSOR_SET
255#ifndef CONFIG_I8042_KBD
Marcel Ziswiler7817cb22007-12-30 03:30:46 +0100256#warning Cursor drawing on/off needs timer function s.a. drivers/input/i8042.c
wdenkc6097192002-11-03 00:24:07 +0000257#endif
258#else
wdenk4b248f32004-03-14 16:51:43 +0000259#ifdef CONFIG_CONSOLE_TIME
260#error CONFIG_CONSOLE_CURSOR must be defined for CONFIG_CONSOLE_TIME
wdenkc6097192002-11-03 00:24:07 +0000261#endif
262#endif /* CONFIG_CONSOLE_CURSOR */
263
wdenk4b248f32004-03-14 16:51:43 +0000264#ifdef CONFIG_VIDEO_SW_CURSOR
265#ifdef CURSOR_ON
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000266#error only one of CONFIG_CONSOLE_CURSOR, CONFIG_VIDEO_SW_CURSOR, \
267 or CONFIG_VIDEO_HW_CURSOR can be defined
wdenkc6097192002-11-03 00:24:07 +0000268#endif
269#define CURSOR_ON
270#define CURSOR_OFF video_putchar(console_col * VIDEO_FONT_WIDTH,\
Timur Tabi65618632010-08-27 15:45:47 -0500271 console_row * VIDEO_FONT_HEIGHT, ' ')
272#define CURSOR_SET video_set_cursor()
wdenkc6097192002-11-03 00:24:07 +0000273#endif /* CONFIG_VIDEO_SW_CURSOR */
274
275
276#ifdef CONFIG_VIDEO_HW_CURSOR
wdenk4b248f32004-03-14 16:51:43 +0000277#ifdef CURSOR_ON
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000278#error only one of CONFIG_CONSOLE_CURSOR, CONFIG_VIDEO_SW_CURSOR, \
279 or CONFIG_VIDEO_HW_CURSOR can be defined
wdenkc6097192002-11-03 00:24:07 +0000280#endif
281#define CURSOR_ON
282#define CURSOR_OFF
283#define CURSOR_SET video_set_hw_cursor(console_col * VIDEO_FONT_WIDTH, \
Timur Tabi65618632010-08-27 15:45:47 -0500284 (console_row * VIDEO_FONT_HEIGHT) + video_logo_height)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000285#endif /* CONFIG_VIDEO_HW_CURSOR */
wdenkc6097192002-11-03 00:24:07 +0000286
wdenk4b248f32004-03-14 16:51:43 +0000287#ifdef CONFIG_VIDEO_LOGO
288#ifdef CONFIG_VIDEO_BMP_LOGO
wdenka6c7ad22002-12-03 21:28:10 +0000289#include <bmp_logo.h>
Che-Liang Chiouc2707302011-10-20 23:04:20 +0000290#include <bmp_logo_data.h>
wdenk4b248f32004-03-14 16:51:43 +0000291#define VIDEO_LOGO_WIDTH BMP_LOGO_WIDTH
292#define VIDEO_LOGO_HEIGHT BMP_LOGO_HEIGHT
293#define VIDEO_LOGO_LUT_OFFSET BMP_LOGO_OFFSET
294#define VIDEO_LOGO_COLORS BMP_LOGO_COLORS
wdenka6c7ad22002-12-03 21:28:10 +0000295
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000296#else /* CONFIG_VIDEO_BMP_LOGO */
wdenk4b248f32004-03-14 16:51:43 +0000297#define LINUX_LOGO_WIDTH 80
298#define LINUX_LOGO_HEIGHT 80
299#define LINUX_LOGO_COLORS 214
300#define LINUX_LOGO_LUT_OFFSET 0x20
wdenkc6097192002-11-03 00:24:07 +0000301#define __initdata
302#include <linux_logo.h>
wdenk4b248f32004-03-14 16:51:43 +0000303#define VIDEO_LOGO_WIDTH LINUX_LOGO_WIDTH
304#define VIDEO_LOGO_HEIGHT LINUX_LOGO_HEIGHT
305#define VIDEO_LOGO_LUT_OFFSET LINUX_LOGO_LUT_OFFSET
306#define VIDEO_LOGO_COLORS LINUX_LOGO_COLORS
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000307#endif /* CONFIG_VIDEO_BMP_LOGO */
wdenk4b248f32004-03-14 16:51:43 +0000308#define VIDEO_INFO_X (VIDEO_LOGO_WIDTH)
309#define VIDEO_INFO_Y (VIDEO_FONT_HEIGHT/2)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000310#else /* CONFIG_VIDEO_LOGO */
wdenk4b248f32004-03-14 16:51:43 +0000311#define VIDEO_LOGO_WIDTH 0
312#define VIDEO_LOGO_HEIGHT 0
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000313#endif /* CONFIG_VIDEO_LOGO */
wdenkc6097192002-11-03 00:24:07 +0000314
wdenk4b248f32004-03-14 16:51:43 +0000315#define VIDEO_COLS VIDEO_VISIBLE_COLS
316#define VIDEO_ROWS VIDEO_VISIBLE_ROWS
317#define VIDEO_SIZE (VIDEO_ROWS*VIDEO_COLS*VIDEO_PIXEL_SIZE)
318#define VIDEO_PIX_BLOCKS (VIDEO_SIZE >> 2)
319#define VIDEO_LINE_LEN (VIDEO_COLS*VIDEO_PIXEL_SIZE)
320#define VIDEO_BURST_LEN (VIDEO_COLS/8)
wdenkc6097192002-11-03 00:24:07 +0000321
wdenk4b248f32004-03-14 16:51:43 +0000322#ifdef CONFIG_VIDEO_LOGO
Matthias Weisserbe129aa2010-01-12 12:06:31 +0100323#define CONSOLE_ROWS ((VIDEO_ROWS - video_logo_height) / VIDEO_FONT_HEIGHT)
wdenkc6097192002-11-03 00:24:07 +0000324#else
wdenk4b248f32004-03-14 16:51:43 +0000325#define CONSOLE_ROWS (VIDEO_ROWS / VIDEO_FONT_HEIGHT)
wdenkc6097192002-11-03 00:24:07 +0000326#endif
327
wdenk4b248f32004-03-14 16:51:43 +0000328#define CONSOLE_COLS (VIDEO_COLS / VIDEO_FONT_WIDTH)
329#define CONSOLE_ROW_SIZE (VIDEO_FONT_HEIGHT * VIDEO_LINE_LEN)
330#define CONSOLE_ROW_FIRST (video_console_address)
331#define CONSOLE_ROW_SECOND (video_console_address + CONSOLE_ROW_SIZE)
332#define CONSOLE_ROW_LAST (video_console_address + CONSOLE_SIZE - CONSOLE_ROW_SIZE)
333#define CONSOLE_SIZE (CONSOLE_ROW_SIZE * CONSOLE_ROWS)
334#define CONSOLE_SCROLL_SIZE (CONSOLE_SIZE - CONSOLE_ROW_SIZE)
wdenkc6097192002-11-03 00:24:07 +0000335
336/* Macros */
wdenk4b248f32004-03-14 16:51:43 +0000337#ifdef VIDEO_FB_LITTLE_ENDIAN
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000338#define SWAP16(x) ((((x) & 0x00ff) << 8) | \
339 ((x) >> 8) \
340 )
341#define SWAP32(x) ((((x) & 0x000000ff) << 24) | \
342 (((x) & 0x0000ff00) << 8) | \
343 (((x) & 0x00ff0000) >> 8) | \
344 (((x) & 0xff000000) >> 24) \
345 )
346#define SHORTSWAP32(x) ((((x) & 0x000000ff) << 8) | \
347 (((x) & 0x0000ff00) >> 8) | \
348 (((x) & 0x00ff0000) << 8) | \
349 (((x) & 0xff000000) >> 8) \
350 )
wdenkc6097192002-11-03 00:24:07 +0000351#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000352#define SWAP16(x) (x)
353#define SWAP32(x) (x)
Wolfgang Grandegger229b6dc2009-10-23 12:03:15 +0200354#if defined(VIDEO_FB_16BPP_WORD_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000355#define SHORTSWAP32(x) (((x) >> 16) | ((x) << 16))
Andrew Dyercc347802008-08-29 12:30:39 -0500356#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000357#define SHORTSWAP32(x) (x)
Anatolij Gustschinbed53752008-01-11 14:30:01 +0100358#endif
wdenkc6097192002-11-03 00:24:07 +0000359#endif
360
wdenkc6097192002-11-03 00:24:07 +0000361#ifdef CONFIG_CONSOLE_EXTRA_INFO
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000362/*
363 * setup a board string: type, speed, etc.
364 *
365 * line_number: location to place info string beside logo
366 * info: buffer for info string
367 */
368extern void video_get_info_str(int line_number, char *info);
wdenkc6097192002-11-03 00:24:07 +0000369#endif
370
371/* 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
Wolfgang Denk57912932011-07-30 12:48:09 +0000379static int console_col; /* cursor col */
380static int console_row; /* cursor row */
wdenkc6097192002-11-03 00:24:07 +0000381
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000382static u32 eorx, fgx, bgx; /* color pats */
wdenkc6097192002-11-03 00:24:07 +0000383
384static const int video_font_draw_table8[] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000385 0x00000000, 0x000000ff, 0x0000ff00, 0x0000ffff,
386 0x00ff0000, 0x00ff00ff, 0x00ffff00, 0x00ffffff,
387 0xff000000, 0xff0000ff, 0xff00ff00, 0xff00ffff,
388 0xffff0000, 0xffff00ff, 0xffffff00, 0xffffffff
389};
wdenkc6097192002-11-03 00:24:07 +0000390
391static const int video_font_draw_table15[] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000392 0x00000000, 0x00007fff, 0x7fff0000, 0x7fff7fff
393};
wdenkc6097192002-11-03 00:24:07 +0000394
395static const int video_font_draw_table16[] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000396 0x00000000, 0x0000ffff, 0xffff0000, 0xffffffff
397};
wdenkc6097192002-11-03 00:24:07 +0000398
399static const int video_font_draw_table24[16][3] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000400 {0x00000000, 0x00000000, 0x00000000},
401 {0x00000000, 0x00000000, 0x00ffffff},
402 {0x00000000, 0x0000ffff, 0xff000000},
403 {0x00000000, 0x0000ffff, 0xffffffff},
404 {0x000000ff, 0xffff0000, 0x00000000},
405 {0x000000ff, 0xffff0000, 0x00ffffff},
406 {0x000000ff, 0xffffffff, 0xff000000},
407 {0x000000ff, 0xffffffff, 0xffffffff},
408 {0xffffff00, 0x00000000, 0x00000000},
409 {0xffffff00, 0x00000000, 0x00ffffff},
410 {0xffffff00, 0x0000ffff, 0xff000000},
411 {0xffffff00, 0x0000ffff, 0xffffffff},
412 {0xffffffff, 0xffff0000, 0x00000000},
413 {0xffffffff, 0xffff0000, 0x00ffffff},
414 {0xffffffff, 0xffffffff, 0xff000000},
415 {0xffffffff, 0xffffffff, 0xffffffff}
416};
wdenkc6097192002-11-03 00:24:07 +0000417
418static const int video_font_draw_table32[16][4] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000419 {0x00000000, 0x00000000, 0x00000000, 0x00000000},
420 {0x00000000, 0x00000000, 0x00000000, 0x00ffffff},
421 {0x00000000, 0x00000000, 0x00ffffff, 0x00000000},
422 {0x00000000, 0x00000000, 0x00ffffff, 0x00ffffff},
423 {0x00000000, 0x00ffffff, 0x00000000, 0x00000000},
424 {0x00000000, 0x00ffffff, 0x00000000, 0x00ffffff},
425 {0x00000000, 0x00ffffff, 0x00ffffff, 0x00000000},
426 {0x00000000, 0x00ffffff, 0x00ffffff, 0x00ffffff},
427 {0x00ffffff, 0x00000000, 0x00000000, 0x00000000},
428 {0x00ffffff, 0x00000000, 0x00000000, 0x00ffffff},
429 {0x00ffffff, 0x00000000, 0x00ffffff, 0x00000000},
430 {0x00ffffff, 0x00000000, 0x00ffffff, 0x00ffffff},
431 {0x00ffffff, 0x00ffffff, 0x00000000, 0x00000000},
432 {0x00ffffff, 0x00ffffff, 0x00000000, 0x00ffffff},
433 {0x00ffffff, 0x00ffffff, 0x00ffffff, 0x00000000},
434 {0x00ffffff, 0x00ffffff, 0x00ffffff, 0x00ffffff}
435};
wdenkc6097192002-11-03 00:24:07 +0000436
437
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000438static void video_drawchars(int xx, int yy, unsigned char *s, int count)
wdenkc6097192002-11-03 00:24:07 +0000439{
wdenk4b248f32004-03-14 16:51:43 +0000440 u8 *cdat, *dest, *dest0;
441 int rows, offset, c;
wdenkc6097192002-11-03 00:24:07 +0000442
wdenk4b248f32004-03-14 16:51:43 +0000443 offset = yy * VIDEO_LINE_LEN + xx * VIDEO_PIXEL_SIZE;
444 dest0 = video_fb_address + offset;
wdenkc6097192002-11-03 00:24:07 +0000445
wdenk4b248f32004-03-14 16:51:43 +0000446 switch (VIDEO_DATA_FORMAT) {
447 case GDF__8BIT_INDEX:
448 case GDF__8BIT_332RGB:
449 while (count--) {
450 c = *s;
451 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
452 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000453 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000454 u8 bits = *cdat++;
wdenkc6097192002-11-03 00:24:07 +0000455
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000456 ((u32 *) dest)[0] =
457 (video_font_draw_table8[bits >> 4] &
458 eorx) ^ bgx;
459 ((u32 *) dest)[1] =
460 (video_font_draw_table8[bits & 15] &
461 eorx) ^ bgx;
wdenk4b248f32004-03-14 16:51:43 +0000462 }
463 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
464 s++;
465 }
466 break;
wdenkc6097192002-11-03 00:24:07 +0000467
wdenk4b248f32004-03-14 16:51:43 +0000468 case GDF_15BIT_555RGB:
469 while (count--) {
470 c = *s;
471 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
472 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000473 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000474 u8 bits = *cdat++;
wdenkc6097192002-11-03 00:24:07 +0000475
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000476 ((u32 *) dest)[0] =
477 SHORTSWAP32((video_font_draw_table15
478 [bits >> 6] & eorx) ^
479 bgx);
480 ((u32 *) dest)[1] =
481 SHORTSWAP32((video_font_draw_table15
482 [bits >> 4 & 3] & eorx) ^
483 bgx);
484 ((u32 *) dest)[2] =
485 SHORTSWAP32((video_font_draw_table15
486 [bits >> 2 & 3] & eorx) ^
487 bgx);
488 ((u32 *) dest)[3] =
489 SHORTSWAP32((video_font_draw_table15
490 [bits & 3] & eorx) ^
491 bgx);
wdenk4b248f32004-03-14 16:51:43 +0000492 }
493 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
494 s++;
495 }
496 break;
wdenkc6097192002-11-03 00:24:07 +0000497
wdenk4b248f32004-03-14 16:51:43 +0000498 case GDF_16BIT_565RGB:
499 while (count--) {
500 c = *s;
501 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
502 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000503 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000504 u8 bits = *cdat++;
505
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000506 ((u32 *) dest)[0] =
507 SHORTSWAP32((video_font_draw_table16
508 [bits >> 6] & eorx) ^
509 bgx);
510 ((u32 *) dest)[1] =
511 SHORTSWAP32((video_font_draw_table16
512 [bits >> 4 & 3] & eorx) ^
513 bgx);
514 ((u32 *) dest)[2] =
515 SHORTSWAP32((video_font_draw_table16
516 [bits >> 2 & 3] & eorx) ^
517 bgx);
518 ((u32 *) dest)[3] =
519 SHORTSWAP32((video_font_draw_table16
520 [bits & 3] & eorx) ^
521 bgx);
wdenk4b248f32004-03-14 16:51:43 +0000522 }
523 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
524 s++;
525 }
526 break;
527
528 case GDF_32BIT_X888RGB:
529 while (count--) {
530 c = *s;
531 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
532 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000533 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000534 u8 bits = *cdat++;
535
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000536 ((u32 *) dest)[0] =
537 SWAP32((video_font_draw_table32
538 [bits >> 4][0] & eorx) ^ bgx);
539 ((u32 *) dest)[1] =
540 SWAP32((video_font_draw_table32
541 [bits >> 4][1] & eorx) ^ bgx);
542 ((u32 *) dest)[2] =
543 SWAP32((video_font_draw_table32
544 [bits >> 4][2] & eorx) ^ bgx);
545 ((u32 *) dest)[3] =
546 SWAP32((video_font_draw_table32
547 [bits >> 4][3] & eorx) ^ bgx);
548 ((u32 *) dest)[4] =
549 SWAP32((video_font_draw_table32
550 [bits & 15][0] & eorx) ^ bgx);
551 ((u32 *) dest)[5] =
552 SWAP32((video_font_draw_table32
553 [bits & 15][1] & eorx) ^ bgx);
554 ((u32 *) dest)[6] =
555 SWAP32((video_font_draw_table32
556 [bits & 15][2] & eorx) ^ bgx);
557 ((u32 *) dest)[7] =
558 SWAP32((video_font_draw_table32
559 [bits & 15][3] & eorx) ^ bgx);
wdenk4b248f32004-03-14 16:51:43 +0000560 }
561 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
562 s++;
563 }
564 break;
565
566 case GDF_24BIT_888RGB:
567 while (count--) {
568 c = *s;
569 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
570 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000571 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000572 u8 bits = *cdat++;
573
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000574 ((u32 *) dest)[0] =
575 (video_font_draw_table24[bits >> 4][0]
576 & eorx) ^ bgx;
577 ((u32 *) dest)[1] =
578 (video_font_draw_table24[bits >> 4][1]
579 & eorx) ^ bgx;
580 ((u32 *) dest)[2] =
581 (video_font_draw_table24[bits >> 4][2]
582 & eorx) ^ bgx;
583 ((u32 *) dest)[3] =
584 (video_font_draw_table24[bits & 15][0]
585 & eorx) ^ bgx;
586 ((u32 *) dest)[4] =
587 (video_font_draw_table24[bits & 15][1]
588 & eorx) ^ bgx;
589 ((u32 *) dest)[5] =
590 (video_font_draw_table24[bits & 15][2]
591 & eorx) ^ bgx;
wdenk4b248f32004-03-14 16:51:43 +0000592 }
593 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
594 s++;
595 }
596 break;
wdenk8bde7f72003-06-27 21:31:46 +0000597 }
wdenkc6097192002-11-03 00:24:07 +0000598}
599
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000600static inline void video_drawstring(int xx, int yy, unsigned char *s)
wdenkc6097192002-11-03 00:24:07 +0000601{
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000602 video_drawchars(xx, yy, s, strlen((char *) s));
wdenkc6097192002-11-03 00:24:07 +0000603}
604
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000605static void video_putchar(int xx, int yy, unsigned char c)
wdenkc6097192002-11-03 00:24:07 +0000606{
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000607 video_drawchars(xx, yy + video_logo_height, &c, 1);
wdenkc6097192002-11-03 00:24:07 +0000608}
609
wdenkc6097192002-11-03 00:24:07 +0000610#if defined(CONFIG_CONSOLE_CURSOR) || defined(CONFIG_VIDEO_SW_CURSOR)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000611static void video_set_cursor(void)
wdenkc6097192002-11-03 00:24:07 +0000612{
wdenk4b248f32004-03-14 16:51:43 +0000613 /* swap drawing colors */
614 eorx = fgx;
615 fgx = bgx;
616 bgx = eorx;
617 eorx = fgx ^ bgx;
618 /* draw cursor */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000619 video_putchar(console_col * VIDEO_FONT_WIDTH,
620 console_row * VIDEO_FONT_HEIGHT, ' ');
wdenk4b248f32004-03-14 16:51:43 +0000621 /* restore drawing colors */
622 eorx = fgx;
623 fgx = bgx;
624 bgx = eorx;
625 eorx = fgx ^ bgx;
wdenkc6097192002-11-03 00:24:07 +0000626}
627#endif
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000628
wdenkc6097192002-11-03 00:24:07 +0000629#ifdef CONFIG_CONSOLE_CURSOR
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000630void console_cursor(int state)
wdenkc6097192002-11-03 00:24:07 +0000631{
wdenk4b248f32004-03-14 16:51:43 +0000632 static int last_state = 0;
633
wdenkc6097192002-11-03 00:24:07 +0000634#ifdef CONFIG_CONSOLE_TIME
wdenk4b248f32004-03-14 16:51:43 +0000635 struct rtc_time tm;
636 char info[16];
wdenkc6097192002-11-03 00:24:07 +0000637
wdenk4b248f32004-03-14 16:51:43 +0000638 /* time update only if cursor is on (faster scroll) */
639 if (state) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000640 rtc_get(&tm);
wdenkc6097192002-11-03 00:24:07 +0000641
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000642 sprintf(info, " %02d:%02d:%02d ", tm.tm_hour, tm.tm_min,
643 tm.tm_sec);
644 video_drawstring(VIDEO_VISIBLE_COLS - 10 * VIDEO_FONT_WIDTH,
645 VIDEO_INFO_Y, (uchar *) info);
wdenkc6097192002-11-03 00:24:07 +0000646
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000647 sprintf(info, "%02d.%02d.%04d", tm.tm_mday, tm.tm_mon,
648 tm.tm_year);
649 video_drawstring(VIDEO_VISIBLE_COLS - 10 * VIDEO_FONT_WIDTH,
650 VIDEO_INFO_Y + 1 * VIDEO_FONT_HEIGHT,
651 (uchar *) info);
wdenk4b248f32004-03-14 16:51:43 +0000652 }
wdenkc6097192002-11-03 00:24:07 +0000653#endif
654
wdenk4b248f32004-03-14 16:51:43 +0000655 if (state && (last_state != state)) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000656 video_set_cursor();
wdenk4b248f32004-03-14 16:51:43 +0000657 }
wdenkc6097192002-11-03 00:24:07 +0000658
wdenk4b248f32004-03-14 16:51:43 +0000659 if (!state && (last_state != state)) {
660 /* clear cursor */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000661 video_putchar(console_col * VIDEO_FONT_WIDTH,
662 console_row * VIDEO_FONT_HEIGHT, ' ');
wdenk4b248f32004-03-14 16:51:43 +0000663 }
wdenkc6097192002-11-03 00:24:07 +0000664
wdenk4b248f32004-03-14 16:51:43 +0000665 last_state = state;
wdenkc6097192002-11-03 00:24:07 +0000666}
667#endif
668
wdenkc6097192002-11-03 00:24:07 +0000669#ifndef VIDEO_HW_RECTFILL
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000670static void memsetl(int *p, int c, int v)
wdenkc6097192002-11-03 00:24:07 +0000671{
wdenk4b248f32004-03-14 16:51:43 +0000672 while (c--)
673 *(p++) = v;
wdenkc6097192002-11-03 00:24:07 +0000674}
675#endif
676
wdenkc6097192002-11-03 00:24:07 +0000677#ifndef VIDEO_HW_BITBLT
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000678static void memcpyl(int *d, int *s, int c)
wdenkc6097192002-11-03 00:24:07 +0000679{
wdenk4b248f32004-03-14 16:51:43 +0000680 while (c--)
681 *(d++) = *(s++);
wdenkc6097192002-11-03 00:24:07 +0000682}
683#endif
684
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000685static void console_scrollup(void)
wdenkc6097192002-11-03 00:24:07 +0000686{
wdenk4b248f32004-03-14 16:51:43 +0000687 /* copy up rows ignoring the first one */
wdenkc6097192002-11-03 00:24:07 +0000688
689#ifdef VIDEO_HW_BITBLT
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000690 video_hw_bitblt(VIDEO_PIXEL_SIZE, /* bytes per pixel */
691 0, /* source pos x */
692 video_logo_height +
693 VIDEO_FONT_HEIGHT, /* source pos y */
694 0, /* dest pos x */
695 video_logo_height, /* dest pos y */
696 VIDEO_VISIBLE_COLS, /* frame width */
697 VIDEO_VISIBLE_ROWS
698 - video_logo_height
699 - VIDEO_FONT_HEIGHT /* frame height */
wdenk4b248f32004-03-14 16:51:43 +0000700 );
wdenkc6097192002-11-03 00:24:07 +0000701#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000702 memcpyl(CONSOLE_ROW_FIRST, CONSOLE_ROW_SECOND,
703 CONSOLE_SCROLL_SIZE >> 2);
wdenkc6097192002-11-03 00:24:07 +0000704#endif
705
wdenk4b248f32004-03-14 16:51:43 +0000706 /* clear the last one */
wdenkc6097192002-11-03 00:24:07 +0000707#ifdef VIDEO_HW_RECTFILL
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000708 video_hw_rectfill(VIDEO_PIXEL_SIZE, /* bytes per pixel */
709 0, /* dest pos x */
710 VIDEO_VISIBLE_ROWS
711 - VIDEO_FONT_HEIGHT, /* dest pos y */
712 VIDEO_VISIBLE_COLS, /* frame width */
713 VIDEO_FONT_HEIGHT, /* frame height */
714 CONSOLE_BG_COL /* fill color */
wdenk4b248f32004-03-14 16:51:43 +0000715 );
wdenkc6097192002-11-03 00:24:07 +0000716#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000717 memsetl(CONSOLE_ROW_LAST, CONSOLE_ROW_SIZE >> 2, CONSOLE_BG_COL);
wdenkc6097192002-11-03 00:24:07 +0000718#endif
719}
720
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000721static void console_back(void)
wdenkc6097192002-11-03 00:24:07 +0000722{
Timur Tabi65618632010-08-27 15:45:47 -0500723 CURSOR_OFF;
724 console_col--;
wdenkc6097192002-11-03 00:24:07 +0000725
wdenk4b248f32004-03-14 16:51:43 +0000726 if (console_col < 0) {
727 console_col = CONSOLE_COLS - 1;
728 console_row--;
729 if (console_row < 0)
730 console_row = 0;
731 }
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000732 video_putchar(console_col * VIDEO_FONT_WIDTH,
733 console_row * VIDEO_FONT_HEIGHT, ' ');
wdenkc6097192002-11-03 00:24:07 +0000734}
735
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000736static void console_newline(void)
wdenkc6097192002-11-03 00:24:07 +0000737{
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100738 /* Check if last character in the line was just drawn. If so, cursor was
739 overwriten and need not to be cleared. Cursor clearing without this
740 check causes overwriting the 1st character of the line if line lenght
741 is >= CONSOLE_COLS
742 */
743 if (console_col < CONSOLE_COLS)
Timur Tabi65618632010-08-27 15:45:47 -0500744 CURSOR_OFF;
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100745 console_row++;
wdenk4b248f32004-03-14 16:51:43 +0000746 console_col = 0;
wdenkc6097192002-11-03 00:24:07 +0000747
wdenk4b248f32004-03-14 16:51:43 +0000748 /* Check if we need to scroll the terminal */
749 if (console_row >= CONSOLE_ROWS) {
750 /* Scroll everything up */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000751 console_scrollup();
wdenkc6097192002-11-03 00:24:07 +0000752
wdenk4b248f32004-03-14 16:51:43 +0000753 /* Decrement row number */
754 console_row--;
755 }
wdenkc6097192002-11-03 00:24:07 +0000756}
757
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000758static void console_cr(void)
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100759{
Timur Tabi65618632010-08-27 15:45:47 -0500760 CURSOR_OFF;
761 console_col = 0;
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100762}
763
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000764void video_putc(const char c)
wdenkc6097192002-11-03 00:24:07 +0000765{
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100766 static int nl = 1;
767
wdenk4b248f32004-03-14 16:51:43 +0000768 switch (c) {
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100769 case 13: /* back to first column */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000770 console_cr();
wdenk4b248f32004-03-14 16:51:43 +0000771 break;
wdenkc6097192002-11-03 00:24:07 +0000772
wdenk4b248f32004-03-14 16:51:43 +0000773 case '\n': /* next line */
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100774 if (console_col || (!console_col && nl))
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000775 console_newline();
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100776 nl = 1;
wdenk4b248f32004-03-14 16:51:43 +0000777 break;
wdenkc6097192002-11-03 00:24:07 +0000778
wdenk4b248f32004-03-14 16:51:43 +0000779 case 9: /* tab 8 */
Timur Tabi65618632010-08-27 15:45:47 -0500780 CURSOR_OFF;
781 console_col |= 0x0008;
wdenk4b248f32004-03-14 16:51:43 +0000782 console_col &= ~0x0007;
wdenkc6097192002-11-03 00:24:07 +0000783
wdenk4b248f32004-03-14 16:51:43 +0000784 if (console_col >= CONSOLE_COLS)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000785 console_newline();
wdenk4b248f32004-03-14 16:51:43 +0000786 break;
wdenkc6097192002-11-03 00:24:07 +0000787
wdenk4b248f32004-03-14 16:51:43 +0000788 case 8: /* backspace */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000789 console_back();
wdenk4b248f32004-03-14 16:51:43 +0000790 break;
wdenkc6097192002-11-03 00:24:07 +0000791
wdenk4b248f32004-03-14 16:51:43 +0000792 default: /* draw the char */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000793 video_putchar(console_col * VIDEO_FONT_WIDTH,
794 console_row * VIDEO_FONT_HEIGHT, c);
wdenk4b248f32004-03-14 16:51:43 +0000795 console_col++;
wdenkc6097192002-11-03 00:24:07 +0000796
wdenk4b248f32004-03-14 16:51:43 +0000797 /* check for newline */
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100798 if (console_col >= CONSOLE_COLS) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000799 console_newline();
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100800 nl = 0;
801 }
wdenk4b248f32004-03-14 16:51:43 +0000802 }
Timur Tabi65618632010-08-27 15:45:47 -0500803 CURSOR_SET;
804}
wdenkc6097192002-11-03 00:24:07 +0000805
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000806void video_puts(const char *s)
wdenkc6097192002-11-03 00:24:07 +0000807{
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000808 int count = strlen(s);
wdenkc6097192002-11-03 00:24:07 +0000809
wdenk4b248f32004-03-14 16:51:43 +0000810 while (count--)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000811 video_putc(*s++);
wdenkc6097192002-11-03 00:24:07 +0000812}
813
Anatolij Gustschin10543822010-05-01 22:21:09 +0200814/*
815 * Do not enforce drivers (or board code) to provide empty
816 * video_set_lut() if they do not support 8 bpp format.
817 * Implement weak default function instead.
818 */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000819void __video_set_lut(unsigned int index, unsigned char r,
820 unsigned char g, unsigned char b)
Anatolij Gustschin10543822010-05-01 22:21:09 +0200821{
822}
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000823
824void video_set_lut(unsigned int, unsigned char, unsigned char, unsigned char)
825 __attribute__ ((weak, alias("__video_set_lut")));
Anatolij Gustschin10543822010-05-01 22:21:09 +0200826
Jon Loeliger07d38a12007-07-09 17:30:01 -0500827#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
wdenk4b248f32004-03-14 16:51:43 +0000828
829#define FILL_8BIT_332RGB(r,g,b) { \
830 *fb = ((r>>5)<<5) | ((g>>5)<<2) | (b>>6); \
831 fb ++; \
832}
833
834#define FILL_15BIT_555RGB(r,g,b) { \
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000835 *(unsigned short *)fb = \
836 SWAP16((unsigned short)(((r>>3)<<10) | \
837 ((g>>3)<<5) | \
838 (b>>3))); \
wdenk4b248f32004-03-14 16:51:43 +0000839 fb += 2; \
840}
841
842#define FILL_16BIT_565RGB(r,g,b) { \
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000843 *(unsigned short *)fb = \
844 SWAP16((unsigned short)((((r)>>3)<<11)| \
845 (((g)>>2)<<5) | \
846 ((b)>>3))); \
wdenk4b248f32004-03-14 16:51:43 +0000847 fb += 2; \
848}
849
850#define FILL_32BIT_X888RGB(r,g,b) { \
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000851 *(unsigned long *)fb = \
852 SWAP32((unsigned long)(((r<<16) | \
853 (g<<8) | \
854 b))); \
wdenk4b248f32004-03-14 16:51:43 +0000855 fb += 4; \
856}
857
858#ifdef VIDEO_FB_LITTLE_ENDIAN
859#define FILL_24BIT_888RGB(r,g,b) { \
860 fb[0] = b; \
861 fb[1] = g; \
862 fb[2] = r; \
863 fb += 3; \
864}
865#else
866#define FILL_24BIT_888RGB(r,g,b) { \
867 fb[0] = r; \
868 fb[1] = g; \
869 fb[2] = b; \
870 fb += 3; \
871}
872#endif
873
Anatolij Gustschine84d5682008-08-08 18:00:40 +0200874#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000875static inline void fill_555rgb_pswap(uchar *fb, int x, u8 r, u8 g, u8 b)
Anatolij Gustschine84d5682008-08-08 18:00:40 +0200876{
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000877 ushort *dst = (ushort *) fb;
878 ushort color = (ushort) (((r >> 3) << 10) |
879 ((g >> 3) << 5) |
880 (b >> 3));
Anatolij Gustschine84d5682008-08-08 18:00:40 +0200881 if (x & 1)
882 *(--dst) = color;
883 else
884 *(++dst) = color;
885}
886#endif
wdenk4b248f32004-03-14 16:51:43 +0000887
888/*
Anatolij Gustschind5011762010-03-15 14:50:25 +0100889 * RLE8 bitmap support
890 */
891
892#ifdef CONFIG_VIDEO_BMP_RLE8
893/* Pre-calculated color table entry */
894struct palette {
895 union {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000896 unsigned short w; /* word */
897 unsigned int dw; /* double word */
898 } ce; /* color entry */
Anatolij Gustschind5011762010-03-15 14:50:25 +0100899};
900
901/*
902 * Helper to draw encoded/unencoded run.
903 */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000904static void draw_bitmap(uchar **fb, uchar *bm, struct palette *p,
905 int cnt, int enc)
Anatolij Gustschind5011762010-03-15 14:50:25 +0100906{
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000907 ulong addr = (ulong) *fb;
Anatolij Gustschind5011762010-03-15 14:50:25 +0100908 int *off;
909 int enc_off = 1;
910 int i;
911
912 /*
913 * Setup offset of the color index in the bitmap.
914 * Color index of encoded run is at offset 1.
915 */
916 off = enc ? &enc_off : &i;
917
918 switch (VIDEO_DATA_FORMAT) {
919 case GDF__8BIT_INDEX:
920 for (i = 0; i < cnt; i++)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000921 *(unsigned char *) addr++ = bm[*off];
Anatolij Gustschind5011762010-03-15 14:50:25 +0100922 break;
923 case GDF_15BIT_555RGB:
924 case GDF_16BIT_565RGB:
925 /* differences handled while pre-calculating palette */
926 for (i = 0; i < cnt; i++) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000927 *(unsigned short *) addr = p[bm[*off]].ce.w;
Anatolij Gustschind5011762010-03-15 14:50:25 +0100928 addr += 2;
929 }
930 break;
931 case GDF_32BIT_X888RGB:
932 for (i = 0; i < cnt; i++) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000933 *(unsigned long *) addr = p[bm[*off]].ce.dw;
Anatolij Gustschind5011762010-03-15 14:50:25 +0100934 addr += 4;
935 }
936 break;
937 }
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000938 *fb = (uchar *) addr; /* return modified address */
Anatolij Gustschind5011762010-03-15 14:50:25 +0100939}
940
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000941static int display_rle8_bitmap(bmp_image_t *img, int xoff, int yoff,
942 int width, int height)
Anatolij Gustschind5011762010-03-15 14:50:25 +0100943{
944 unsigned char *bm;
945 unsigned char *fbp;
946 unsigned int cnt, runlen;
947 int decode = 1;
948 int x, y, bpp, i, ncolors;
949 struct palette p[256];
950 bmp_color_table_entry_t cte;
951 int green_shift, red_off;
Anatolij Gustschin74446b62011-02-21 21:33:29 +0100952 int limit = VIDEO_COLS * VIDEO_ROWS;
953 int pixels = 0;
Anatolij Gustschind5011762010-03-15 14:50:25 +0100954
955 x = 0;
956 y = __le32_to_cpu(img->header.height) - 1;
957 ncolors = __le32_to_cpu(img->header.colors_used);
958 bpp = VIDEO_PIXEL_SIZE;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000959 fbp = (unsigned char *) ((unsigned int) video_fb_address +
960 (((y + yoff) * VIDEO_COLS) + xoff) * bpp);
Anatolij Gustschind5011762010-03-15 14:50:25 +0100961
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000962 bm = (uchar *) img + __le32_to_cpu(img->header.data_offset);
Anatolij Gustschind5011762010-03-15 14:50:25 +0100963
964 /* pre-calculate and setup palette */
965 switch (VIDEO_DATA_FORMAT) {
966 case GDF__8BIT_INDEX:
967 for (i = 0; i < ncolors; i++) {
968 cte = img->color_table[i];
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000969 video_set_lut(i, cte.red, cte.green, cte.blue);
Anatolij Gustschind5011762010-03-15 14:50:25 +0100970 }
971 break;
972 case GDF_15BIT_555RGB:
973 case GDF_16BIT_565RGB:
974 if (VIDEO_DATA_FORMAT == GDF_15BIT_555RGB) {
975 green_shift = 3;
976 red_off = 10;
977 } else {
978 green_shift = 2;
979 red_off = 11;
980 }
981 for (i = 0; i < ncolors; i++) {
982 cte = img->color_table[i];
983 p[i].ce.w = SWAP16((unsigned short)
984 (((cte.red >> 3) << red_off) |
985 ((cte.green >> green_shift) << 5) |
986 cte.blue >> 3));
987 }
988 break;
989 case GDF_32BIT_X888RGB:
990 for (i = 0; i < ncolors; i++) {
991 cte = img->color_table[i];
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000992 p[i].ce.dw = SWAP32((cte.red << 16) |
993 (cte.green << 8) |
Anatolij Gustschind5011762010-03-15 14:50:25 +0100994 cte.blue);
995 }
996 break;
997 default:
998 printf("RLE Bitmap unsupported in video mode 0x%x\n",
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000999 VIDEO_DATA_FORMAT);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001000 return -1;
1001 }
1002
1003 while (decode) {
1004 switch (bm[0]) {
1005 case 0:
1006 switch (bm[1]) {
1007 case 0:
1008 /* scan line end marker */
1009 bm += 2;
1010 x = 0;
1011 y--;
1012 fbp = (unsigned char *)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001013 ((unsigned int) video_fb_address +
Anatolij Gustschind5011762010-03-15 14:50:25 +01001014 (((y + yoff) * VIDEO_COLS) +
1015 xoff) * bpp);
1016 continue;
1017 case 1:
1018 /* end of bitmap data marker */
1019 decode = 0;
1020 break;
1021 case 2:
1022 /* run offset marker */
1023 x += bm[2];
1024 y -= bm[3];
1025 fbp = (unsigned char *)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001026 ((unsigned int) video_fb_address +
Anatolij Gustschind5011762010-03-15 14:50:25 +01001027 (((y + yoff) * VIDEO_COLS) +
1028 x + xoff) * bpp);
1029 bm += 4;
1030 break;
1031 default:
1032 /* unencoded run */
1033 cnt = bm[1];
1034 runlen = cnt;
Anatolij Gustschin74446b62011-02-21 21:33:29 +01001035 pixels += cnt;
1036 if (pixels > limit)
1037 goto error;
1038
Anatolij Gustschind5011762010-03-15 14:50:25 +01001039 bm += 2;
1040 if (y < height) {
1041 if (x >= width) {
1042 x += runlen;
1043 goto next_run;
1044 }
1045 if (x + runlen > width)
1046 cnt = width - x;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001047 draw_bitmap(&fbp, bm, p, cnt, 0);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001048 x += runlen;
1049 }
1050next_run:
1051 bm += runlen;
1052 if (runlen & 1)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001053 bm++; /* 0 padding if length is odd */
Anatolij Gustschind5011762010-03-15 14:50:25 +01001054 }
1055 break;
1056 default:
1057 /* encoded run */
Anatolij Gustschin74446b62011-02-21 21:33:29 +01001058 cnt = bm[0];
1059 runlen = cnt;
1060 pixels += cnt;
1061 if (pixels > limit)
1062 goto error;
1063
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001064 if (y < height) { /* only draw into visible area */
Anatolij Gustschind5011762010-03-15 14:50:25 +01001065 if (x >= width) {
1066 x += runlen;
1067 bm += 2;
1068 continue;
1069 }
1070 if (x + runlen > width)
1071 cnt = width - x;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001072 draw_bitmap(&fbp, bm, p, cnt, 1);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001073 x += runlen;
1074 }
1075 bm += 2;
1076 break;
1077 }
1078 }
1079 return 0;
Anatolij Gustschin74446b62011-02-21 21:33:29 +01001080error:
1081 printf("Error: Too much encoded pixel data, validate your bitmap\n");
1082 return -1;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001083}
1084#endif
1085
1086/*
wdenk4b248f32004-03-14 16:51:43 +00001087 * Display the BMP file located at address bmp_image.
wdenk4b248f32004-03-14 16:51:43 +00001088 */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001089int video_display_bitmap(ulong bmp_image, int x, int y)
wdenk4b248f32004-03-14 16:51:43 +00001090{
1091 ushort xcount, ycount;
1092 uchar *fb;
1093 bmp_image_t *bmp = (bmp_image_t *) bmp_image;
1094 uchar *bmap;
1095 ushort padded_line;
1096 unsigned long width, height, bpp;
1097 unsigned colors;
1098 unsigned long compression;
1099 bmp_color_table_entry_t cte;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001100
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001101#ifdef CONFIG_VIDEO_BMP_GZIP
1102 unsigned char *dst = NULL;
1103 ulong len;
1104#endif
wdenk4b248f32004-03-14 16:51:43 +00001105
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001106 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001107
1108 if (!((bmp->header.signature[0] == 'B') &&
1109 (bmp->header.signature[1] == 'M'))) {
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001110
1111#ifdef CONFIG_VIDEO_BMP_GZIP
1112 /*
1113 * Could be a gzipped bmp image, try to decrompress...
1114 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001115 len = CONFIG_SYS_VIDEO_LOGO_MAX_SIZE;
1116 dst = malloc(CONFIG_SYS_VIDEO_LOGO_MAX_SIZE);
Stefan Roesec29ab9d2005-10-08 10:19:07 +02001117 if (dst == NULL) {
1118 printf("Error: malloc in gunzip failed!\n");
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001119 return 1;
Stefan Roesec29ab9d2005-10-08 10:19:07 +02001120 }
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001121 if (gunzip(dst, CONFIG_SYS_VIDEO_LOGO_MAX_SIZE,
1122 (uchar *) bmp_image,
1123 &len) != 0) {
1124 printf("Error: no valid bmp or bmp.gz image at %lx\n",
1125 bmp_image);
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001126 free(dst);
1127 return 1;
1128 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001129 if (len == CONFIG_SYS_VIDEO_LOGO_MAX_SIZE) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001130 printf("Image could be truncated "
1131 "(increase CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)!\n");
Stefan Roesec29ab9d2005-10-08 10:19:07 +02001132 }
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001133
1134 /*
1135 * Set addr to decompressed image
1136 */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001137 bmp = (bmp_image_t *) dst;
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001138
1139 if (!((bmp->header.signature[0] == 'B') &&
1140 (bmp->header.signature[1] == 'M'))) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001141 printf("Error: no valid bmp.gz image at %lx\n",
1142 bmp_image);
Matthias Fuchsa49e0d12008-04-21 11:19:04 +02001143 free(dst);
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001144 return 1;
1145 }
1146#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001147 printf("Error: no valid bmp image at %lx\n", bmp_image);
wdenk4b248f32004-03-14 16:51:43 +00001148 return 1;
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001149#endif /* CONFIG_VIDEO_BMP_GZIP */
wdenk4b248f32004-03-14 16:51:43 +00001150 }
1151
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001152 width = le32_to_cpu(bmp->header.width);
1153 height = le32_to_cpu(bmp->header.height);
1154 bpp = le16_to_cpu(bmp->header.bit_count);
1155 colors = le32_to_cpu(bmp->header.colors_used);
1156 compression = le32_to_cpu(bmp->header.compression);
wdenk4b248f32004-03-14 16:51:43 +00001157
Marek Vasut68da5b12011-10-21 14:17:04 +00001158 debug("Display-bmp: %ld x %ld with %d colors\n",
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001159 width, height, colors);
wdenk4b248f32004-03-14 16:51:43 +00001160
Anatolij Gustschind5011762010-03-15 14:50:25 +01001161 if (compression != BMP_BI_RGB
1162#ifdef CONFIG_VIDEO_BMP_RLE8
1163 && compression != BMP_BI_RLE8
1164#endif
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001165 ) {
1166 printf("Error: compression type %ld not supported\n",
1167 compression);
Matthias Fuchsa49e0d12008-04-21 11:19:04 +02001168#ifdef CONFIG_VIDEO_BMP_GZIP
1169 if (dst)
1170 free(dst);
1171#endif
wdenk4b248f32004-03-14 16:51:43 +00001172 return 1;
1173 }
1174
1175 padded_line = (((width * bpp + 7) / 8) + 3) & ~0x3;
1176
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001177#ifdef CONFIG_SPLASH_SCREEN_ALIGN
1178 if (x == BMP_ALIGN_CENTER)
1179 x = max(0, (VIDEO_VISIBLE_COLS - width) / 2);
1180 else if (x < 0)
1181 x = max(0, VIDEO_VISIBLE_COLS - width + x + 1);
1182
1183 if (y == BMP_ALIGN_CENTER)
1184 y = max(0, (VIDEO_VISIBLE_ROWS - height) / 2);
1185 else if (y < 0)
1186 y = max(0, VIDEO_VISIBLE_ROWS - height + y + 1);
1187#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1188
wdenk4b248f32004-03-14 16:51:43 +00001189 if ((x + width) > VIDEO_VISIBLE_COLS)
1190 width = VIDEO_VISIBLE_COLS - x;
1191 if ((y + height) > VIDEO_VISIBLE_ROWS)
1192 height = VIDEO_VISIBLE_ROWS - y;
1193
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001194 bmap = (uchar *) bmp + le32_to_cpu(bmp->header.data_offset);
wdenk4b248f32004-03-14 16:51:43 +00001195 fb = (uchar *) (video_fb_address +
1196 ((y + height - 1) * VIDEO_COLS * VIDEO_PIXEL_SIZE) +
1197 x * VIDEO_PIXEL_SIZE);
1198
Anatolij Gustschind5011762010-03-15 14:50:25 +01001199#ifdef CONFIG_VIDEO_BMP_RLE8
1200 if (compression == BMP_BI_RLE8) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001201 return display_rle8_bitmap(bmp, x, y, width, height);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001202 }
1203#endif
1204
Timur Tabi68f66182010-08-23 16:58:00 -05001205 /* We handle only 4, 8, or 24 bpp bitmaps */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001206 switch (le16_to_cpu(bmp->header.bit_count)) {
Timur Tabi68f66182010-08-23 16:58:00 -05001207 case 4:
1208 padded_line -= width / 2;
1209 ycount = height;
1210
1211 switch (VIDEO_DATA_FORMAT) {
1212 case GDF_32BIT_X888RGB:
1213 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001214 WATCHDOG_RESET();
Timur Tabi68f66182010-08-23 16:58:00 -05001215 /*
1216 * Don't assume that 'width' is an
1217 * even number
1218 */
1219 for (xcount = 0; xcount < width; xcount++) {
1220 uchar idx;
1221
1222 if (xcount & 1) {
1223 idx = *bmap & 0xF;
1224 bmap++;
1225 } else
1226 idx = *bmap >> 4;
1227 cte = bmp->color_table[idx];
1228 FILL_32BIT_X888RGB(cte.red, cte.green,
1229 cte.blue);
1230 }
1231 bmap += padded_line;
1232 fb -= (VIDEO_VISIBLE_COLS + width) *
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001233 VIDEO_PIXEL_SIZE;
Timur Tabi68f66182010-08-23 16:58:00 -05001234 }
1235 break;
1236 default:
1237 puts("4bpp bitmap unsupported with current "
1238 "video mode\n");
1239 break;
1240 }
1241 break;
1242
wdenk4b248f32004-03-14 16:51:43 +00001243 case 8:
1244 padded_line -= width;
1245 if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
Anatolij Gustschin7c050f82010-06-19 20:41:56 +02001246 /* Copy colormap */
wdenk4b248f32004-03-14 16:51:43 +00001247 for (xcount = 0; xcount < colors; ++xcount) {
1248 cte = bmp->color_table[xcount];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001249 video_set_lut(xcount, cte.red, cte.green,
1250 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001251 }
1252 }
1253 ycount = height;
1254 switch (VIDEO_DATA_FORMAT) {
1255 case GDF__8BIT_INDEX:
1256 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001257 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001258 xcount = width;
1259 while (xcount--) {
1260 *fb++ = *bmap++;
1261 }
1262 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001263 fb -= (VIDEO_VISIBLE_COLS + width) *
1264 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001265 }
1266 break;
1267 case GDF__8BIT_332RGB:
1268 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001269 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001270 xcount = width;
1271 while (xcount--) {
1272 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001273 FILL_8BIT_332RGB(cte.red, cte.green,
1274 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001275 }
1276 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001277 fb -= (VIDEO_VISIBLE_COLS + width) *
1278 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001279 }
1280 break;
1281 case GDF_15BIT_555RGB:
1282 while (ycount--) {
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001283#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1284 int xpos = x;
1285#endif
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001286 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001287 xcount = width;
1288 while (xcount--) {
1289 cte = bmp->color_table[*bmap++];
Andrew Dyercc347802008-08-29 12:30:39 -05001290#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001291 fill_555rgb_pswap(fb, xpos++, cte.red,
1292 cte.green,
1293 cte.blue);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001294 fb += 2;
Andrew Dyercc347802008-08-29 12:30:39 -05001295#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001296 FILL_15BIT_555RGB(cte.red, cte.green,
1297 cte.blue);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001298#endif
wdenk4b248f32004-03-14 16:51:43 +00001299 }
1300 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001301 fb -= (VIDEO_VISIBLE_COLS + width) *
1302 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001303 }
1304 break;
1305 case GDF_16BIT_565RGB:
1306 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001307 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001308 xcount = width;
1309 while (xcount--) {
1310 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001311 FILL_16BIT_565RGB(cte.red, cte.green,
1312 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001313 }
1314 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001315 fb -= (VIDEO_VISIBLE_COLS + width) *
1316 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001317 }
1318 break;
1319 case GDF_32BIT_X888RGB:
1320 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001321 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001322 xcount = width;
1323 while (xcount--) {
1324 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001325 FILL_32BIT_X888RGB(cte.red, cte.green,
1326 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001327 }
1328 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001329 fb -= (VIDEO_VISIBLE_COLS + width) *
1330 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001331 }
1332 break;
1333 case GDF_24BIT_888RGB:
1334 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001335 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001336 xcount = width;
1337 while (xcount--) {
1338 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001339 FILL_24BIT_888RGB(cte.red, cte.green,
1340 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001341 }
1342 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001343 fb -= (VIDEO_VISIBLE_COLS + width) *
1344 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001345 }
1346 break;
1347 }
1348 break;
1349 case 24:
1350 padded_line -= 3 * width;
1351 ycount = height;
1352 switch (VIDEO_DATA_FORMAT) {
1353 case GDF__8BIT_332RGB:
1354 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001355 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001356 xcount = width;
1357 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001358 FILL_8BIT_332RGB(bmap[2], bmap[1],
1359 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001360 bmap += 3;
1361 }
1362 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001363 fb -= (VIDEO_VISIBLE_COLS + width) *
1364 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001365 }
1366 break;
1367 case GDF_15BIT_555RGB:
1368 while (ycount--) {
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001369#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1370 int xpos = x;
1371#endif
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001372 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001373 xcount = width;
1374 while (xcount--) {
Andrew Dyercc347802008-08-29 12:30:39 -05001375#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001376 fill_555rgb_pswap(fb, xpos++, bmap[2],
1377 bmap[1], bmap[0]);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001378 fb += 2;
Andrew Dyercc347802008-08-29 12:30:39 -05001379#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001380 FILL_15BIT_555RGB(bmap[2], bmap[1],
1381 bmap[0]);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001382#endif
wdenk4b248f32004-03-14 16:51:43 +00001383 bmap += 3;
1384 }
1385 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001386 fb -= (VIDEO_VISIBLE_COLS + width) *
1387 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001388 }
1389 break;
1390 case GDF_16BIT_565RGB:
1391 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001392 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001393 xcount = width;
1394 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001395 FILL_16BIT_565RGB(bmap[2], bmap[1],
1396 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001397 bmap += 3;
1398 }
1399 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001400 fb -= (VIDEO_VISIBLE_COLS + width) *
1401 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001402 }
1403 break;
1404 case GDF_32BIT_X888RGB:
1405 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001406 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001407 xcount = width;
1408 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001409 FILL_32BIT_X888RGB(bmap[2], bmap[1],
1410 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001411 bmap += 3;
1412 }
1413 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001414 fb -= (VIDEO_VISIBLE_COLS + width) *
1415 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001416 }
1417 break;
1418 case GDF_24BIT_888RGB:
1419 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001420 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001421 xcount = width;
1422 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001423 FILL_24BIT_888RGB(bmap[2], bmap[1],
1424 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001425 bmap += 3;
1426 }
1427 bmap += padded_line;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001428 fb -= (VIDEO_VISIBLE_COLS + width) *
1429 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001430 }
1431 break;
1432 default:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001433 printf("Error: 24 bits/pixel bitmap incompatible "
1434 "with current video mode\n");
wdenk4b248f32004-03-14 16:51:43 +00001435 break;
1436 }
1437 break;
1438 default:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001439 printf("Error: %d bit/pixel bitmaps not supported by U-Boot\n",
1440 le16_to_cpu(bmp->header.bit_count));
wdenk4b248f32004-03-14 16:51:43 +00001441 break;
1442 }
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001443
1444#ifdef CONFIG_VIDEO_BMP_GZIP
1445 if (dst) {
1446 free(dst);
1447 }
1448#endif
1449
wdenk4b248f32004-03-14 16:51:43 +00001450 return (0);
1451}
Jon Loeliger07d38a12007-07-09 17:30:01 -05001452#endif
wdenk4b248f32004-03-14 16:51:43 +00001453
wdenk4b248f32004-03-14 16:51:43 +00001454
wdenkc6097192002-11-03 00:24:07 +00001455#ifdef CONFIG_VIDEO_LOGO
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001456void logo_plot(void *screen, int width, int x, int y)
wdenkc6097192002-11-03 00:24:07 +00001457{
wdenkc6097192002-11-03 00:24:07 +00001458
wdenk4b248f32004-03-14 16:51:43 +00001459 int xcount, i;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001460 int skip = (width - VIDEO_LOGO_WIDTH) * VIDEO_PIXEL_SIZE;
Matthias Weisserbe129aa2010-01-12 12:06:31 +01001461 int ycount = video_logo_height;
wdenk4b248f32004-03-14 16:51:43 +00001462 unsigned char r, g, b, *logo_red, *logo_blue, *logo_green;
1463 unsigned char *source;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001464 unsigned char *dest = (unsigned char *) screen +
1465 ((y * width * VIDEO_PIXEL_SIZE) + x * VIDEO_PIXEL_SIZE);
wdenka6c7ad22002-12-03 21:28:10 +00001466
1467#ifdef CONFIG_VIDEO_BMP_LOGO
wdenk4b248f32004-03-14 16:51:43 +00001468 source = bmp_logo_bitmap;
wdenk8bde7f72003-06-27 21:31:46 +00001469
Anatolij Gustschin7c050f82010-06-19 20:41:56 +02001470 /* Allocate temporary space for computing colormap */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001471 logo_red = malloc(BMP_LOGO_COLORS);
1472 logo_green = malloc(BMP_LOGO_COLORS);
1473 logo_blue = malloc(BMP_LOGO_COLORS);
Anatolij Gustschin7c050f82010-06-19 20:41:56 +02001474 /* Compute color map */
wdenk4b248f32004-03-14 16:51:43 +00001475 for (i = 0; i < VIDEO_LOGO_COLORS; i++) {
1476 logo_red[i] = (bmp_logo_palette[i] & 0x0f00) >> 4;
1477 logo_green[i] = (bmp_logo_palette[i] & 0x00f0);
1478 logo_blue[i] = (bmp_logo_palette[i] & 0x000f) << 4;
1479 }
wdenka6c7ad22002-12-03 21:28:10 +00001480#else
wdenk4b248f32004-03-14 16:51:43 +00001481 source = linux_logo;
1482 logo_red = linux_logo_red;
1483 logo_green = linux_logo_green;
1484 logo_blue = linux_logo_blue;
wdenka6c7ad22002-12-03 21:28:10 +00001485#endif
wdenk8bde7f72003-06-27 21:31:46 +00001486
wdenk4b248f32004-03-14 16:51:43 +00001487 if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
1488 for (i = 0; i < VIDEO_LOGO_COLORS; i++) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001489 video_set_lut(i + VIDEO_LOGO_LUT_OFFSET,
1490 logo_red[i], logo_green[i],
1491 logo_blue[i]);
wdenk4b248f32004-03-14 16:51:43 +00001492 }
wdenk8bde7f72003-06-27 21:31:46 +00001493 }
wdenkc6097192002-11-03 00:24:07 +00001494
wdenk4b248f32004-03-14 16:51:43 +00001495 while (ycount--) {
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001496#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1497 int xpos = x;
1498#endif
wdenk4b248f32004-03-14 16:51:43 +00001499 xcount = VIDEO_LOGO_WIDTH;
1500 while (xcount--) {
1501 r = logo_red[*source - VIDEO_LOGO_LUT_OFFSET];
1502 g = logo_green[*source - VIDEO_LOGO_LUT_OFFSET];
1503 b = logo_blue[*source - VIDEO_LOGO_LUT_OFFSET];
wdenk8bde7f72003-06-27 21:31:46 +00001504
wdenk4b248f32004-03-14 16:51:43 +00001505 switch (VIDEO_DATA_FORMAT) {
1506 case GDF__8BIT_INDEX:
1507 *dest = *source;
1508 break;
1509 case GDF__8BIT_332RGB:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001510 *dest = ((r >> 5) << 5) |
1511 ((g >> 5) << 2) |
1512 (b >> 6);
wdenk4b248f32004-03-14 16:51:43 +00001513 break;
1514 case GDF_15BIT_555RGB:
Andrew Dyercc347802008-08-29 12:30:39 -05001515#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001516 fill_555rgb_pswap(dest, xpos++, r, g, b);
Andrew Dyercc347802008-08-29 12:30:39 -05001517#else
wdenk4b248f32004-03-14 16:51:43 +00001518 *(unsigned short *) dest =
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001519 SWAP16((unsigned short) (
1520 ((r >> 3) << 10) |
1521 ((g >> 3) << 5) |
1522 (b >> 3)));
Anatolij Gustschinbed53752008-01-11 14:30:01 +01001523#endif
wdenk4b248f32004-03-14 16:51:43 +00001524 break;
1525 case GDF_16BIT_565RGB:
1526 *(unsigned short *) dest =
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001527 SWAP16((unsigned short) (
1528 ((r >> 3) << 11) |
1529 ((g >> 2) << 5) |
1530 (b >> 3)));
wdenk4b248f32004-03-14 16:51:43 +00001531 break;
1532 case GDF_32BIT_X888RGB:
1533 *(unsigned long *) dest =
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001534 SWAP32((unsigned long) (
1535 (r << 16) |
1536 (g << 8) |
1537 b));
wdenk4b248f32004-03-14 16:51:43 +00001538 break;
1539 case GDF_24BIT_888RGB:
wdenkc6097192002-11-03 00:24:07 +00001540#ifdef VIDEO_FB_LITTLE_ENDIAN
wdenk4b248f32004-03-14 16:51:43 +00001541 dest[0] = b;
1542 dest[1] = g;
1543 dest[2] = r;
wdenkc6097192002-11-03 00:24:07 +00001544#else
wdenk4b248f32004-03-14 16:51:43 +00001545 dest[0] = r;
1546 dest[1] = g;
1547 dest[2] = b;
wdenkc6097192002-11-03 00:24:07 +00001548#endif
wdenk4b248f32004-03-14 16:51:43 +00001549 break;
1550 }
1551 source++;
1552 dest += VIDEO_PIXEL_SIZE;
1553 }
1554 dest += skip;
wdenk8bde7f72003-06-27 21:31:46 +00001555 }
wdenka6c7ad22002-12-03 21:28:10 +00001556#ifdef CONFIG_VIDEO_BMP_LOGO
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001557 free(logo_red);
1558 free(logo_green);
1559 free(logo_blue);
wdenka6c7ad22002-12-03 21:28:10 +00001560#endif
wdenkc6097192002-11-03 00:24:07 +00001561}
1562
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001563static void *video_logo(void)
wdenkc6097192002-11-03 00:24:07 +00001564{
wdenk4b248f32004-03-14 16:51:43 +00001565 char info[128];
Wolfgang Denka9a62af2011-11-04 15:55:20 +00001566 int space, len;
1567 __maybe_unused int y_off = 0;
wdenkc6097192002-11-03 00:24:07 +00001568
wdenk4b248f32004-03-14 16:51:43 +00001569#ifdef CONFIG_SPLASH_SCREEN
1570 char *s;
1571 ulong addr;
wdenkc6097192002-11-03 00:24:07 +00001572
Wolfgang Denk57912932011-07-30 12:48:09 +00001573 s = getenv("splashimage");
1574 if (s != NULL) {
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001575 int x = 0, y = 0;
wdenk4b248f32004-03-14 16:51:43 +00001576
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001577 addr = simple_strtoul(s, NULL, 16);
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001578#ifdef CONFIG_SPLASH_SCREEN_ALIGN
Wolfgang Denk57912932011-07-30 12:48:09 +00001579 s = getenv("splashpos");
1580 if (s != NULL) {
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001581 if (s[0] == 'm')
1582 x = BMP_ALIGN_CENTER;
1583 else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001584 x = simple_strtol(s, NULL, 0);
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001585
Wolfgang Denk57912932011-07-30 12:48:09 +00001586 s = strchr(s + 1, ',');
1587 if (s != NULL) {
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001588 if (s[1] == 'm')
1589 y = BMP_ALIGN_CENTER;
1590 else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001591 y = simple_strtol(s + 1, NULL, 0);
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001592 }
1593 }
1594#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1595
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001596 if (video_display_bitmap(addr, x, y) == 0) {
Matthias Weisserbe129aa2010-01-12 12:06:31 +01001597 video_logo_height = 0;
wdenk4b248f32004-03-14 16:51:43 +00001598 return ((void *) (video_fb_address));
1599 }
1600 }
1601#endif /* CONFIG_SPLASH_SCREEN */
1602
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001603 logo_plot(video_fb_address, VIDEO_COLS, 0, 0);
wdenk4b248f32004-03-14 16:51:43 +00001604
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001605 sprintf(info, " %s", version_string);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02001606
1607 space = (VIDEO_LINE_LEN / 2 - VIDEO_INFO_X) / VIDEO_FONT_WIDTH;
1608 len = strlen(info);
1609
1610 if (len > space) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001611 video_drawchars(VIDEO_INFO_X, VIDEO_INFO_Y,
1612 (uchar *) info, space);
1613 video_drawchars(VIDEO_INFO_X + VIDEO_FONT_WIDTH,
1614 VIDEO_INFO_Y + VIDEO_FONT_HEIGHT,
1615 (uchar *) info + space, len - space);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02001616 y_off = 1;
1617 } else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001618 video_drawstring(VIDEO_INFO_X, VIDEO_INFO_Y, (uchar *) info);
wdenkc6097192002-11-03 00:24:07 +00001619
1620#ifdef CONFIG_CONSOLE_EXTRA_INFO
wdenk4b248f32004-03-14 16:51:43 +00001621 {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001622 int i, n =
1623 ((video_logo_height -
1624 VIDEO_FONT_HEIGHT) / VIDEO_FONT_HEIGHT);
wdenkc6097192002-11-03 00:24:07 +00001625
wdenk4b248f32004-03-14 16:51:43 +00001626 for (i = 1; i < n; i++) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001627 video_get_info_str(i, info);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02001628 if (!*info)
1629 continue;
1630
1631 len = strlen(info);
1632 if (len > space) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001633 video_drawchars(VIDEO_INFO_X,
1634 VIDEO_INFO_Y +
1635 (i + y_off) *
1636 VIDEO_FONT_HEIGHT,
1637 (uchar *) info, space);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02001638 y_off++;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001639 video_drawchars(VIDEO_INFO_X +
1640 VIDEO_FONT_WIDTH,
1641 VIDEO_INFO_Y +
1642 (i + y_off) *
1643 VIDEO_FONT_HEIGHT,
1644 (uchar *) info + space,
1645 len - space);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02001646 } else {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001647 video_drawstring(VIDEO_INFO_X,
1648 VIDEO_INFO_Y +
1649 (i + y_off) *
1650 VIDEO_FONT_HEIGHT,
1651 (uchar *) info);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02001652 }
wdenk4b248f32004-03-14 16:51:43 +00001653 }
1654 }
wdenkc6097192002-11-03 00:24:07 +00001655#endif
1656
Matthias Weisserbe129aa2010-01-12 12:06:31 +01001657 return (video_fb_address + video_logo_height * VIDEO_LINE_LEN);
wdenkc6097192002-11-03 00:24:07 +00001658}
1659#endif
1660
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001661static int video_init(void)
wdenkc6097192002-11-03 00:24:07 +00001662{
wdenk4b248f32004-03-14 16:51:43 +00001663 unsigned char color8;
wdenkc6097192002-11-03 00:24:07 +00001664
Wolfgang Denk57912932011-07-30 12:48:09 +00001665 pGD = video_hw_init();
1666 if (pGD == NULL)
wdenk4b248f32004-03-14 16:51:43 +00001667 return -1;
wdenkc6097192002-11-03 00:24:07 +00001668
wdenk4b248f32004-03-14 16:51:43 +00001669 video_fb_address = (void *) VIDEO_FB_ADRS;
wdenkc6097192002-11-03 00:24:07 +00001670#ifdef CONFIG_VIDEO_HW_CURSOR
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001671 video_init_hw_cursor(VIDEO_FONT_WIDTH, VIDEO_FONT_HEIGHT);
wdenkc6097192002-11-03 00:24:07 +00001672#endif
1673
wdenk4b248f32004-03-14 16:51:43 +00001674 /* Init drawing pats */
1675 switch (VIDEO_DATA_FORMAT) {
1676 case GDF__8BIT_INDEX:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001677 video_set_lut(0x01, CONSOLE_FG_COL, CONSOLE_FG_COL,
1678 CONSOLE_FG_COL);
1679 video_set_lut(0x00, CONSOLE_BG_COL, CONSOLE_BG_COL,
1680 CONSOLE_BG_COL);
wdenk4b248f32004-03-14 16:51:43 +00001681 fgx = 0x01010101;
1682 bgx = 0x00000000;
1683 break;
1684 case GDF__8BIT_332RGB:
1685 color8 = ((CONSOLE_FG_COL & 0xe0) |
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001686 ((CONSOLE_FG_COL >> 3) & 0x1c) |
1687 CONSOLE_FG_COL >> 6);
1688 fgx = (color8 << 24) | (color8 << 16) | (color8 << 8) |
1689 color8;
wdenk4b248f32004-03-14 16:51:43 +00001690 color8 = ((CONSOLE_BG_COL & 0xe0) |
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001691 ((CONSOLE_BG_COL >> 3) & 0x1c) |
1692 CONSOLE_BG_COL >> 6);
1693 bgx = (color8 << 24) | (color8 << 16) | (color8 << 8) |
1694 color8;
wdenk4b248f32004-03-14 16:51:43 +00001695 break;
1696 case GDF_15BIT_555RGB:
1697 fgx = (((CONSOLE_FG_COL >> 3) << 26) |
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001698 ((CONSOLE_FG_COL >> 3) << 21) |
1699 ((CONSOLE_FG_COL >> 3) << 16) |
1700 ((CONSOLE_FG_COL >> 3) << 10) |
1701 ((CONSOLE_FG_COL >> 3) << 5) |
1702 (CONSOLE_FG_COL >> 3));
wdenk4b248f32004-03-14 16:51:43 +00001703 bgx = (((CONSOLE_BG_COL >> 3) << 26) |
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001704 ((CONSOLE_BG_COL >> 3) << 21) |
1705 ((CONSOLE_BG_COL >> 3) << 16) |
1706 ((CONSOLE_BG_COL >> 3) << 10) |
1707 ((CONSOLE_BG_COL >> 3) << 5) |
1708 (CONSOLE_BG_COL >> 3));
wdenk4b248f32004-03-14 16:51:43 +00001709 break;
1710 case GDF_16BIT_565RGB:
1711 fgx = (((CONSOLE_FG_COL >> 3) << 27) |
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001712 ((CONSOLE_FG_COL >> 2) << 21) |
1713 ((CONSOLE_FG_COL >> 3) << 16) |
1714 ((CONSOLE_FG_COL >> 3) << 11) |
1715 ((CONSOLE_FG_COL >> 2) << 5) |
1716 (CONSOLE_FG_COL >> 3));
wdenk4b248f32004-03-14 16:51:43 +00001717 bgx = (((CONSOLE_BG_COL >> 3) << 27) |
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001718 ((CONSOLE_BG_COL >> 2) << 21) |
1719 ((CONSOLE_BG_COL >> 3) << 16) |
1720 ((CONSOLE_BG_COL >> 3) << 11) |
1721 ((CONSOLE_BG_COL >> 2) << 5) |
1722 (CONSOLE_BG_COL >> 3));
wdenk4b248f32004-03-14 16:51:43 +00001723 break;
1724 case GDF_32BIT_X888RGB:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001725 fgx = (CONSOLE_FG_COL << 16) |
1726 (CONSOLE_FG_COL << 8) |
1727 CONSOLE_FG_COL;
1728 bgx = (CONSOLE_BG_COL << 16) |
1729 (CONSOLE_BG_COL << 8) |
1730 CONSOLE_BG_COL;
wdenk4b248f32004-03-14 16:51:43 +00001731 break;
1732 case GDF_24BIT_888RGB:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001733 fgx = (CONSOLE_FG_COL << 24) |
1734 (CONSOLE_FG_COL << 16) |
1735 (CONSOLE_FG_COL << 8) |
1736 CONSOLE_FG_COL;
1737 bgx = (CONSOLE_BG_COL << 24) |
1738 (CONSOLE_BG_COL << 16) |
1739 (CONSOLE_BG_COL << 8) |
1740 CONSOLE_BG_COL;
wdenk4b248f32004-03-14 16:51:43 +00001741 break;
1742 }
1743 eorx = fgx ^ bgx;
wdenkc6097192002-11-03 00:24:07 +00001744
1745#ifdef CONFIG_VIDEO_LOGO
wdenk4b248f32004-03-14 16:51:43 +00001746 /* Plot the logo and get start point of console */
Wolfgang Denk72c65f62011-07-29 09:55:28 +00001747 debug("Video: Drawing the logo ...\n");
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001748 video_console_address = video_logo();
wdenkc6097192002-11-03 00:24:07 +00001749#else
wdenk4b248f32004-03-14 16:51:43 +00001750 video_console_address = video_fb_address;
wdenkc6097192002-11-03 00:24:07 +00001751#endif
1752
wdenk4b248f32004-03-14 16:51:43 +00001753 /* Initialize the console */
1754 console_col = 0;
1755 console_row = 0;
wdenkc6097192002-11-03 00:24:07 +00001756
wdenk4b248f32004-03-14 16:51:43 +00001757 return 0;
wdenkc6097192002-11-03 00:24:07 +00001758}
1759
Wolfgang Denk6cc7ba92009-05-15 10:07:43 +02001760/*
1761 * Implement a weak default function for boards that optionally
1762 * need to skip the video initialization.
1763 */
1764int __board_video_skip(void)
1765{
1766 /* As default, don't skip test */
1767 return 0;
1768}
Wolfgang Denk6cc7ba92009-05-15 10:07:43 +02001769
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001770int board_video_skip(void)
1771 __attribute__ ((weak, alias("__board_video_skip")));
1772
1773int drv_video_init(void)
wdenkc6097192002-11-03 00:24:07 +00001774{
wdenk4b248f32004-03-14 16:51:43 +00001775 int skip_dev_init;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +02001776 struct stdio_dev console_dev;
wdenkc6097192002-11-03 00:24:07 +00001777
Wolfgang Denk6cc7ba92009-05-15 10:07:43 +02001778 /* Check if video initialization should be skipped */
1779 if (board_video_skip())
1780 return 0;
1781
wdenk81050922004-07-11 20:04:51 +00001782 /* Init video chip - returns with framebuffer cleared */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001783 skip_dev_init = (video_init() == -1);
wdenk81050922004-07-11 20:04:51 +00001784
Wolfgang Denkf62f6462009-05-15 10:07:42 +02001785#if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
Wolfgang Denk72c65f62011-07-29 09:55:28 +00001786 debug("KBD: Keyboard init ...\n");
Wolfgang Denkf62f6462009-05-15 10:07:42 +02001787 skip_dev_init |= (VIDEO_KBD_INIT_FCT == -1);
1788#endif
wdenkc6097192002-11-03 00:24:07 +00001789
Wolfgang Denkf62f6462009-05-15 10:07:42 +02001790 if (skip_dev_init)
1791 return 0;
wdenkc6097192002-11-03 00:24:07 +00001792
Wolfgang Denkf62f6462009-05-15 10:07:42 +02001793 /* Init vga device */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001794 memset(&console_dev, 0, sizeof(console_dev));
1795 strcpy(console_dev.name, "vga");
Wolfgang Denkf62f6462009-05-15 10:07:42 +02001796 console_dev.ext = DEV_EXT_VIDEO; /* Video extensions */
1797 console_dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_SYSTEM;
1798 console_dev.putc = video_putc; /* 'putc' function */
1799 console_dev.puts = video_puts; /* 'puts' function */
1800 console_dev.tstc = NULL; /* 'tstc' function */
1801 console_dev.getc = NULL; /* 'getc' function */
1802
1803#if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
1804 /* Also init console device */
1805 console_dev.flags |= DEV_FLAGS_INPUT;
1806 console_dev.tstc = VIDEO_TSTC_FCT; /* 'tstc' function */
1807 console_dev.getc = VIDEO_GETC_FCT; /* 'getc' function */
wdenkc6097192002-11-03 00:24:07 +00001808#endif /* CONFIG_VGA_AS_SINGLE_DEVICE */
Wolfgang Denkf62f6462009-05-15 10:07:42 +02001809
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001810 if (stdio_register(&console_dev) != 0)
Wolfgang Denkf62f6462009-05-15 10:07:42 +02001811 return 0;
1812
1813 /* Return success */
1814 return 1;
wdenkc6097192002-11-03 00:24:07 +00001815}