blob: 49f0a2e04051b1696ca79f0068666e61145b3318 [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
wdenke55402c2004-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
32 * information strings (that normaly goes to serial port) can be drawed.
33 *
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.
39
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
wdenke55402c2004-03-14 16:51:43 +000045 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
wdenkc6097192002-11-03 00:24:07 +000048
49 Console Parameters are set by graphic drivers global struct:
50
wdenke55402c2004-03-14 16:51:43 +000051 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
wdenkc6097192002-11-03 00:24:07 +000056
wdenke55402c2004-03-14 16:51:43 +000057 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
wdenkc6097192002-11-03 00:24:07 +000061
wdenke55402c2004-03-14 16:51:43 +000062 CONFIG_CONSOLE_CURSOR - on/off drawing cursor is done with delay
wdenk57b2d802003-06-27 21:31:46 +000063 loop in VIDEO_TSTC_FCT (i8042)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020064 CONFIG_SYS_CONSOLE_BLINK_COUNT - value for delay loop - blink rate
wdenke55402c2004-03-14 16:51:43 +000065 CONFIG_CONSOLE_TIME - display time/date in upper right corner,
Jon Loeliger30c2f242007-07-10 11:13:21 -050066 needs CONFIG_CMD_DATE and CONFIG_CONSOLE_CURSOR
wdenke55402c2004-03-14 16:51:43 +000067 CONFIG_VIDEO_LOGO - display Linux Logo in upper left corner
68 CONFIG_VIDEO_BMP_LOGO - use bmp_logo instead of linux_logo
wdenkc6097192002-11-03 00:24:07 +000069 CONFIG_CONSOLE_EXTRA_INFO - display additional board information strings
wdenk57b2d802003-06-27 21:31:46 +000070 that normaly goes to serial port. This define
71 requires a board specific function:
72 video_drawstring (VIDEO_INFO_X,
73 VIDEO_INFO_Y + i*VIDEO_FONT_HEIGHT,
74 info);
75 that fills a info buffer at i=row.
76 s.a: board/eltec/bab7xx.
wdenkc6097192002-11-03 00:24:07 +000077CONFIG_VGA_AS_SINGLE_DEVICE - If set the framebuffer device will be initialised
wdenk57b2d802003-06-27 21:31:46 +000078 as an output only device. The Keyboard driver
79 will not be set-up. This may be used, if you
80 have none or more than one Keyboard devices
81 (USB Keyboard, AT Keyboard).
wdenkc6097192002-11-03 00:24:07 +000082
wdenke55402c2004-03-14 16:51:43 +000083CONFIG_VIDEO_SW_CURSOR: - Draws a cursor after the last character. No
wdenk57b2d802003-06-27 21:31:46 +000084 blinking is provided. Uses the macros CURSOR_SET
85 and CURSOR_OFF.
wdenke55402c2004-03-14 16:51:43 +000086CONFIG_VIDEO_HW_CURSOR: - Uses the hardware cursor capability of the
wdenk57b2d802003-06-27 21:31:46 +000087 graphic chip. Uses the macro CURSOR_SET.
88 ATTENTION: If booting an OS, the display driver
89 must disable the hardware register of the graphic
90 chip. Otherwise a blinking field is displayed
wdenkc6097192002-11-03 00:24:07 +000091*/
92
93#include <common.h>
94
wdenk9dd2b882002-12-03 21:28:10 +000095#include <malloc.h>
96
wdenkc6097192002-11-03 00:24:07 +000097/*****************************************************************************/
wdenke55402c2004-03-14 16:51:43 +000098/* Console device defines with SMI graphic */
99/* Any other graphic must change this section */
wdenkc6097192002-11-03 00:24:07 +0000100/*****************************************************************************/
101
wdenke55402c2004-03-14 16:51:43 +0000102#ifdef CONFIG_VIDEO_SMI_LYNXEM
wdenkc6097192002-11-03 00:24:07 +0000103
104#define VIDEO_FB_LITTLE_ENDIAN
105#define VIDEO_HW_RECTFILL
106#define VIDEO_HW_BITBLT
107#endif
108
109/*****************************************************************************/
wdenke55402c2004-03-14 16:51:43 +0000110/* Defines for the CT69000 driver */
wdenkc6097192002-11-03 00:24:07 +0000111/*****************************************************************************/
wdenke55402c2004-03-14 16:51:43 +0000112#ifdef CONFIG_VIDEO_CT69000
wdenkc6097192002-11-03 00:24:07 +0000113
114#define VIDEO_FB_LITTLE_ENDIAN
115#define VIDEO_HW_RECTFILL
116#define VIDEO_HW_BITBLT
117#endif
118
119/*****************************************************************************/
wdenke55402c2004-03-14 16:51:43 +0000120/* Defines for the SED13806 driver */
wdenk9dd2b882002-12-03 21:28:10 +0000121/*****************************************************************************/
122#ifdef CONFIG_VIDEO_SED13806
123
wdenkda54bc92004-08-04 21:56:49 +0000124#ifndef CONFIG_TOTAL5200
wdenk9dd2b882002-12-03 21:28:10 +0000125#define VIDEO_FB_LITTLE_ENDIAN
wdenkda54bc92004-08-04 21:56:49 +0000126#endif
wdenk9dd2b882002-12-03 21:28:10 +0000127#define VIDEO_HW_RECTFILL
128#define VIDEO_HW_BITBLT
129#endif
130
131/*****************************************************************************/
Stefan Roesed9d97742005-09-22 09:04:17 +0200132/* Defines for the SED13806 driver */
133/*****************************************************************************/
134#ifdef CONFIG_VIDEO_SM501
135
136#ifdef CONFIG_HH405
137#define VIDEO_FB_LITTLE_ENDIAN
138#endif
139#endif
140
141/*****************************************************************************/
Anatolij Gustschin3545f592008-01-11 14:30:01 +0100142/* Defines for the MB862xx driver */
143/*****************************************************************************/
144#ifdef CONFIG_VIDEO_MB862xx
145
146#ifdef CONFIG_VIDEO_CORALP
147#define VIDEO_FB_LITTLE_ENDIAN
148#endif
Anatolij Gustschine7e44a02009-10-23 12:03:14 +0200149#ifdef CONFIG_VIDEO_MB862xx_ACCEL
Anatolij Gustschin3545f592008-01-11 14:30:01 +0100150#define VIDEO_HW_RECTFILL
151#define VIDEO_HW_BITBLT
152#endif
Anatolij Gustschine7e44a02009-10-23 12:03:14 +0200153#endif
Anatolij Gustschin3545f592008-01-11 14:30:01 +0100154
155/*****************************************************************************/
wdenke55402c2004-03-14 16:51:43 +0000156/* Include video_fb.h after definitions of VIDEO_HW_RECTFILL etc */
wdenkc6097192002-11-03 00:24:07 +0000157/*****************************************************************************/
158#include <video_fb.h>
159
160/*****************************************************************************/
wdenke55402c2004-03-14 16:51:43 +0000161/* some Macros */
wdenkc6097192002-11-03 00:24:07 +0000162/*****************************************************************************/
wdenke55402c2004-03-14 16:51:43 +0000163#define VIDEO_VISIBLE_COLS (pGD->winSizeX)
164#define VIDEO_VISIBLE_ROWS (pGD->winSizeY)
165#define VIDEO_PIXEL_SIZE (pGD->gdfBytesPP)
166#define VIDEO_DATA_FORMAT (pGD->gdfIndex)
167#define VIDEO_FB_ADRS (pGD->frameAdrs)
wdenkc6097192002-11-03 00:24:07 +0000168
169/*****************************************************************************/
wdenke55402c2004-03-14 16:51:43 +0000170/* Console device defines with i8042 keyboard controller */
171/* Any other keyboard controller must change this section */
wdenkc6097192002-11-03 00:24:07 +0000172/*****************************************************************************/
173
wdenke55402c2004-03-14 16:51:43 +0000174#ifdef CONFIG_I8042_KBD
wdenkc6097192002-11-03 00:24:07 +0000175#include <i8042.h>
176
wdenke55402c2004-03-14 16:51:43 +0000177#define VIDEO_KBD_INIT_FCT i8042_kbd_init()
178#define VIDEO_TSTC_FCT i8042_tstc
179#define VIDEO_GETC_FCT i8042_getc
wdenkc6097192002-11-03 00:24:07 +0000180#endif
181
182/*****************************************************************************/
wdenke55402c2004-03-14 16:51:43 +0000183/* Console device */
wdenkc6097192002-11-03 00:24:07 +0000184/*****************************************************************************/
185
186#include <version.h>
187#include <linux/types.h>
Jean-Christophe PLAGNIOL-VILLARD2a7a0312009-05-16 12:14:54 +0200188#include <stdio_dev.h>
wdenkc6097192002-11-03 00:24:07 +0000189#include <video_font.h>
wdenkc6097192002-11-03 00:24:07 +0000190
Jon Loeliger30c2f242007-07-10 11:13:21 -0500191#if defined(CONFIG_CMD_DATE)
192#include <rtc.h>
wdenkc6097192002-11-03 00:24:07 +0000193#endif
194
Jon Loeligerb1d408a2007-07-09 17:30:01 -0500195#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
wdenke55402c2004-03-14 16:51:43 +0000196#include <watchdog.h>
197#include <bmp_layout.h>
Matthias Weisser53884182009-07-09 16:07:30 +0200198
199#ifdef CONFIG_SPLASH_SCREEN_ALIGN
200#define BMP_ALIGN_CENTER 0x7FFF
201#endif
202
Jon Loeligerb1d408a2007-07-09 17:30:01 -0500203#endif
wdenke55402c2004-03-14 16:51:43 +0000204
wdenkc6097192002-11-03 00:24:07 +0000205/*****************************************************************************/
wdenke55402c2004-03-14 16:51:43 +0000206/* Cursor definition: */
Marcel Ziswileraea68562007-12-30 03:30:46 +0100207/* CONFIG_CONSOLE_CURSOR: Uses a timer function (see drivers/input/i8042.c) */
208/* to let the cursor blink. Uses the macros */
209/* CURSOR_OFF and CURSOR_ON. */
wdenke55402c2004-03-14 16:51:43 +0000210/* CONFIG_VIDEO_SW_CURSOR: Draws a cursor after the last character. No */
211/* blinking is provided. Uses the macros CURSOR_SET */
212/* and CURSOR_OFF. */
213/* CONFIG_VIDEO_HW_CURSOR: Uses the hardware cursor capability of the */
214/* graphic chip. Uses the macro CURSOR_SET. */
215/* ATTENTION: If booting an OS, the display driver */
216/* must disable the hardware register of the graphic */
217/* chip. Otherwise a blinking field is displayed */
wdenkc6097192002-11-03 00:24:07 +0000218/*****************************************************************************/
219#if !defined(CONFIG_CONSOLE_CURSOR) && \
220 !defined(CONFIG_VIDEO_SW_CURSOR) && \
221 !defined(CONFIG_VIDEO_HW_CURSOR)
222/* no Cursor defined */
223#define CURSOR_ON
224#define CURSOR_OFF
225#define CURSOR_SET
226#endif
227
wdenke55402c2004-03-14 16:51:43 +0000228#ifdef CONFIG_CONSOLE_CURSOR
229#ifdef CURSOR_ON
230#error only one of CONFIG_CONSOLE_CURSOR,CONFIG_VIDEO_SW_CURSOR,CONFIG_VIDEO_HW_CURSOR can be defined
wdenkc6097192002-11-03 00:24:07 +0000231#endif
wdenke55402c2004-03-14 16:51:43 +0000232void console_cursor (int state);
wdenkc6097192002-11-03 00:24:07 +0000233#define CURSOR_ON console_cursor(1);
234#define CURSOR_OFF console_cursor(0);
235#define CURSOR_SET
236#ifndef CONFIG_I8042_KBD
Marcel Ziswileraea68562007-12-30 03:30:46 +0100237#warning Cursor drawing on/off needs timer function s.a. drivers/input/i8042.c
wdenkc6097192002-11-03 00:24:07 +0000238#endif
239#else
wdenke55402c2004-03-14 16:51:43 +0000240#ifdef CONFIG_CONSOLE_TIME
241#error CONFIG_CONSOLE_CURSOR must be defined for CONFIG_CONSOLE_TIME
wdenkc6097192002-11-03 00:24:07 +0000242#endif
243#endif /* CONFIG_CONSOLE_CURSOR */
244
wdenke55402c2004-03-14 16:51:43 +0000245#ifdef CONFIG_VIDEO_SW_CURSOR
246#ifdef CURSOR_ON
247#error only one of CONFIG_CONSOLE_CURSOR,CONFIG_VIDEO_SW_CURSOR,CONFIG_VIDEO_HW_CURSOR can be defined
wdenkc6097192002-11-03 00:24:07 +0000248#endif
249#define CURSOR_ON
250#define CURSOR_OFF video_putchar(console_col * VIDEO_FONT_WIDTH,\
wdenk57b2d802003-06-27 21:31:46 +0000251 console_row * VIDEO_FONT_HEIGHT, ' ');
wdenkc6097192002-11-03 00:24:07 +0000252#define CURSOR_SET video_set_cursor();
253#endif /* CONFIG_VIDEO_SW_CURSOR */
254
255
256#ifdef CONFIG_VIDEO_HW_CURSOR
wdenke55402c2004-03-14 16:51:43 +0000257#ifdef CURSOR_ON
258#error only one of CONFIG_CONSOLE_CURSOR,CONFIG_VIDEO_SW_CURSOR,CONFIG_VIDEO_HW_CURSOR can be defined
wdenkc6097192002-11-03 00:24:07 +0000259#endif
260#define CURSOR_ON
261#define CURSOR_OFF
262#define CURSOR_SET video_set_hw_cursor(console_col * VIDEO_FONT_WIDTH, \
Matthias Weisser76d70862010-01-12 12:06:31 +0100263 (console_row * VIDEO_FONT_HEIGHT) + video_logo_height);
wdenke55402c2004-03-14 16:51:43 +0000264#endif /* CONFIG_VIDEO_HW_CURSOR */
wdenkc6097192002-11-03 00:24:07 +0000265
wdenke55402c2004-03-14 16:51:43 +0000266#ifdef CONFIG_VIDEO_LOGO
267#ifdef CONFIG_VIDEO_BMP_LOGO
wdenk9dd2b882002-12-03 21:28:10 +0000268#include <bmp_logo.h>
wdenke55402c2004-03-14 16:51:43 +0000269#define VIDEO_LOGO_WIDTH BMP_LOGO_WIDTH
270#define VIDEO_LOGO_HEIGHT BMP_LOGO_HEIGHT
271#define VIDEO_LOGO_LUT_OFFSET BMP_LOGO_OFFSET
272#define VIDEO_LOGO_COLORS BMP_LOGO_COLORS
wdenk9dd2b882002-12-03 21:28:10 +0000273
wdenke55402c2004-03-14 16:51:43 +0000274#else /* CONFIG_VIDEO_BMP_LOGO */
275#define LINUX_LOGO_WIDTH 80
276#define LINUX_LOGO_HEIGHT 80
277#define LINUX_LOGO_COLORS 214
278#define LINUX_LOGO_LUT_OFFSET 0x20
wdenkc6097192002-11-03 00:24:07 +0000279#define __initdata
280#include <linux_logo.h>
wdenke55402c2004-03-14 16:51:43 +0000281#define VIDEO_LOGO_WIDTH LINUX_LOGO_WIDTH
282#define VIDEO_LOGO_HEIGHT LINUX_LOGO_HEIGHT
283#define VIDEO_LOGO_LUT_OFFSET LINUX_LOGO_LUT_OFFSET
284#define VIDEO_LOGO_COLORS LINUX_LOGO_COLORS
285#endif /* CONFIG_VIDEO_BMP_LOGO */
286#define VIDEO_INFO_X (VIDEO_LOGO_WIDTH)
287#define VIDEO_INFO_Y (VIDEO_FONT_HEIGHT/2)
288#else /* CONFIG_VIDEO_LOGO */
289#define VIDEO_LOGO_WIDTH 0
290#define VIDEO_LOGO_HEIGHT 0
291#endif /* CONFIG_VIDEO_LOGO */
wdenkc6097192002-11-03 00:24:07 +0000292
wdenke55402c2004-03-14 16:51:43 +0000293#define VIDEO_COLS VIDEO_VISIBLE_COLS
294#define VIDEO_ROWS VIDEO_VISIBLE_ROWS
295#define VIDEO_SIZE (VIDEO_ROWS*VIDEO_COLS*VIDEO_PIXEL_SIZE)
296#define VIDEO_PIX_BLOCKS (VIDEO_SIZE >> 2)
297#define VIDEO_LINE_LEN (VIDEO_COLS*VIDEO_PIXEL_SIZE)
298#define VIDEO_BURST_LEN (VIDEO_COLS/8)
wdenkc6097192002-11-03 00:24:07 +0000299
wdenke55402c2004-03-14 16:51:43 +0000300#ifdef CONFIG_VIDEO_LOGO
Matthias Weisser76d70862010-01-12 12:06:31 +0100301#define CONSOLE_ROWS ((VIDEO_ROWS - video_logo_height) / VIDEO_FONT_HEIGHT)
wdenkc6097192002-11-03 00:24:07 +0000302#else
wdenke55402c2004-03-14 16:51:43 +0000303#define CONSOLE_ROWS (VIDEO_ROWS / VIDEO_FONT_HEIGHT)
wdenkc6097192002-11-03 00:24:07 +0000304#endif
305
wdenke55402c2004-03-14 16:51:43 +0000306#define CONSOLE_COLS (VIDEO_COLS / VIDEO_FONT_WIDTH)
307#define CONSOLE_ROW_SIZE (VIDEO_FONT_HEIGHT * VIDEO_LINE_LEN)
308#define CONSOLE_ROW_FIRST (video_console_address)
309#define CONSOLE_ROW_SECOND (video_console_address + CONSOLE_ROW_SIZE)
310#define CONSOLE_ROW_LAST (video_console_address + CONSOLE_SIZE - CONSOLE_ROW_SIZE)
311#define CONSOLE_SIZE (CONSOLE_ROW_SIZE * CONSOLE_ROWS)
312#define CONSOLE_SCROLL_SIZE (CONSOLE_SIZE - CONSOLE_ROW_SIZE)
wdenkc6097192002-11-03 00:24:07 +0000313
314/* Macros */
wdenke55402c2004-03-14 16:51:43 +0000315#ifdef VIDEO_FB_LITTLE_ENDIAN
316#define SWAP16(x) ((((x) & 0x00ff) << 8) | ( (x) >> 8))
317#define SWAP32(x) ((((x) & 0x000000ff) << 24) | (((x) & 0x0000ff00) << 8)|\
wdenk57b2d802003-06-27 21:31:46 +0000318 (((x) & 0x00ff0000) >> 8) | (((x) & 0xff000000) >> 24) )
wdenke55402c2004-03-14 16:51:43 +0000319#define SHORTSWAP32(x) ((((x) & 0x000000ff) << 8) | (((x) & 0x0000ff00) >> 8)|\
wdenk57b2d802003-06-27 21:31:46 +0000320 (((x) & 0x00ff0000) << 8) | (((x) & 0xff000000) >> 8) )
wdenkc6097192002-11-03 00:24:07 +0000321#else
wdenke55402c2004-03-14 16:51:43 +0000322#define SWAP16(x) (x)
323#define SWAP32(x) (x)
Wolfgang Grandeggere1b05842009-10-23 12:03:15 +0200324#if defined(VIDEO_FB_16BPP_WORD_SWAP)
Anatolij Gustschin3545f592008-01-11 14:30:01 +0100325#define SHORTSWAP32(x) ( ((x) >> 16) | ((x) << 16) )
Andrew Dyer5601c612008-08-29 12:30:39 -0500326#else
327#define SHORTSWAP32(x) (x)
Anatolij Gustschin3545f592008-01-11 14:30:01 +0100328#endif
wdenkc6097192002-11-03 00:24:07 +0000329#endif
330
331#if defined(DEBUG) || defined(DEBUG_CFB_CONSOLE)
wdenke55402c2004-03-14 16:51:43 +0000332#define PRINTD(x) printf(x)
wdenkc6097192002-11-03 00:24:07 +0000333#else
334#define PRINTD(x)
335#endif
336
337
338#ifdef CONFIG_CONSOLE_EXTRA_INFO
339extern void video_get_info_str ( /* setup a board string: type, speed, etc. */
wdenke55402c2004-03-14 16:51:43 +0000340 int line_number, /* location to place info string beside logo */
341 char *info /* buffer for info string */
wdenkc6097192002-11-03 00:24:07 +0000342 );
343
344#endif
345
346/* Locals */
347static GraphicDevice *pGD; /* Pointer to Graphic array */
348
wdenke55402c2004-03-14 16:51:43 +0000349static void *video_fb_address; /* frame buffer address */
350static void *video_console_address; /* console buffer start address */
wdenkc6097192002-11-03 00:24:07 +0000351
Matthias Weisser76d70862010-01-12 12:06:31 +0100352static int video_logo_height = VIDEO_LOGO_HEIGHT;
353
wdenkc6097192002-11-03 00:24:07 +0000354static int console_col = 0; /* cursor col */
355static int console_row = 0; /* cursor row */
356
357static u32 eorx, fgx, bgx; /* color pats */
358
359static const int video_font_draw_table8[] = {
wdenk57b2d802003-06-27 21:31:46 +0000360 0x00000000, 0x000000ff, 0x0000ff00, 0x0000ffff,
361 0x00ff0000, 0x00ff00ff, 0x00ffff00, 0x00ffffff,
362 0xff000000, 0xff0000ff, 0xff00ff00, 0xff00ffff,
363 0xffff0000, 0xffff00ff, 0xffffff00, 0xffffffff };
wdenkc6097192002-11-03 00:24:07 +0000364
365static const int video_font_draw_table15[] = {
wdenk57b2d802003-06-27 21:31:46 +0000366 0x00000000, 0x00007fff, 0x7fff0000, 0x7fff7fff };
wdenkc6097192002-11-03 00:24:07 +0000367
368static const int video_font_draw_table16[] = {
wdenk57b2d802003-06-27 21:31:46 +0000369 0x00000000, 0x0000ffff, 0xffff0000, 0xffffffff };
wdenkc6097192002-11-03 00:24:07 +0000370
371static const int video_font_draw_table24[16][3] = {
wdenk57b2d802003-06-27 21:31:46 +0000372 { 0x00000000, 0x00000000, 0x00000000 },
373 { 0x00000000, 0x00000000, 0x00ffffff },
374 { 0x00000000, 0x0000ffff, 0xff000000 },
375 { 0x00000000, 0x0000ffff, 0xffffffff },
376 { 0x000000ff, 0xffff0000, 0x00000000 },
377 { 0x000000ff, 0xffff0000, 0x00ffffff },
378 { 0x000000ff, 0xffffffff, 0xff000000 },
379 { 0x000000ff, 0xffffffff, 0xffffffff },
380 { 0xffffff00, 0x00000000, 0x00000000 },
381 { 0xffffff00, 0x00000000, 0x00ffffff },
382 { 0xffffff00, 0x0000ffff, 0xff000000 },
383 { 0xffffff00, 0x0000ffff, 0xffffffff },
384 { 0xffffffff, 0xffff0000, 0x00000000 },
385 { 0xffffffff, 0xffff0000, 0x00ffffff },
386 { 0xffffffff, 0xffffffff, 0xff000000 },
387 { 0xffffffff, 0xffffffff, 0xffffffff } };
wdenkc6097192002-11-03 00:24:07 +0000388
389static const int video_font_draw_table32[16][4] = {
wdenk57b2d802003-06-27 21:31:46 +0000390 { 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
391 { 0x00000000, 0x00000000, 0x00000000, 0x00ffffff },
392 { 0x00000000, 0x00000000, 0x00ffffff, 0x00000000 },
393 { 0x00000000, 0x00000000, 0x00ffffff, 0x00ffffff },
394 { 0x00000000, 0x00ffffff, 0x00000000, 0x00000000 },
395 { 0x00000000, 0x00ffffff, 0x00000000, 0x00ffffff },
396 { 0x00000000, 0x00ffffff, 0x00ffffff, 0x00000000 },
397 { 0x00000000, 0x00ffffff, 0x00ffffff, 0x00ffffff },
398 { 0x00ffffff, 0x00000000, 0x00000000, 0x00000000 },
399 { 0x00ffffff, 0x00000000, 0x00000000, 0x00ffffff },
400 { 0x00ffffff, 0x00000000, 0x00ffffff, 0x00000000 },
401 { 0x00ffffff, 0x00000000, 0x00ffffff, 0x00ffffff },
402 { 0x00ffffff, 0x00ffffff, 0x00000000, 0x00000000 },
403 { 0x00ffffff, 0x00ffffff, 0x00000000, 0x00ffffff },
404 { 0x00ffffff, 0x00ffffff, 0x00ffffff, 0x00000000 },
405 { 0x00ffffff, 0x00ffffff, 0x00ffffff, 0x00ffffff } };
wdenkc6097192002-11-03 00:24:07 +0000406
407
408/******************************************************************************/
409
wdenkc6097192002-11-03 00:24:07 +0000410static void video_drawchars (int xx, int yy, unsigned char *s, int count)
411{
wdenke55402c2004-03-14 16:51:43 +0000412 u8 *cdat, *dest, *dest0;
413 int rows, offset, c;
wdenkc6097192002-11-03 00:24:07 +0000414
wdenke55402c2004-03-14 16:51:43 +0000415 offset = yy * VIDEO_LINE_LEN + xx * VIDEO_PIXEL_SIZE;
416 dest0 = video_fb_address + offset;
wdenkc6097192002-11-03 00:24:07 +0000417
wdenke55402c2004-03-14 16:51:43 +0000418 switch (VIDEO_DATA_FORMAT) {
419 case GDF__8BIT_INDEX:
420 case GDF__8BIT_332RGB:
421 while (count--) {
422 c = *s;
423 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
424 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
425 rows--;
426 dest += VIDEO_LINE_LEN) {
427 u8 bits = *cdat++;
wdenkc6097192002-11-03 00:24:07 +0000428
wdenke55402c2004-03-14 16:51:43 +0000429 ((u32 *) dest)[0] = (video_font_draw_table8[bits >> 4] & eorx) ^ bgx;
430 ((u32 *) dest)[1] = (video_font_draw_table8[bits & 15] & eorx) ^ bgx;
431 }
432 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
433 s++;
434 }
435 break;
wdenkc6097192002-11-03 00:24:07 +0000436
wdenke55402c2004-03-14 16:51:43 +0000437 case GDF_15BIT_555RGB:
438 while (count--) {
439 c = *s;
440 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
441 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
442 rows--;
443 dest += VIDEO_LINE_LEN) {
444 u8 bits = *cdat++;
wdenkc6097192002-11-03 00:24:07 +0000445
wdenke55402c2004-03-14 16:51:43 +0000446 ((u32 *) dest)[0] = SHORTSWAP32 ((video_font_draw_table15 [bits >> 6] & eorx) ^ bgx);
447 ((u32 *) dest)[1] = SHORTSWAP32 ((video_font_draw_table15 [bits >> 4 & 3] & eorx) ^ bgx);
448 ((u32 *) dest)[2] = SHORTSWAP32 ((video_font_draw_table15 [bits >> 2 & 3] & eorx) ^ bgx);
449 ((u32 *) dest)[3] = SHORTSWAP32 ((video_font_draw_table15 [bits & 3] & eorx) ^ bgx);
450 }
451 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
452 s++;
453 }
454 break;
wdenkc6097192002-11-03 00:24:07 +0000455
wdenke55402c2004-03-14 16:51:43 +0000456 case GDF_16BIT_565RGB:
457 while (count--) {
458 c = *s;
459 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
460 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
461 rows--;
462 dest += VIDEO_LINE_LEN) {
463 u8 bits = *cdat++;
464
465 ((u32 *) dest)[0] = SHORTSWAP32 ((video_font_draw_table16 [bits >> 6] & eorx) ^ bgx);
466 ((u32 *) dest)[1] = SHORTSWAP32 ((video_font_draw_table16 [bits >> 4 & 3] & eorx) ^ bgx);
467 ((u32 *) dest)[2] = SHORTSWAP32 ((video_font_draw_table16 [bits >> 2 & 3] & eorx) ^ bgx);
468 ((u32 *) dest)[3] = SHORTSWAP32 ((video_font_draw_table16 [bits & 3] & eorx) ^ bgx);
469 }
470 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
471 s++;
472 }
473 break;
474
475 case GDF_32BIT_X888RGB:
476 while (count--) {
477 c = *s;
478 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
479 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
480 rows--;
481 dest += VIDEO_LINE_LEN) {
482 u8 bits = *cdat++;
483
484 ((u32 *) dest)[0] = SWAP32 ((video_font_draw_table32 [bits >> 4][0] & eorx) ^ bgx);
485 ((u32 *) dest)[1] = SWAP32 ((video_font_draw_table32 [bits >> 4][1] & eorx) ^ bgx);
486 ((u32 *) dest)[2] = SWAP32 ((video_font_draw_table32 [bits >> 4][2] & eorx) ^ bgx);
487 ((u32 *) dest)[3] = SWAP32 ((video_font_draw_table32 [bits >> 4][3] & eorx) ^ bgx);
488 ((u32 *) dest)[4] = SWAP32 ((video_font_draw_table32 [bits & 15][0] & eorx) ^ bgx);
489 ((u32 *) dest)[5] = SWAP32 ((video_font_draw_table32 [bits & 15][1] & eorx) ^ bgx);
490 ((u32 *) dest)[6] = SWAP32 ((video_font_draw_table32 [bits & 15][2] & eorx) ^ bgx);
491 ((u32 *) dest)[7] = SWAP32 ((video_font_draw_table32 [bits & 15][3] & eorx) ^ bgx);
492 }
493 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
494 s++;
495 }
496 break;
497
498 case GDF_24BIT_888RGB:
499 while (count--) {
500 c = *s;
501 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
502 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
503 rows--;
504 dest += VIDEO_LINE_LEN) {
505 u8 bits = *cdat++;
506
507 ((u32 *) dest)[0] = (video_font_draw_table24[bits >> 4][0] & eorx) ^ bgx;
508 ((u32 *) dest)[1] = (video_font_draw_table24[bits >> 4][1] & eorx) ^ bgx;
509 ((u32 *) dest)[2] = (video_font_draw_table24[bits >> 4][2] & eorx) ^ bgx;
510 ((u32 *) dest)[3] = (video_font_draw_table24[bits & 15][0] & eorx) ^ bgx;
511 ((u32 *) dest)[4] = (video_font_draw_table24[bits & 15][1] & eorx) ^ bgx;
512 ((u32 *) dest)[5] = (video_font_draw_table24[bits & 15][2] & eorx) ^ bgx;
513 }
514 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
515 s++;
516 }
517 break;
wdenk57b2d802003-06-27 21:31:46 +0000518 }
wdenkc6097192002-11-03 00:24:07 +0000519}
520
521/*****************************************************************************/
522
wdenke55402c2004-03-14 16:51:43 +0000523static inline void video_drawstring (int xx, int yy, unsigned char *s)
wdenkc6097192002-11-03 00:24:07 +0000524{
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200525 video_drawchars (xx, yy, s, strlen ((char *)s));
wdenkc6097192002-11-03 00:24:07 +0000526}
527
528/*****************************************************************************/
529
wdenke55402c2004-03-14 16:51:43 +0000530static void video_putchar (int xx, int yy, unsigned char c)
wdenkc6097192002-11-03 00:24:07 +0000531{
Matthias Weisser76d70862010-01-12 12:06:31 +0100532 video_drawchars (xx, yy + video_logo_height, &c, 1);
wdenkc6097192002-11-03 00:24:07 +0000533}
534
535/*****************************************************************************/
536#if defined(CONFIG_CONSOLE_CURSOR) || defined(CONFIG_VIDEO_SW_CURSOR)
wdenke55402c2004-03-14 16:51:43 +0000537static void video_set_cursor (void)
wdenkc6097192002-11-03 00:24:07 +0000538{
wdenke55402c2004-03-14 16:51:43 +0000539 /* swap drawing colors */
540 eorx = fgx;
541 fgx = bgx;
542 bgx = eorx;
543 eorx = fgx ^ bgx;
544 /* draw cursor */
545 video_putchar (console_col * VIDEO_FONT_WIDTH,
546 console_row * VIDEO_FONT_HEIGHT,
547 ' ');
548 /* restore drawing colors */
549 eorx = fgx;
550 fgx = bgx;
551 bgx = eorx;
552 eorx = fgx ^ bgx;
wdenkc6097192002-11-03 00:24:07 +0000553}
554#endif
555/*****************************************************************************/
556#ifdef CONFIG_CONSOLE_CURSOR
557void console_cursor (int state)
558{
wdenke55402c2004-03-14 16:51:43 +0000559 static int last_state = 0;
560
wdenkc6097192002-11-03 00:24:07 +0000561#ifdef CONFIG_CONSOLE_TIME
wdenke55402c2004-03-14 16:51:43 +0000562 struct rtc_time tm;
563 char info[16];
wdenkc6097192002-11-03 00:24:07 +0000564
wdenke55402c2004-03-14 16:51:43 +0000565 /* time update only if cursor is on (faster scroll) */
566 if (state) {
567 rtc_get (&tm);
wdenkc6097192002-11-03 00:24:07 +0000568
wdenke55402c2004-03-14 16:51:43 +0000569 sprintf (info, " %02d:%02d:%02d ", tm.tm_hour, tm.tm_min,
570 tm.tm_sec);
571 video_drawstring (VIDEO_VISIBLE_COLS - 10 * VIDEO_FONT_WIDTH,
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200572 VIDEO_INFO_Y, (uchar *)info);
wdenkc6097192002-11-03 00:24:07 +0000573
wdenke55402c2004-03-14 16:51:43 +0000574 sprintf (info, "%02d.%02d.%04d", tm.tm_mday, tm.tm_mon,
575 tm.tm_year);
576 video_drawstring (VIDEO_VISIBLE_COLS - 10 * VIDEO_FONT_WIDTH,
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200577 VIDEO_INFO_Y + 1 * VIDEO_FONT_HEIGHT, (uchar *)info);
wdenke55402c2004-03-14 16:51:43 +0000578 }
wdenkc6097192002-11-03 00:24:07 +0000579#endif
580
wdenke55402c2004-03-14 16:51:43 +0000581 if (state && (last_state != state)) {
582 video_set_cursor ();
583 }
wdenkc6097192002-11-03 00:24:07 +0000584
wdenke55402c2004-03-14 16:51:43 +0000585 if (!state && (last_state != state)) {
586 /* clear cursor */
587 video_putchar (console_col * VIDEO_FONT_WIDTH,
588 console_row * VIDEO_FONT_HEIGHT,
589 ' ');
590 }
wdenkc6097192002-11-03 00:24:07 +0000591
wdenke55402c2004-03-14 16:51:43 +0000592 last_state = state;
wdenkc6097192002-11-03 00:24:07 +0000593}
594#endif
595
596/*****************************************************************************/
597
598#ifndef VIDEO_HW_RECTFILL
599static void memsetl (int *p, int c, int v)
600{
wdenke55402c2004-03-14 16:51:43 +0000601 while (c--)
602 *(p++) = v;
wdenkc6097192002-11-03 00:24:07 +0000603}
604#endif
605
606/*****************************************************************************/
607
608#ifndef VIDEO_HW_BITBLT
609static void memcpyl (int *d, int *s, int c)
610{
wdenke55402c2004-03-14 16:51:43 +0000611 while (c--)
612 *(d++) = *(s++);
wdenkc6097192002-11-03 00:24:07 +0000613}
614#endif
615
616/*****************************************************************************/
617
618static void console_scrollup (void)
619{
wdenke55402c2004-03-14 16:51:43 +0000620 /* copy up rows ignoring the first one */
wdenkc6097192002-11-03 00:24:07 +0000621
622#ifdef VIDEO_HW_BITBLT
wdenke55402c2004-03-14 16:51:43 +0000623 video_hw_bitblt (VIDEO_PIXEL_SIZE, /* bytes per pixel */
624 0, /* source pos x */
Matthias Weisser76d70862010-01-12 12:06:31 +0100625 video_logo_height + VIDEO_FONT_HEIGHT, /* source pos y */
wdenke55402c2004-03-14 16:51:43 +0000626 0, /* dest pos x */
Matthias Weisser76d70862010-01-12 12:06:31 +0100627 video_logo_height, /* dest pos y */
wdenke55402c2004-03-14 16:51:43 +0000628 VIDEO_VISIBLE_COLS, /* frame width */
Matthias Weisser76d70862010-01-12 12:06:31 +0100629 VIDEO_VISIBLE_ROWS - video_logo_height - VIDEO_FONT_HEIGHT /* frame height */
wdenke55402c2004-03-14 16:51:43 +0000630 );
wdenkc6097192002-11-03 00:24:07 +0000631#else
wdenke55402c2004-03-14 16:51:43 +0000632 memcpyl (CONSOLE_ROW_FIRST, CONSOLE_ROW_SECOND,
633 CONSOLE_SCROLL_SIZE >> 2);
wdenkc6097192002-11-03 00:24:07 +0000634#endif
635
wdenke55402c2004-03-14 16:51:43 +0000636 /* clear the last one */
wdenkc6097192002-11-03 00:24:07 +0000637#ifdef VIDEO_HW_RECTFILL
wdenke55402c2004-03-14 16:51:43 +0000638 video_hw_rectfill (VIDEO_PIXEL_SIZE, /* bytes per pixel */
639 0, /* dest pos x */
640 VIDEO_VISIBLE_ROWS - VIDEO_FONT_HEIGHT, /* dest pos y */
641 VIDEO_VISIBLE_COLS, /* frame width */
642 VIDEO_FONT_HEIGHT, /* frame height */
643 CONSOLE_BG_COL /* fill color */
644 );
wdenkc6097192002-11-03 00:24:07 +0000645#else
wdenke55402c2004-03-14 16:51:43 +0000646 memsetl (CONSOLE_ROW_LAST, CONSOLE_ROW_SIZE >> 2, CONSOLE_BG_COL);
wdenkc6097192002-11-03 00:24:07 +0000647#endif
648}
649
650/*****************************************************************************/
651
652static void console_back (void)
653{
wdenke55402c2004-03-14 16:51:43 +0000654 CURSOR_OFF console_col--;
wdenkc6097192002-11-03 00:24:07 +0000655
wdenke55402c2004-03-14 16:51:43 +0000656 if (console_col < 0) {
657 console_col = CONSOLE_COLS - 1;
658 console_row--;
659 if (console_row < 0)
660 console_row = 0;
661 }
662 video_putchar (console_col * VIDEO_FONT_WIDTH,
663 console_row * VIDEO_FONT_HEIGHT,
664 ' ');
wdenkc6097192002-11-03 00:24:07 +0000665}
666
667/*****************************************************************************/
668
669static void console_newline (void)
670{
Anatolij Gustschin938db912008-01-11 02:39:47 +0100671 /* Check if last character in the line was just drawn. If so, cursor was
672 overwriten and need not to be cleared. Cursor clearing without this
673 check causes overwriting the 1st character of the line if line lenght
674 is >= CONSOLE_COLS
675 */
676 if (console_col < CONSOLE_COLS)
677 CURSOR_OFF
678 console_row++;
wdenke55402c2004-03-14 16:51:43 +0000679 console_col = 0;
wdenkc6097192002-11-03 00:24:07 +0000680
wdenke55402c2004-03-14 16:51:43 +0000681 /* Check if we need to scroll the terminal */
682 if (console_row >= CONSOLE_ROWS) {
683 /* Scroll everything up */
684 console_scrollup ();
wdenkc6097192002-11-03 00:24:07 +0000685
wdenke55402c2004-03-14 16:51:43 +0000686 /* Decrement row number */
687 console_row--;
688 }
wdenkc6097192002-11-03 00:24:07 +0000689}
690
Anatolij Gustschin938db912008-01-11 02:39:47 +0100691static void console_cr (void)
692{
693 CURSOR_OFF console_col = 0;
694}
695
wdenkc6097192002-11-03 00:24:07 +0000696/*****************************************************************************/
697
698void video_putc (const char c)
699{
Anatolij Gustschin938db912008-01-11 02:39:47 +0100700 static int nl = 1;
701
wdenke55402c2004-03-14 16:51:43 +0000702 switch (c) {
Anatolij Gustschin938db912008-01-11 02:39:47 +0100703 case 13: /* back to first column */
704 console_cr ();
wdenke55402c2004-03-14 16:51:43 +0000705 break;
wdenkc6097192002-11-03 00:24:07 +0000706
wdenke55402c2004-03-14 16:51:43 +0000707 case '\n': /* next line */
Anatolij Gustschin938db912008-01-11 02:39:47 +0100708 if (console_col || (!console_col && nl))
709 console_newline ();
710 nl = 1;
wdenke55402c2004-03-14 16:51:43 +0000711 break;
wdenkc6097192002-11-03 00:24:07 +0000712
wdenke55402c2004-03-14 16:51:43 +0000713 case 9: /* tab 8 */
714 CURSOR_OFF console_col |= 0x0008;
715 console_col &= ~0x0007;
wdenkc6097192002-11-03 00:24:07 +0000716
wdenke55402c2004-03-14 16:51:43 +0000717 if (console_col >= CONSOLE_COLS)
718 console_newline ();
719 break;
wdenkc6097192002-11-03 00:24:07 +0000720
wdenke55402c2004-03-14 16:51:43 +0000721 case 8: /* backspace */
722 console_back ();
723 break;
wdenkc6097192002-11-03 00:24:07 +0000724
wdenke55402c2004-03-14 16:51:43 +0000725 default: /* draw the char */
726 video_putchar (console_col * VIDEO_FONT_WIDTH,
727 console_row * VIDEO_FONT_HEIGHT,
728 c);
729 console_col++;
wdenkc6097192002-11-03 00:24:07 +0000730
wdenke55402c2004-03-14 16:51:43 +0000731 /* check for newline */
Anatolij Gustschin938db912008-01-11 02:39:47 +0100732 if (console_col >= CONSOLE_COLS) {
wdenke55402c2004-03-14 16:51:43 +0000733 console_newline ();
Anatolij Gustschin938db912008-01-11 02:39:47 +0100734 nl = 0;
735 }
wdenke55402c2004-03-14 16:51:43 +0000736 }
737CURSOR_SET}
wdenkc6097192002-11-03 00:24:07 +0000738
739
wdenkc6097192002-11-03 00:24:07 +0000740/*****************************************************************************/
741
742void video_puts (const char *s)
743{
wdenke55402c2004-03-14 16:51:43 +0000744 int count = strlen (s);
745
746 while (count--)
747 video_putc (*s++);
748}
749
750/*****************************************************************************/
751
Jon Loeligerb1d408a2007-07-09 17:30:01 -0500752#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
wdenke55402c2004-03-14 16:51:43 +0000753
754#define FILL_8BIT_332RGB(r,g,b) { \
755 *fb = ((r>>5)<<5) | ((g>>5)<<2) | (b>>6); \
756 fb ++; \
757}
758
759#define FILL_15BIT_555RGB(r,g,b) { \
760 *(unsigned short *)fb = SWAP16((unsigned short)(((r>>3)<<10) | ((g>>3)<<5) | (b>>3))); \
761 fb += 2; \
762}
763
764#define FILL_16BIT_565RGB(r,g,b) { \
765 *(unsigned short *)fb = SWAP16((unsigned short)((((r)>>3)<<11) | (((g)>>2)<<5) | ((b)>>3))); \
766 fb += 2; \
767}
768
769#define FILL_32BIT_X888RGB(r,g,b) { \
770 *(unsigned long *)fb = SWAP32((unsigned long)(((r<<16) | (g<<8) | b))); \
771 fb += 4; \
772}
773
774#ifdef VIDEO_FB_LITTLE_ENDIAN
775#define FILL_24BIT_888RGB(r,g,b) { \
776 fb[0] = b; \
777 fb[1] = g; \
778 fb[2] = r; \
779 fb += 3; \
780}
781#else
782#define FILL_24BIT_888RGB(r,g,b) { \
783 fb[0] = r; \
784 fb[1] = g; \
785 fb[2] = b; \
786 fb += 3; \
787}
788#endif
789
Anatolij Gustschin18b80362008-08-08 18:00:40 +0200790#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
791static void inline fill_555rgb_pswap(uchar *fb, int x,
792 u8 r, u8 g, u8 b)
793{
794 ushort *dst = (ushort *)fb;
795 ushort color = (ushort)(((r >> 3) << 10) |
796 ((g >> 3) << 5) |
797 (b >> 3));
798 if (x & 1)
799 *(--dst) = color;
800 else
801 *(++dst) = color;
802}
803#endif
wdenke55402c2004-03-14 16:51:43 +0000804
805/*
806 * Display the BMP file located at address bmp_image.
807 * Only uncompressed
808 */
809int video_display_bitmap (ulong bmp_image, int x, int y)
810{
811 ushort xcount, ycount;
812 uchar *fb;
813 bmp_image_t *bmp = (bmp_image_t *) bmp_image;
814 uchar *bmap;
815 ushort padded_line;
816 unsigned long width, height, bpp;
817 unsigned colors;
818 unsigned long compression;
819 bmp_color_table_entry_t cte;
Stefan Roesed9d97742005-09-22 09:04:17 +0200820#ifdef CONFIG_VIDEO_BMP_GZIP
821 unsigned char *dst = NULL;
822 ulong len;
823#endif
wdenkc6097192002-11-03 00:24:07 +0000824
wdenke55402c2004-03-14 16:51:43 +0000825 WATCHDOG_RESET ();
826
827 if (!((bmp->header.signature[0] == 'B') &&
828 (bmp->header.signature[1] == 'M'))) {
Stefan Roesed9d97742005-09-22 09:04:17 +0200829
830#ifdef CONFIG_VIDEO_BMP_GZIP
831 /*
832 * Could be a gzipped bmp image, try to decrompress...
833 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200834 len = CONFIG_SYS_VIDEO_LOGO_MAX_SIZE;
835 dst = malloc(CONFIG_SYS_VIDEO_LOGO_MAX_SIZE);
Stefan Roese13b93692005-10-08 10:19:07 +0200836 if (dst == NULL) {
837 printf("Error: malloc in gunzip failed!\n");
838 return(1);
839 }
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200840 if (gunzip(dst, CONFIG_SYS_VIDEO_LOGO_MAX_SIZE, (uchar *)bmp_image, &len) != 0) {
Stefan Roesed9d97742005-09-22 09:04:17 +0200841 printf ("Error: no valid bmp or bmp.gz image at %lx\n", bmp_image);
842 free(dst);
843 return 1;
844 }
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200845 if (len == CONFIG_SYS_VIDEO_LOGO_MAX_SIZE) {
846 printf("Image could be truncated (increase CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)!\n");
Stefan Roese13b93692005-10-08 10:19:07 +0200847 }
Stefan Roesed9d97742005-09-22 09:04:17 +0200848
849 /*
850 * Set addr to decompressed image
851 */
852 bmp = (bmp_image_t *)dst;
853
854 if (!((bmp->header.signature[0] == 'B') &&
855 (bmp->header.signature[1] == 'M'))) {
856 printf ("Error: no valid bmp.gz image at %lx\n", bmp_image);
Matthias Fuchsa7c5a592008-04-21 11:19:04 +0200857 free(dst);
Stefan Roesed9d97742005-09-22 09:04:17 +0200858 return 1;
859 }
860#else
wdenke55402c2004-03-14 16:51:43 +0000861 printf ("Error: no valid bmp image at %lx\n", bmp_image);
862 return 1;
Stefan Roesed9d97742005-09-22 09:04:17 +0200863#endif /* CONFIG_VIDEO_BMP_GZIP */
wdenke55402c2004-03-14 16:51:43 +0000864 }
865
866 width = le32_to_cpu (bmp->header.width);
867 height = le32_to_cpu (bmp->header.height);
868 bpp = le16_to_cpu (bmp->header.bit_count);
869 colors = le32_to_cpu (bmp->header.colors_used);
870 compression = le32_to_cpu (bmp->header.compression);
871
872 debug ("Display-bmp: %d x %d with %d colors\n",
873 width, height, colors);
874
875 if (compression != BMP_BI_RGB) {
876 printf ("Error: compression type %ld not supported\n",
877 compression);
Matthias Fuchsa7c5a592008-04-21 11:19:04 +0200878#ifdef CONFIG_VIDEO_BMP_GZIP
879 if (dst)
880 free(dst);
881#endif
wdenke55402c2004-03-14 16:51:43 +0000882 return 1;
883 }
884
885 padded_line = (((width * bpp + 7) / 8) + 3) & ~0x3;
886
Matthias Weisser53884182009-07-09 16:07:30 +0200887#ifdef CONFIG_SPLASH_SCREEN_ALIGN
888 if (x == BMP_ALIGN_CENTER)
889 x = max(0, (VIDEO_VISIBLE_COLS - width) / 2);
890 else if (x < 0)
891 x = max(0, VIDEO_VISIBLE_COLS - width + x + 1);
892
893 if (y == BMP_ALIGN_CENTER)
894 y = max(0, (VIDEO_VISIBLE_ROWS - height) / 2);
895 else if (y < 0)
896 y = max(0, VIDEO_VISIBLE_ROWS - height + y + 1);
897#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
898
wdenke55402c2004-03-14 16:51:43 +0000899 if ((x + width) > VIDEO_VISIBLE_COLS)
900 width = VIDEO_VISIBLE_COLS - x;
901 if ((y + height) > VIDEO_VISIBLE_ROWS)
902 height = VIDEO_VISIBLE_ROWS - y;
903
904 bmap = (uchar *) bmp + le32_to_cpu (bmp->header.data_offset);
905 fb = (uchar *) (video_fb_address +
906 ((y + height - 1) * VIDEO_COLS * VIDEO_PIXEL_SIZE) +
907 x * VIDEO_PIXEL_SIZE);
908
909 /* We handle only 8bpp or 24 bpp bitmap */
910 switch (le16_to_cpu (bmp->header.bit_count)) {
911 case 8:
912 padded_line -= width;
913 if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
914 /* Copy colormap */
915 for (xcount = 0; xcount < colors; ++xcount) {
916 cte = bmp->color_table[xcount];
917 video_set_lut (xcount, cte.red, cte.green, cte.blue);
918 }
919 }
920 ycount = height;
921 switch (VIDEO_DATA_FORMAT) {
922 case GDF__8BIT_INDEX:
923 while (ycount--) {
924 WATCHDOG_RESET ();
925 xcount = width;
926 while (xcount--) {
927 *fb++ = *bmap++;
928 }
929 bmap += padded_line;
930 fb -= (VIDEO_VISIBLE_COLS + width) * VIDEO_PIXEL_SIZE;
931 }
932 break;
933 case GDF__8BIT_332RGB:
934 while (ycount--) {
935 WATCHDOG_RESET ();
936 xcount = width;
937 while (xcount--) {
938 cte = bmp->color_table[*bmap++];
939 FILL_8BIT_332RGB (cte.red, cte.green, cte.blue);
940 }
941 bmap += padded_line;
942 fb -= (VIDEO_VISIBLE_COLS + width) * VIDEO_PIXEL_SIZE;
943 }
944 break;
945 case GDF_15BIT_555RGB:
946 while (ycount--) {
Anatolij Gustschin18b80362008-08-08 18:00:40 +0200947#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
948 int xpos = x;
949#endif
wdenke55402c2004-03-14 16:51:43 +0000950 WATCHDOG_RESET ();
951 xcount = width;
952 while (xcount--) {
953 cte = bmp->color_table[*bmap++];
Andrew Dyer5601c612008-08-29 12:30:39 -0500954#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Anatolij Gustschin18b80362008-08-08 18:00:40 +0200955 fill_555rgb_pswap (fb, xpos++, cte.red,
956 cte.green, cte.blue);
957 fb += 2;
Andrew Dyer5601c612008-08-29 12:30:39 -0500958#else
959 FILL_15BIT_555RGB (cte.red, cte.green, cte.blue);
Anatolij Gustschin18b80362008-08-08 18:00:40 +0200960#endif
wdenke55402c2004-03-14 16:51:43 +0000961 }
962 bmap += padded_line;
963 fb -= (VIDEO_VISIBLE_COLS + width) * VIDEO_PIXEL_SIZE;
964 }
965 break;
966 case GDF_16BIT_565RGB:
967 while (ycount--) {
968 WATCHDOG_RESET ();
969 xcount = width;
970 while (xcount--) {
971 cte = bmp->color_table[*bmap++];
972 FILL_16BIT_565RGB (cte.red, cte.green, cte.blue);
973 }
974 bmap += padded_line;
975 fb -= (VIDEO_VISIBLE_COLS + width) * VIDEO_PIXEL_SIZE;
976 }
977 break;
978 case GDF_32BIT_X888RGB:
979 while (ycount--) {
980 WATCHDOG_RESET ();
981 xcount = width;
982 while (xcount--) {
983 cte = bmp->color_table[*bmap++];
984 FILL_32BIT_X888RGB (cte.red, cte.green, cte.blue);
985 }
986 bmap += padded_line;
987 fb -= (VIDEO_VISIBLE_COLS + width) * VIDEO_PIXEL_SIZE;
988 }
989 break;
990 case GDF_24BIT_888RGB:
991 while (ycount--) {
992 WATCHDOG_RESET ();
993 xcount = width;
994 while (xcount--) {
995 cte = bmp->color_table[*bmap++];
996 FILL_24BIT_888RGB (cte.red, cte.green, cte.blue);
997 }
998 bmap += padded_line;
999 fb -= (VIDEO_VISIBLE_COLS + width) * VIDEO_PIXEL_SIZE;
1000 }
1001 break;
1002 }
1003 break;
1004 case 24:
1005 padded_line -= 3 * width;
1006 ycount = height;
1007 switch (VIDEO_DATA_FORMAT) {
1008 case GDF__8BIT_332RGB:
1009 while (ycount--) {
1010 WATCHDOG_RESET ();
1011 xcount = width;
1012 while (xcount--) {
1013 FILL_8BIT_332RGB (bmap[2], bmap[1], bmap[0]);
1014 bmap += 3;
1015 }
1016 bmap += padded_line;
1017 fb -= (VIDEO_VISIBLE_COLS + width) * VIDEO_PIXEL_SIZE;
1018 }
1019 break;
1020 case GDF_15BIT_555RGB:
1021 while (ycount--) {
Anatolij Gustschin18b80362008-08-08 18:00:40 +02001022#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1023 int xpos = x;
1024#endif
wdenke55402c2004-03-14 16:51:43 +00001025 WATCHDOG_RESET ();
1026 xcount = width;
1027 while (xcount--) {
Andrew Dyer5601c612008-08-29 12:30:39 -05001028#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Anatolij Gustschin18b80362008-08-08 18:00:40 +02001029 fill_555rgb_pswap (fb, xpos++, bmap[2],
1030 bmap[1], bmap[0]);
1031 fb += 2;
Andrew Dyer5601c612008-08-29 12:30:39 -05001032#else
1033 FILL_15BIT_555RGB (bmap[2], bmap[1], bmap[0]);
Anatolij Gustschin18b80362008-08-08 18:00:40 +02001034#endif
wdenke55402c2004-03-14 16:51:43 +00001035 bmap += 3;
1036 }
1037 bmap += padded_line;
1038 fb -= (VIDEO_VISIBLE_COLS + width) * VIDEO_PIXEL_SIZE;
1039 }
1040 break;
1041 case GDF_16BIT_565RGB:
1042 while (ycount--) {
1043 WATCHDOG_RESET ();
1044 xcount = width;
1045 while (xcount--) {
1046 FILL_16BIT_565RGB (bmap[2], bmap[1], bmap[0]);
1047 bmap += 3;
1048 }
1049 bmap += padded_line;
1050 fb -= (VIDEO_VISIBLE_COLS + width) * VIDEO_PIXEL_SIZE;
1051 }
1052 break;
1053 case GDF_32BIT_X888RGB:
1054 while (ycount--) {
1055 WATCHDOG_RESET ();
1056 xcount = width;
1057 while (xcount--) {
1058 FILL_32BIT_X888RGB (bmap[2], bmap[1], bmap[0]);
1059 bmap += 3;
1060 }
1061 bmap += padded_line;
1062 fb -= (VIDEO_VISIBLE_COLS + width) * VIDEO_PIXEL_SIZE;
1063 }
1064 break;
1065 case GDF_24BIT_888RGB:
1066 while (ycount--) {
1067 WATCHDOG_RESET ();
1068 xcount = width;
1069 while (xcount--) {
1070 FILL_24BIT_888RGB (bmap[2], bmap[1], bmap[0]);
1071 bmap += 3;
1072 }
1073 bmap += padded_line;
1074 fb -= (VIDEO_VISIBLE_COLS + width) * VIDEO_PIXEL_SIZE;
1075 }
1076 break;
1077 default:
1078 printf ("Error: 24 bits/pixel bitmap incompatible with current video mode\n");
1079 break;
1080 }
1081 break;
1082 default:
1083 printf ("Error: %d bit/pixel bitmaps not supported by U-Boot\n",
1084 le16_to_cpu (bmp->header.bit_count));
1085 break;
1086 }
Stefan Roesed9d97742005-09-22 09:04:17 +02001087
1088#ifdef CONFIG_VIDEO_BMP_GZIP
1089 if (dst) {
1090 free(dst);
1091 }
1092#endif
1093
wdenke55402c2004-03-14 16:51:43 +00001094 return (0);
wdenkc6097192002-11-03 00:24:07 +00001095}
Jon Loeligerb1d408a2007-07-09 17:30:01 -05001096#endif
wdenkc6097192002-11-03 00:24:07 +00001097
1098/*****************************************************************************/
1099
1100#ifdef CONFIG_VIDEO_LOGO
1101void logo_plot (void *screen, int width, int x, int y)
1102{
wdenk9dd2b882002-12-03 21:28:10 +00001103
wdenke55402c2004-03-14 16:51:43 +00001104 int xcount, i;
1105 int skip = (width - VIDEO_LOGO_WIDTH) * VIDEO_PIXEL_SIZE;
Matthias Weisser76d70862010-01-12 12:06:31 +01001106 int ycount = video_logo_height;
wdenke55402c2004-03-14 16:51:43 +00001107 unsigned char r, g, b, *logo_red, *logo_blue, *logo_green;
1108 unsigned char *source;
Anatolij Gustschin06bf2a62008-08-08 18:00:39 +02001109 unsigned char *dest = (unsigned char *)screen +
1110 ((y * width * VIDEO_PIXEL_SIZE) +
1111 x * VIDEO_PIXEL_SIZE);
wdenkc6097192002-11-03 00:24:07 +00001112
wdenk9dd2b882002-12-03 21:28:10 +00001113#ifdef CONFIG_VIDEO_BMP_LOGO
wdenke55402c2004-03-14 16:51:43 +00001114 source = bmp_logo_bitmap;
wdenk57b2d802003-06-27 21:31:46 +00001115
wdenke55402c2004-03-14 16:51:43 +00001116 /* Allocate temporary space for computing colormap */
1117 logo_red = malloc (BMP_LOGO_COLORS);
1118 logo_green = malloc (BMP_LOGO_COLORS);
1119 logo_blue = malloc (BMP_LOGO_COLORS);
1120 /* Compute color map */
1121 for (i = 0; i < VIDEO_LOGO_COLORS; i++) {
1122 logo_red[i] = (bmp_logo_palette[i] & 0x0f00) >> 4;
1123 logo_green[i] = (bmp_logo_palette[i] & 0x00f0);
1124 logo_blue[i] = (bmp_logo_palette[i] & 0x000f) << 4;
1125 }
wdenk9dd2b882002-12-03 21:28:10 +00001126#else
wdenke55402c2004-03-14 16:51:43 +00001127 source = linux_logo;
1128 logo_red = linux_logo_red;
1129 logo_green = linux_logo_green;
1130 logo_blue = linux_logo_blue;
wdenk9dd2b882002-12-03 21:28:10 +00001131#endif
wdenk57b2d802003-06-27 21:31:46 +00001132
wdenke55402c2004-03-14 16:51:43 +00001133 if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
1134 for (i = 0; i < VIDEO_LOGO_COLORS; i++) {
1135 video_set_lut (i + VIDEO_LOGO_LUT_OFFSET,
1136 logo_red[i], logo_green[i], logo_blue[i]);
1137 }
wdenk57b2d802003-06-27 21:31:46 +00001138 }
wdenkc6097192002-11-03 00:24:07 +00001139
wdenke55402c2004-03-14 16:51:43 +00001140 while (ycount--) {
Anatolij Gustschin18b80362008-08-08 18:00:40 +02001141#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1142 int xpos = x;
1143#endif
wdenke55402c2004-03-14 16:51:43 +00001144 xcount = VIDEO_LOGO_WIDTH;
1145 while (xcount--) {
1146 r = logo_red[*source - VIDEO_LOGO_LUT_OFFSET];
1147 g = logo_green[*source - VIDEO_LOGO_LUT_OFFSET];
1148 b = logo_blue[*source - VIDEO_LOGO_LUT_OFFSET];
wdenk57b2d802003-06-27 21:31:46 +00001149
wdenke55402c2004-03-14 16:51:43 +00001150 switch (VIDEO_DATA_FORMAT) {
1151 case GDF__8BIT_INDEX:
1152 *dest = *source;
1153 break;
1154 case GDF__8BIT_332RGB:
1155 *dest = ((r >> 5) << 5) | ((g >> 5) << 2) | (b >> 6);
1156 break;
1157 case GDF_15BIT_555RGB:
Andrew Dyer5601c612008-08-29 12:30:39 -05001158#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1159 fill_555rgb_pswap (dest, xpos++, r, g, b);
1160#else
wdenke55402c2004-03-14 16:51:43 +00001161 *(unsigned short *) dest =
1162 SWAP16 ((unsigned short) (((r >> 3) << 10) | ((g >> 3) << 5) | (b >> 3)));
Anatolij Gustschin3545f592008-01-11 14:30:01 +01001163#endif
wdenke55402c2004-03-14 16:51:43 +00001164 break;
1165 case GDF_16BIT_565RGB:
1166 *(unsigned short *) dest =
1167 SWAP16 ((unsigned short) (((r >> 3) << 11) | ((g >> 2) << 5) | (b >> 3)));
1168 break;
1169 case GDF_32BIT_X888RGB:
1170 *(unsigned long *) dest =
1171 SWAP32 ((unsigned long) ((r << 16) | (g << 8) | b));
1172 break;
1173 case GDF_24BIT_888RGB:
wdenkc6097192002-11-03 00:24:07 +00001174#ifdef VIDEO_FB_LITTLE_ENDIAN
wdenke55402c2004-03-14 16:51:43 +00001175 dest[0] = b;
1176 dest[1] = g;
1177 dest[2] = r;
wdenkc6097192002-11-03 00:24:07 +00001178#else
wdenke55402c2004-03-14 16:51:43 +00001179 dest[0] = r;
1180 dest[1] = g;
1181 dest[2] = b;
wdenkc6097192002-11-03 00:24:07 +00001182#endif
wdenke55402c2004-03-14 16:51:43 +00001183 break;
1184 }
1185 source++;
1186 dest += VIDEO_PIXEL_SIZE;
1187 }
1188 dest += skip;
wdenk57b2d802003-06-27 21:31:46 +00001189 }
wdenk9dd2b882002-12-03 21:28:10 +00001190#ifdef CONFIG_VIDEO_BMP_LOGO
wdenke55402c2004-03-14 16:51:43 +00001191 free (logo_red);
1192 free (logo_green);
1193 free (logo_blue);
wdenk9dd2b882002-12-03 21:28:10 +00001194#endif
wdenkc6097192002-11-03 00:24:07 +00001195}
1196
wdenkc6097192002-11-03 00:24:07 +00001197/*****************************************************************************/
1198
1199static void *video_logo (void)
1200{
wdenke55402c2004-03-14 16:51:43 +00001201 char info[128];
1202 extern char version_string;
Anatolij Gustschine6e98b22009-04-23 12:35:22 +02001203 int space, len, y_off = 0;
wdenke55402c2004-03-14 16:51:43 +00001204
1205#ifdef CONFIG_SPLASH_SCREEN
1206 char *s;
1207 ulong addr;
1208
1209 if ((s = getenv ("splashimage")) != NULL) {
Matthias Weisser53884182009-07-09 16:07:30 +02001210 int x = 0, y = 0;
1211
wdenke55402c2004-03-14 16:51:43 +00001212 addr = simple_strtoul (s, NULL, 16);
Matthias Weisser53884182009-07-09 16:07:30 +02001213#ifdef CONFIG_SPLASH_SCREEN_ALIGN
1214 if ((s = getenv ("splashpos")) != NULL) {
1215 if (s[0] == 'm')
1216 x = BMP_ALIGN_CENTER;
1217 else
1218 x = simple_strtol (s, NULL, 0);
1219
1220 if ((s = strchr (s + 1, ',')) != NULL) {
1221 if (s[1] == 'm')
1222 y = BMP_ALIGN_CENTER;
1223 else
1224 y = simple_strtol (s + 1, NULL, 0);
1225 }
1226 }
1227#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
wdenke55402c2004-03-14 16:51:43 +00001228
Matthias Weisser53884182009-07-09 16:07:30 +02001229 if (video_display_bitmap (addr, x, y) == 0) {
Matthias Weisser76d70862010-01-12 12:06:31 +01001230 video_logo_height = 0;
wdenke55402c2004-03-14 16:51:43 +00001231 return ((void *) (video_fb_address));
1232 }
1233 }
1234#endif /* CONFIG_SPLASH_SCREEN */
1235
wdenke55402c2004-03-14 16:51:43 +00001236 logo_plot (video_fb_address, VIDEO_COLS, 0, 0);
wdenkc6097192002-11-03 00:24:07 +00001237
wdenke55402c2004-03-14 16:51:43 +00001238 sprintf (info, " %s", &version_string);
Anatolij Gustschine6e98b22009-04-23 12:35:22 +02001239
1240 space = (VIDEO_LINE_LEN / 2 - VIDEO_INFO_X) / VIDEO_FONT_WIDTH;
1241 len = strlen(info);
1242
1243 if (len > space) {
1244 video_drawchars (VIDEO_INFO_X, VIDEO_INFO_Y,
1245 (uchar *)info, space);
1246 video_drawchars (VIDEO_INFO_X + VIDEO_FONT_WIDTH,
1247 VIDEO_INFO_Y + VIDEO_FONT_HEIGHT,
1248 (uchar *)info + space, len - space);
1249 y_off = 1;
1250 } else
1251 video_drawstring (VIDEO_INFO_X, VIDEO_INFO_Y, (uchar *)info);
wdenkc6097192002-11-03 00:24:07 +00001252
1253#ifdef CONFIG_CONSOLE_EXTRA_INFO
wdenke55402c2004-03-14 16:51:43 +00001254 {
Matthias Weisser76d70862010-01-12 12:06:31 +01001255 int i, n = ((video_logo_height - VIDEO_FONT_HEIGHT) / VIDEO_FONT_HEIGHT);
wdenkc6097192002-11-03 00:24:07 +00001256
wdenke55402c2004-03-14 16:51:43 +00001257 for (i = 1; i < n; i++) {
1258 video_get_info_str (i, info);
Anatolij Gustschine6e98b22009-04-23 12:35:22 +02001259 if (!*info)
1260 continue;
1261
1262 len = strlen(info);
1263 if (len > space) {
1264 video_drawchars (VIDEO_INFO_X,
1265 VIDEO_INFO_Y +
1266 (i + y_off) * VIDEO_FONT_HEIGHT,
1267 (uchar *)info, space);
1268 y_off++;
1269 video_drawchars (VIDEO_INFO_X + VIDEO_FONT_WIDTH,
1270 VIDEO_INFO_Y +
1271 (i + y_off) * VIDEO_FONT_HEIGHT,
1272 (uchar *)info + space,
1273 len - space);
1274 } else {
wdenke55402c2004-03-14 16:51:43 +00001275 video_drawstring (VIDEO_INFO_X,
Anatolij Gustschine6e98b22009-04-23 12:35:22 +02001276 VIDEO_INFO_Y +
1277 (i + y_off) * VIDEO_FONT_HEIGHT,
Wolfgang Denk7fb52662005-10-13 16:45:02 +02001278 (uchar *)info);
Anatolij Gustschine6e98b22009-04-23 12:35:22 +02001279 }
wdenke55402c2004-03-14 16:51:43 +00001280 }
1281 }
wdenkc6097192002-11-03 00:24:07 +00001282#endif
1283
Matthias Weisser76d70862010-01-12 12:06:31 +01001284 return (video_fb_address + video_logo_height * VIDEO_LINE_LEN);
wdenkc6097192002-11-03 00:24:07 +00001285}
1286#endif
1287
1288
1289/*****************************************************************************/
1290
wdenke55402c2004-03-14 16:51:43 +00001291static int video_init (void)
wdenkc6097192002-11-03 00:24:07 +00001292{
wdenke55402c2004-03-14 16:51:43 +00001293 unsigned char color8;
wdenkc6097192002-11-03 00:24:07 +00001294
wdenke55402c2004-03-14 16:51:43 +00001295 if ((pGD = video_hw_init ()) == NULL)
1296 return -1;
wdenkc6097192002-11-03 00:24:07 +00001297
wdenke55402c2004-03-14 16:51:43 +00001298 video_fb_address = (void *) VIDEO_FB_ADRS;
wdenkc6097192002-11-03 00:24:07 +00001299#ifdef CONFIG_VIDEO_HW_CURSOR
wdenke55402c2004-03-14 16:51:43 +00001300 video_init_hw_cursor (VIDEO_FONT_WIDTH, VIDEO_FONT_HEIGHT);
wdenkc6097192002-11-03 00:24:07 +00001301#endif
1302
wdenke55402c2004-03-14 16:51:43 +00001303 /* Init drawing pats */
1304 switch (VIDEO_DATA_FORMAT) {
1305 case GDF__8BIT_INDEX:
1306 video_set_lut (0x01, CONSOLE_FG_COL, CONSOLE_FG_COL, CONSOLE_FG_COL);
1307 video_set_lut (0x00, CONSOLE_BG_COL, CONSOLE_BG_COL, CONSOLE_BG_COL);
1308 fgx = 0x01010101;
1309 bgx = 0x00000000;
1310 break;
1311 case GDF__8BIT_332RGB:
1312 color8 = ((CONSOLE_FG_COL & 0xe0) |
1313 ((CONSOLE_FG_COL >> 3) & 0x1c) | CONSOLE_FG_COL >> 6);
1314 fgx = (color8 << 24) | (color8 << 16) | (color8 << 8) | color8;
1315 color8 = ((CONSOLE_BG_COL & 0xe0) |
1316 ((CONSOLE_BG_COL >> 3) & 0x1c) | CONSOLE_BG_COL >> 6);
1317 bgx = (color8 << 24) | (color8 << 16) | (color8 << 8) | color8;
1318 break;
1319 case GDF_15BIT_555RGB:
1320 fgx = (((CONSOLE_FG_COL >> 3) << 26) |
1321 ((CONSOLE_FG_COL >> 3) << 21) | ((CONSOLE_FG_COL >> 3) << 16) |
1322 ((CONSOLE_FG_COL >> 3) << 10) | ((CONSOLE_FG_COL >> 3) << 5) |
1323 (CONSOLE_FG_COL >> 3));
1324 bgx = (((CONSOLE_BG_COL >> 3) << 26) |
1325 ((CONSOLE_BG_COL >> 3) << 21) | ((CONSOLE_BG_COL >> 3) << 16) |
1326 ((CONSOLE_BG_COL >> 3) << 10) | ((CONSOLE_BG_COL >> 3) << 5) |
1327 (CONSOLE_BG_COL >> 3));
1328 break;
1329 case GDF_16BIT_565RGB:
1330 fgx = (((CONSOLE_FG_COL >> 3) << 27) |
1331 ((CONSOLE_FG_COL >> 2) << 21) | ((CONSOLE_FG_COL >> 3) << 16) |
1332 ((CONSOLE_FG_COL >> 3) << 11) | ((CONSOLE_FG_COL >> 2) << 5) |
1333 (CONSOLE_FG_COL >> 3));
1334 bgx = (((CONSOLE_BG_COL >> 3) << 27) |
1335 ((CONSOLE_BG_COL >> 2) << 21) | ((CONSOLE_BG_COL >> 3) << 16) |
1336 ((CONSOLE_BG_COL >> 3) << 11) | ((CONSOLE_BG_COL >> 2) << 5) |
1337 (CONSOLE_BG_COL >> 3));
1338 break;
1339 case GDF_32BIT_X888RGB:
1340 fgx = (CONSOLE_FG_COL << 16) | (CONSOLE_FG_COL << 8) | CONSOLE_FG_COL;
1341 bgx = (CONSOLE_BG_COL << 16) | (CONSOLE_BG_COL << 8) | CONSOLE_BG_COL;
1342 break;
1343 case GDF_24BIT_888RGB:
1344 fgx = (CONSOLE_FG_COL << 24) | (CONSOLE_FG_COL << 16) |
1345 (CONSOLE_FG_COL << 8) | CONSOLE_FG_COL;
1346 bgx = (CONSOLE_BG_COL << 24) | (CONSOLE_BG_COL << 16) |
1347 (CONSOLE_BG_COL << 8) | CONSOLE_BG_COL;
1348 break;
1349 }
1350 eorx = fgx ^ bgx;
wdenkc6097192002-11-03 00:24:07 +00001351
1352#ifdef CONFIG_VIDEO_LOGO
wdenke55402c2004-03-14 16:51:43 +00001353 /* Plot the logo and get start point of console */
1354 PRINTD ("Video: Drawing the logo ...\n");
1355 video_console_address = video_logo ();
wdenkc6097192002-11-03 00:24:07 +00001356#else
wdenke55402c2004-03-14 16:51:43 +00001357 video_console_address = video_fb_address;
wdenkc6097192002-11-03 00:24:07 +00001358#endif
1359
wdenke55402c2004-03-14 16:51:43 +00001360 /* Initialize the console */
1361 console_col = 0;
1362 console_row = 0;
wdenkc6097192002-11-03 00:24:07 +00001363
wdenke55402c2004-03-14 16:51:43 +00001364 return 0;
wdenkc6097192002-11-03 00:24:07 +00001365}
1366
1367
1368/*****************************************************************************/
1369
Wolfgang Denkd0e4e2a2009-05-15 10:07:43 +02001370/*
1371 * Implement a weak default function for boards that optionally
1372 * need to skip the video initialization.
1373 */
1374int __board_video_skip(void)
1375{
1376 /* As default, don't skip test */
1377 return 0;
1378}
1379int board_video_skip(void) __attribute__((weak, alias("__board_video_skip")));
1380
wdenkc6097192002-11-03 00:24:07 +00001381int drv_video_init (void)
1382{
wdenke55402c2004-03-14 16:51:43 +00001383 int skip_dev_init;
Jean-Christophe PLAGNIOL-VILLARD2a7a0312009-05-16 12:14:54 +02001384 struct stdio_dev console_dev;
wdenkc6097192002-11-03 00:24:07 +00001385
Wolfgang Denkd0e4e2a2009-05-15 10:07:43 +02001386 /* Check if video initialization should be skipped */
1387 if (board_video_skip())
1388 return 0;
1389
wdenk7dd13292004-07-11 20:04:51 +00001390 /* Init video chip - returns with framebuffer cleared */
Wolfgang Denk50bc99c2009-05-15 10:07:42 +02001391 skip_dev_init = (video_init () == -1);
wdenkc6097192002-11-03 00:24:07 +00001392
Wolfgang Denk50bc99c2009-05-15 10:07:42 +02001393#if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
wdenke55402c2004-03-14 16:51:43 +00001394 PRINTD ("KBD: Keyboard init ...\n");
Wolfgang Denk50bc99c2009-05-15 10:07:42 +02001395 skip_dev_init |= (VIDEO_KBD_INIT_FCT == -1);
1396#endif
wdenkc6097192002-11-03 00:24:07 +00001397
Wolfgang Denk50bc99c2009-05-15 10:07:42 +02001398 if (skip_dev_init)
1399 return 0;
wdenkc6097192002-11-03 00:24:07 +00001400
Wolfgang Denk50bc99c2009-05-15 10:07:42 +02001401 /* Init vga device */
1402 memset (&console_dev, 0, sizeof (console_dev));
1403 strcpy (console_dev.name, "vga");
1404 console_dev.ext = DEV_EXT_VIDEO; /* Video extensions */
1405 console_dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_SYSTEM;
1406 console_dev.putc = video_putc; /* 'putc' function */
1407 console_dev.puts = video_puts; /* 'puts' function */
1408 console_dev.tstc = NULL; /* 'tstc' function */
1409 console_dev.getc = NULL; /* 'getc' function */
1410
1411#if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
1412 /* Also init console device */
1413 console_dev.flags |= DEV_FLAGS_INPUT;
1414 console_dev.tstc = VIDEO_TSTC_FCT; /* 'tstc' function */
1415 console_dev.getc = VIDEO_GETC_FCT; /* 'getc' function */
wdenkc6097192002-11-03 00:24:07 +00001416#endif /* CONFIG_VGA_AS_SINGLE_DEVICE */
Wolfgang Denk50bc99c2009-05-15 10:07:42 +02001417
Jean-Christophe PLAGNIOL-VILLARD2a7a0312009-05-16 12:14:54 +02001418 if (stdio_register (&console_dev) != 0)
Wolfgang Denk50bc99c2009-05-15 10:07:42 +02001419 return 0;
1420
1421 /* Return success */
1422 return 1;
wdenkc6097192002-11-03 00:24:07 +00001423}