]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - drivers/video/cfb_console.c
Merge branch 'master' of git://git.denx.de/u-boot-imx
[karo-tx-uboot.git] / drivers / video / cfb_console.c
1 /*
2  * (C) Copyright 2002 ELTEC Elektronik AG
3  * Frank Gottschling <fgottschling@eltec.de>
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 /*
9  * cfb_console.c
10  *
11  * Color Framebuffer Console driver for 8/15/16/24/32 bits per pixel.
12  *
13  * At the moment only the 8x16 font is tested and the font fore- and
14  * background color is limited to black/white/gray colors. The Linux
15  * logo can be placed in the upper left corner and additional board
16  * information strings (that normally goes to serial port) can be drawn.
17  *
18  * The console driver can use the standard PC keyboard interface (i8042)
19  * for character input. Character output goes to a memory mapped video
20  * framebuffer with little or big-endian organisation.
21  * With environment setting 'console=serial' the console i/o can be
22  * forced to serial port.
23  *
24  * The driver uses graphic specific defines/parameters/functions:
25  *
26  * (for SMI LynxE graphic chip)
27  *
28  * CONFIG_VIDEO_SMI_LYNXEM    - use graphic driver for SMI 710,712,810
29  * VIDEO_FB_LITTLE_ENDIAN     - framebuffer organisation default: big endian
30  * VIDEO_HW_RECTFILL          - graphic driver supports hardware rectangle fill
31  * VIDEO_HW_BITBLT            - graphic driver supports hardware bit blt
32  *
33  * Console Parameters are set by graphic drivers global struct:
34  *
35  * VIDEO_VISIBLE_COLS         - x resolution
36  * VIDEO_VISIBLE_ROWS         - y resolution
37  * VIDEO_PIXEL_SIZE           - storage size in byte per pixel
38  * VIDEO_DATA_FORMAT          - graphical data format GDF
39  * VIDEO_FB_ADRS              - start of video memory
40  *
41  * CONFIG_I8042_KBD           - AT Keyboard driver for i8042
42  * VIDEO_KBD_INIT_FCT         - init function for keyboard
43  * VIDEO_TSTC_FCT             - keyboard_tstc function
44  * VIDEO_GETC_FCT             - keyboard_getc function
45  *
46  * CONFIG_CONSOLE_CURSOR      - on/off drawing cursor is done with
47  *                              delay loop in VIDEO_TSTC_FCT (i8042)
48  *
49  * CONFIG_SYS_CONSOLE_BLINK_COUNT - value for delay loop - blink rate
50  * CONFIG_CONSOLE_TIME        - display time/date in upper right
51  *                              corner, needs CONFIG_CMD_DATE and
52  *                              CONFIG_CONSOLE_CURSOR
53  * CONFIG_VIDEO_LOGO          - display Linux Logo in upper left corner.
54  *                              Use CONFIG_SPLASH_SCREEN_ALIGN with
55  *                              environment variable "splashpos" to place
56  *                              the logo on other position. In this case
57  *                              no CONSOLE_EXTRA_INFO is possible.
58  * CONFIG_VIDEO_BMP_LOGO      - use bmp_logo instead of linux_logo
59  * CONFIG_CONSOLE_EXTRA_INFO  - display additional board information
60  *                              strings that normaly goes to serial
61  *                              port.  This define requires a board
62  *                              specific function:
63  *                              video_drawstring (VIDEO_INFO_X,
64  *                                      VIDEO_INFO_Y + i*VIDEO_FONT_HEIGHT,
65  *                                      info);
66  *                              that fills a info buffer at i=row.
67  *                              s.a: board/eltec/bab7xx.
68  * CONFIG_VGA_AS_SINGLE_DEVICE - If set the framebuffer device will be
69  *                              initialized as an output only device.
70  *                              The Keyboard driver will not be
71  *                              set-up.  This may be used, if you have
72  *                              no or more than one Keyboard devices
73  *                              (USB Keyboard, AT Keyboard).
74  *
75  * CONFIG_VIDEO_SW_CURSOR:    - Draws a cursor after the last
76  *                              character. No blinking is provided.
77  *                              Uses the macros CURSOR_SET and
78  *                              CURSOR_OFF.
79  *
80  * CONFIG_VIDEO_HW_CURSOR:    - Uses the hardware cursor capability
81  *                              of the graphic chip. Uses the macro
82  *                              CURSOR_SET. ATTENTION: If booting an
83  *                              OS, the display driver must disable
84  *                              the hardware register of the graphic
85  *                              chip. Otherwise a blinking field is
86  *                              displayed.
87  */
88
89 #include <common.h>
90 #include <version.h>
91 #include <malloc.h>
92 #include <linux/compiler.h>
93
94 /*
95  * Console device defines with SMI graphic
96  * Any other graphic must change this section
97  */
98
99 #ifdef  CONFIG_VIDEO_SMI_LYNXEM
100
101 #define VIDEO_FB_LITTLE_ENDIAN
102 #define VIDEO_HW_RECTFILL
103 #define VIDEO_HW_BITBLT
104 #endif
105
106 /*
107  * Defines for the CT69000 driver
108  */
109 #ifdef  CONFIG_VIDEO_CT69000
110
111 #define VIDEO_FB_LITTLE_ENDIAN
112 #define VIDEO_HW_RECTFILL
113 #define VIDEO_HW_BITBLT
114 #endif
115
116 /*
117  * Defines for the SED13806 driver
118  */
119 #ifdef CONFIG_VIDEO_SED13806
120
121 #ifndef CONFIG_TOTAL5200
122 #define VIDEO_FB_LITTLE_ENDIAN
123 #endif
124 #define VIDEO_HW_RECTFILL
125 #define VIDEO_HW_BITBLT
126 #endif
127
128 /*
129  * Defines for the SED13806 driver
130  */
131 #ifdef CONFIG_VIDEO_SM501
132
133 #ifdef CONFIG_HH405
134 #define VIDEO_FB_LITTLE_ENDIAN
135 #endif
136 #endif
137
138 #ifdef CONFIG_VIDEO_MXS
139 #define VIDEO_FB_16BPP_WORD_SWAP
140 #endif
141
142 /*
143  * Defines for the MB862xx driver
144  */
145 #ifdef CONFIG_VIDEO_MB862xx
146
147 #ifdef CONFIG_VIDEO_CORALP
148 #define VIDEO_FB_LITTLE_ENDIAN
149 #endif
150 #ifdef CONFIG_VIDEO_MB862xx_ACCEL
151 #define VIDEO_HW_RECTFILL
152 #define VIDEO_HW_BITBLT
153 #endif
154 #endif
155
156 /*
157  * Defines for the i.MX31 driver (mx3fb.c)
158  */
159 #if defined(CONFIG_VIDEO_MX3) || defined(CONFIG_VIDEO_IPUV3)
160 #define VIDEO_FB_16BPP_WORD_SWAP
161 #endif
162
163 /*
164  * Include video_fb.h after definitions of VIDEO_HW_RECTFILL etc.
165  */
166 #include <video_fb.h>
167
168 #include <splash.h>
169
170 /*
171  * some Macros
172  */
173 #define VIDEO_VISIBLE_COLS      (pGD->winSizeX)
174 #define VIDEO_VISIBLE_ROWS      (pGD->winSizeY)
175 #define VIDEO_PIXEL_SIZE        (pGD->gdfBytesPP)
176 #define VIDEO_DATA_FORMAT       (pGD->gdfIndex)
177 #define VIDEO_FB_ADRS           (pGD->frameAdrs)
178
179 /*
180  * Console device defines with i8042 keyboard controller
181  * Any other keyboard controller must change this section
182  */
183
184 #ifdef  CONFIG_I8042_KBD
185 #include <i8042.h>
186
187 #define VIDEO_KBD_INIT_FCT      i8042_kbd_init()
188 #define VIDEO_TSTC_FCT          i8042_tstc
189 #define VIDEO_GETC_FCT          i8042_getc
190 #endif
191
192 /*
193  * Console device
194  */
195
196 #include <version.h>
197 #include <linux/types.h>
198 #include <stdio_dev.h>
199 #include <video_font.h>
200
201 #if defined(CONFIG_CMD_DATE)
202 #include <rtc.h>
203 #endif
204
205 #if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
206 #include <watchdog.h>
207 #include <bmp_layout.h>
208 #include <splash.h>
209 #endif
210
211 /*
212  * Cursor definition:
213  * CONFIG_CONSOLE_CURSOR:  Uses a timer function (see drivers/input/i8042.c)
214  *                         to let the cursor blink. Uses the macros
215  *                         CURSOR_OFF and CURSOR_ON.
216  * CONFIG_VIDEO_SW_CURSOR: Draws a cursor after the last character. No
217  *                         blinking is provided. Uses the macros CURSOR_SET
218  *                         and CURSOR_OFF.
219  * CONFIG_VIDEO_HW_CURSOR: Uses the hardware cursor capability of the
220  *                         graphic chip. Uses the macro CURSOR_SET.
221  *                         ATTENTION: If booting an OS, the display driver
222  *                         must disable the hardware register of the graphic
223  *                         chip. Otherwise a blinking field is displayed
224  */
225 #if !defined(CONFIG_CONSOLE_CURSOR) && \
226     !defined(CONFIG_VIDEO_SW_CURSOR) && \
227     !defined(CONFIG_VIDEO_HW_CURSOR)
228 /* no Cursor defined */
229 #define CURSOR_ON
230 #define CURSOR_OFF
231 #define CURSOR_SET
232 #endif
233
234 #if defined(CONFIG_CONSOLE_CURSOR) || defined(CONFIG_VIDEO_SW_CURSOR)
235 #if defined(CURSOR_ON) || \
236         (defined(CONFIG_CONSOLE_CURSOR) && defined(CONFIG_VIDEO_SW_CURSOR))
237 #error  only one of CONFIG_CONSOLE_CURSOR, CONFIG_VIDEO_SW_CURSOR, \
238         or CONFIG_VIDEO_HW_CURSOR can be defined
239 #endif
240 void console_cursor(int state);
241
242 #define CURSOR_ON  console_cursor(1)
243 #define CURSOR_OFF console_cursor(0)
244 #define CURSOR_SET video_set_cursor()
245 #endif /* CONFIG_CONSOLE_CURSOR || CONFIG_VIDEO_SW_CURSOR */
246
247 #ifdef  CONFIG_CONSOLE_CURSOR
248 #ifndef CONFIG_CONSOLE_TIME
249 #error  CONFIG_CONSOLE_CURSOR must be defined for CONFIG_CONSOLE_TIME
250 #endif
251 #ifndef CONFIG_I8042_KBD
252 #warning Cursor drawing on/off needs timer function s.a. drivers/input/i8042.c
253 #endif
254 #endif /* CONFIG_CONSOLE_CURSOR */
255
256
257 #ifdef CONFIG_VIDEO_HW_CURSOR
258 #ifdef  CURSOR_ON
259 #error  only one of CONFIG_CONSOLE_CURSOR, CONFIG_VIDEO_SW_CURSOR, \
260         or CONFIG_VIDEO_HW_CURSOR can be defined
261 #endif
262 #define CURSOR_ON
263 #define CURSOR_OFF
264 #define CURSOR_SET video_set_hw_cursor(console_col * VIDEO_FONT_WIDTH, \
265                   (console_row * VIDEO_FONT_HEIGHT) + video_logo_height)
266 #endif /* CONFIG_VIDEO_HW_CURSOR */
267
268 #ifdef  CONFIG_VIDEO_LOGO
269 #ifdef  CONFIG_VIDEO_BMP_LOGO
270 #include <bmp_logo.h>
271 #include <bmp_logo_data.h>
272 #define VIDEO_LOGO_WIDTH        BMP_LOGO_WIDTH
273 #define VIDEO_LOGO_HEIGHT       BMP_LOGO_HEIGHT
274 #define VIDEO_LOGO_LUT_OFFSET   BMP_LOGO_OFFSET
275 #define VIDEO_LOGO_COLORS       BMP_LOGO_COLORS
276
277 #else  /* CONFIG_VIDEO_BMP_LOGO */
278 #define LINUX_LOGO_WIDTH        80
279 #define LINUX_LOGO_HEIGHT       80
280 #define LINUX_LOGO_COLORS       214
281 #define LINUX_LOGO_LUT_OFFSET   0x20
282 #define __initdata
283 #include <linux_logo.h>
284 #define VIDEO_LOGO_WIDTH        LINUX_LOGO_WIDTH
285 #define VIDEO_LOGO_HEIGHT       LINUX_LOGO_HEIGHT
286 #define VIDEO_LOGO_LUT_OFFSET   LINUX_LOGO_LUT_OFFSET
287 #define VIDEO_LOGO_COLORS       LINUX_LOGO_COLORS
288 #endif /* CONFIG_VIDEO_BMP_LOGO */
289 #define VIDEO_INFO_X            (VIDEO_LOGO_WIDTH)
290 #define VIDEO_INFO_Y            (VIDEO_FONT_HEIGHT/2)
291 #else  /* CONFIG_VIDEO_LOGO */
292 #define VIDEO_LOGO_WIDTH        0
293 #define VIDEO_LOGO_HEIGHT       0
294 #endif /* CONFIG_VIDEO_LOGO */
295
296 #define VIDEO_COLS              VIDEO_VISIBLE_COLS
297 #define VIDEO_ROWS              VIDEO_VISIBLE_ROWS
298 #define VIDEO_SIZE              (VIDEO_ROWS*VIDEO_COLS*VIDEO_PIXEL_SIZE)
299 #define VIDEO_PIX_BLOCKS        (VIDEO_SIZE >> 2)
300 #define VIDEO_LINE_LEN          (VIDEO_COLS*VIDEO_PIXEL_SIZE)
301 #define VIDEO_BURST_LEN         (VIDEO_COLS/8)
302
303 #ifdef  CONFIG_VIDEO_LOGO
304 #define CONSOLE_ROWS            ((VIDEO_ROWS - video_logo_height) / VIDEO_FONT_HEIGHT)
305 #else
306 #define CONSOLE_ROWS            (VIDEO_ROWS / VIDEO_FONT_HEIGHT)
307 #endif
308
309 #define CONSOLE_COLS            (VIDEO_COLS / VIDEO_FONT_WIDTH)
310 #define CONSOLE_ROW_SIZE        (VIDEO_FONT_HEIGHT * VIDEO_LINE_LEN)
311 #define CONSOLE_ROW_FIRST       (video_console_address)
312 #define CONSOLE_ROW_SECOND      (video_console_address + CONSOLE_ROW_SIZE)
313 #define CONSOLE_ROW_LAST        (video_console_address + CONSOLE_SIZE - CONSOLE_ROW_SIZE)
314 #define CONSOLE_SIZE            (CONSOLE_ROW_SIZE * CONSOLE_ROWS)
315 #define CONSOLE_SCROLL_SIZE     (CONSOLE_SIZE - CONSOLE_ROW_SIZE)
316
317 /* Macros */
318 #ifdef  VIDEO_FB_LITTLE_ENDIAN
319 #define SWAP16(x)               ((((x) & 0x00ff) << 8) | \
320                                   ((x) >> 8) \
321                                 )
322 #define SWAP32(x)               ((((x) & 0x000000ff) << 24) | \
323                                  (((x) & 0x0000ff00) <<  8) | \
324                                  (((x) & 0x00ff0000) >>  8) | \
325                                  (((x) & 0xff000000) >> 24)   \
326                                 )
327 #define SHORTSWAP32(x)          ((((x) & 0x000000ff) <<  8) | \
328                                  (((x) & 0x0000ff00) >>  8) | \
329                                  (((x) & 0x00ff0000) <<  8) | \
330                                  (((x) & 0xff000000) >>  8)   \
331                                 )
332 #else
333 #define SWAP16(x)               (x)
334 #define SWAP32(x)               (x)
335 #if defined(VIDEO_FB_16BPP_WORD_SWAP)
336 #define SHORTSWAP32(x)          (((x) >> 16) | ((x) << 16))
337 #else
338 #define SHORTSWAP32(x)          (x)
339 #endif
340 #endif
341
342 #ifdef CONFIG_CONSOLE_EXTRA_INFO
343 /*
344  * setup a board string: type, speed, etc.
345  *
346  * line_number: location to place info string beside logo
347  * info:        buffer for info string
348  */
349 extern void video_get_info_str(int line_number, char *info);
350 #endif
351
352 DECLARE_GLOBAL_DATA_PTR;
353
354 /* Locals */
355 static GraphicDevice *pGD;      /* Pointer to Graphic array */
356
357 static void *video_fb_address;  /* frame buffer address */
358 static void *video_console_address;     /* console buffer start address */
359
360 static int video_logo_height = VIDEO_LOGO_HEIGHT;
361
362 static int __maybe_unused cursor_state;
363 static int __maybe_unused old_col;
364 static int __maybe_unused old_row;
365
366 static int console_col;         /* cursor col */
367 static int console_row;         /* cursor row */
368
369 static u32 eorx, fgx, bgx;      /* color pats */
370
371 static int cfb_do_flush_cache;
372
373 #ifdef CONFIG_CFB_CONSOLE_ANSI
374 static char ansi_buf[10];
375 static int ansi_buf_size;
376 static int ansi_colors_need_revert;
377 static int ansi_cursor_hidden;
378 #endif
379
380 static const int video_font_draw_table8[] = {
381         0x00000000, 0x000000ff, 0x0000ff00, 0x0000ffff,
382         0x00ff0000, 0x00ff00ff, 0x00ffff00, 0x00ffffff,
383         0xff000000, 0xff0000ff, 0xff00ff00, 0xff00ffff,
384         0xffff0000, 0xffff00ff, 0xffffff00, 0xffffffff
385 };
386
387 static const int video_font_draw_table15[] = {
388         0x00000000, 0x00007fff, 0x7fff0000, 0x7fff7fff
389 };
390
391 static const int video_font_draw_table16[] = {
392         0x00000000, 0x0000ffff, 0xffff0000, 0xffffffff
393 };
394
395 static const int video_font_draw_table24[16][3] = {
396         {0x00000000, 0x00000000, 0x00000000},
397         {0x00000000, 0x00000000, 0x00ffffff},
398         {0x00000000, 0x0000ffff, 0xff000000},
399         {0x00000000, 0x0000ffff, 0xffffffff},
400         {0x000000ff, 0xffff0000, 0x00000000},
401         {0x000000ff, 0xffff0000, 0x00ffffff},
402         {0x000000ff, 0xffffffff, 0xff000000},
403         {0x000000ff, 0xffffffff, 0xffffffff},
404         {0xffffff00, 0x00000000, 0x00000000},
405         {0xffffff00, 0x00000000, 0x00ffffff},
406         {0xffffff00, 0x0000ffff, 0xff000000},
407         {0xffffff00, 0x0000ffff, 0xffffffff},
408         {0xffffffff, 0xffff0000, 0x00000000},
409         {0xffffffff, 0xffff0000, 0x00ffffff},
410         {0xffffffff, 0xffffffff, 0xff000000},
411         {0xffffffff, 0xffffffff, 0xffffffff}
412 };
413
414 static const int video_font_draw_table32[16][4] = {
415         {0x00000000, 0x00000000, 0x00000000, 0x00000000},
416         {0x00000000, 0x00000000, 0x00000000, 0x00ffffff},
417         {0x00000000, 0x00000000, 0x00ffffff, 0x00000000},
418         {0x00000000, 0x00000000, 0x00ffffff, 0x00ffffff},
419         {0x00000000, 0x00ffffff, 0x00000000, 0x00000000},
420         {0x00000000, 0x00ffffff, 0x00000000, 0x00ffffff},
421         {0x00000000, 0x00ffffff, 0x00ffffff, 0x00000000},
422         {0x00000000, 0x00ffffff, 0x00ffffff, 0x00ffffff},
423         {0x00ffffff, 0x00000000, 0x00000000, 0x00000000},
424         {0x00ffffff, 0x00000000, 0x00000000, 0x00ffffff},
425         {0x00ffffff, 0x00000000, 0x00ffffff, 0x00000000},
426         {0x00ffffff, 0x00000000, 0x00ffffff, 0x00ffffff},
427         {0x00ffffff, 0x00ffffff, 0x00000000, 0x00000000},
428         {0x00ffffff, 0x00ffffff, 0x00000000, 0x00ffffff},
429         {0x00ffffff, 0x00ffffff, 0x00ffffff, 0x00000000},
430         {0x00ffffff, 0x00ffffff, 0x00ffffff, 0x00ffffff}
431 };
432
433 /*
434  * Implement a weak default function for boards that optionally
435  * need to skip the cfb initialization.
436  */
437 __weak int board_cfb_skip(void)
438 {
439         /* As default, don't skip cfb init */
440         return 0;
441 }
442
443 static void video_drawchars(int xx, int yy, unsigned char *s, int count)
444 {
445         u8 *cdat, *dest, *dest0;
446         int rows, offset, c;
447
448         offset = yy * VIDEO_LINE_LEN + xx * VIDEO_PIXEL_SIZE;
449         dest0 = video_fb_address + offset;
450
451         switch (VIDEO_DATA_FORMAT) {
452         case GDF__8BIT_INDEX:
453         case GDF__8BIT_332RGB:
454                 while (count--) {
455                         c = *s;
456                         cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
457                         for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
458                              rows--; dest += VIDEO_LINE_LEN) {
459                                 u8 bits = *cdat++;
460
461                                 ((u32 *) dest)[0] =
462                                         (video_font_draw_table8[bits >> 4] &
463                                          eorx) ^ bgx;
464
465                                 if (VIDEO_FONT_WIDTH == 4)
466                                         continue;
467
468                                 ((u32 *) dest)[1] =
469                                         (video_font_draw_table8[bits & 15] &
470                                          eorx) ^ bgx;
471                         }
472                         dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
473                         s++;
474                 }
475                 break;
476
477         case GDF_15BIT_555RGB:
478                 while (count--) {
479                         c = *s;
480                         cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
481                         for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
482                              rows--; dest += VIDEO_LINE_LEN) {
483                                 u8 bits = *cdat++;
484
485                                 ((u32 *) dest)[0] =
486                                         SHORTSWAP32((video_font_draw_table15
487                                                      [bits >> 6] & eorx) ^
488                                                     bgx);
489                                 ((u32 *) dest)[1] =
490                                         SHORTSWAP32((video_font_draw_table15
491                                                      [bits >> 4 & 3] & eorx) ^
492                                                     bgx);
493
494                                 if (VIDEO_FONT_WIDTH == 4)
495                                         continue;
496
497                                 ((u32 *) dest)[2] =
498                                         SHORTSWAP32((video_font_draw_table15
499                                                      [bits >> 2 & 3] & eorx) ^
500                                                     bgx);
501                                 ((u32 *) dest)[3] =
502                                         SHORTSWAP32((video_font_draw_table15
503                                                      [bits & 3] & eorx) ^
504                                                     bgx);
505                         }
506                         dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
507                         s++;
508                 }
509                 break;
510
511         case GDF_16BIT_565RGB:
512                 while (count--) {
513                         c = *s;
514                         cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
515                         for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
516                              rows--; dest += VIDEO_LINE_LEN) {
517                                 u8 bits = *cdat++;
518
519                                 ((u32 *) dest)[0] =
520                                         SHORTSWAP32((video_font_draw_table16
521                                                      [bits >> 6] & eorx) ^
522                                                     bgx);
523                                 ((u32 *) dest)[1] =
524                                         SHORTSWAP32((video_font_draw_table16
525                                                      [bits >> 4 & 3] & eorx) ^
526                                                     bgx);
527
528                                 if (VIDEO_FONT_WIDTH == 4)
529                                         continue;
530
531                                 ((u32 *) dest)[2] =
532                                         SHORTSWAP32((video_font_draw_table16
533                                                      [bits >> 2 & 3] & eorx) ^
534                                                     bgx);
535                                 ((u32 *) dest)[3] =
536                                         SHORTSWAP32((video_font_draw_table16
537                                                      [bits & 3] & eorx) ^
538                                                     bgx);
539                         }
540                         dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
541                         s++;
542                 }
543                 break;
544
545         case GDF_32BIT_X888RGB:
546                 while (count--) {
547                         c = *s;
548                         cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
549                         for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
550                              rows--; dest += VIDEO_LINE_LEN) {
551                                 u8 bits = *cdat++;
552
553                                 ((u32 *) dest)[0] =
554                                         SWAP32((video_font_draw_table32
555                                                 [bits >> 4][0] & eorx) ^ bgx);
556                                 ((u32 *) dest)[1] =
557                                         SWAP32((video_font_draw_table32
558                                                 [bits >> 4][1] & eorx) ^ bgx);
559                                 ((u32 *) dest)[2] =
560                                         SWAP32((video_font_draw_table32
561                                                 [bits >> 4][2] & eorx) ^ bgx);
562                                 ((u32 *) dest)[3] =
563                                         SWAP32((video_font_draw_table32
564                                                 [bits >> 4][3] & eorx) ^ bgx);
565
566
567                                 if (VIDEO_FONT_WIDTH == 4)
568                                         continue;
569
570                                 ((u32 *) dest)[4] =
571                                         SWAP32((video_font_draw_table32
572                                                 [bits & 15][0] & eorx) ^ bgx);
573                                 ((u32 *) dest)[5] =
574                                         SWAP32((video_font_draw_table32
575                                                 [bits & 15][1] & eorx) ^ bgx);
576                                 ((u32 *) dest)[6] =
577                                         SWAP32((video_font_draw_table32
578                                                 [bits & 15][2] & eorx) ^ bgx);
579                                 ((u32 *) dest)[7] =
580                                         SWAP32((video_font_draw_table32
581                                                 [bits & 15][3] & eorx) ^ bgx);
582                         }
583                         dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
584                         s++;
585                 }
586                 break;
587
588         case GDF_24BIT_888RGB:
589                 while (count--) {
590                         c = *s;
591                         cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
592                         for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
593                              rows--; dest += VIDEO_LINE_LEN) {
594                                 u8 bits = *cdat++;
595
596                                 ((u32 *) dest)[0] =
597                                         (video_font_draw_table24[bits >> 4][0]
598                                          & eorx) ^ bgx;
599                                 ((u32 *) dest)[1] =
600                                         (video_font_draw_table24[bits >> 4][1]
601                                          & eorx) ^ bgx;
602                                 ((u32 *) dest)[2] =
603                                         (video_font_draw_table24[bits >> 4][2]
604                                          & eorx) ^ bgx;
605
606                                 if (VIDEO_FONT_WIDTH == 4)
607                                         continue;
608
609                                 ((u32 *) dest)[3] =
610                                         (video_font_draw_table24[bits & 15][0]
611                                          & eorx) ^ bgx;
612                                 ((u32 *) dest)[4] =
613                                         (video_font_draw_table24[bits & 15][1]
614                                          & eorx) ^ bgx;
615                                 ((u32 *) dest)[5] =
616                                         (video_font_draw_table24[bits & 15][2]
617                                          & eorx) ^ bgx;
618                         }
619                         dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
620                         s++;
621                 }
622                 break;
623         }
624 }
625
626 static inline void video_drawstring(int xx, int yy, unsigned char *s)
627 {
628         video_drawchars(xx, yy, s, strlen((char *) s));
629 }
630
631 static void video_putchar(int xx, int yy, unsigned char c)
632 {
633         video_drawchars(xx, yy + video_logo_height, &c, 1);
634 }
635
636 #if defined(CONFIG_CONSOLE_CURSOR) || defined(CONFIG_VIDEO_SW_CURSOR)
637 static void video_set_cursor(void)
638 {
639         if (cursor_state)
640                 console_cursor(0);
641         console_cursor(1);
642 }
643
644 static void video_invertchar(int xx, int yy)
645 {
646         int firstx = xx * VIDEO_PIXEL_SIZE;
647         int lastx = (xx + VIDEO_FONT_WIDTH) * VIDEO_PIXEL_SIZE;
648         int firsty = yy * VIDEO_LINE_LEN;
649         int lasty = (yy + VIDEO_FONT_HEIGHT) * VIDEO_LINE_LEN;
650         int x, y;
651         for (y = firsty; y < lasty; y += VIDEO_LINE_LEN) {
652                 for (x = firstx; x < lastx; x++) {
653                         u8 *dest = (u8 *)(video_fb_address) + x + y;
654                         *dest = ~*dest;
655                 }
656         }
657 }
658
659 void console_cursor(int state)
660 {
661 #ifdef CONFIG_CONSOLE_TIME
662         struct rtc_time tm;
663         char info[16];
664
665         /* time update only if cursor is on (faster scroll) */
666         if (state) {
667                 rtc_get(&tm);
668
669                 sprintf(info, " %02d:%02d:%02d ", tm.tm_hour, tm.tm_min,
670                         tm.tm_sec);
671                 video_drawstring(VIDEO_VISIBLE_COLS - 10 * VIDEO_FONT_WIDTH,
672                                  VIDEO_INFO_Y, (uchar *) info);
673
674                 sprintf(info, "%02d.%02d.%04d", tm.tm_mday, tm.tm_mon,
675                         tm.tm_year);
676                 video_drawstring(VIDEO_VISIBLE_COLS - 10 * VIDEO_FONT_WIDTH,
677                                  VIDEO_INFO_Y + 1 * VIDEO_FONT_HEIGHT,
678                                  (uchar *) info);
679         }
680 #endif
681
682         if (cursor_state != state) {
683                 if (cursor_state) {
684                         /* turn off the cursor */
685                         video_invertchar(old_col * VIDEO_FONT_WIDTH,
686                                          old_row * VIDEO_FONT_HEIGHT +
687                                          video_logo_height);
688                 } else {
689                         /* turn off the cursor and record where it is */
690                         video_invertchar(console_col * VIDEO_FONT_WIDTH,
691                                          console_row * VIDEO_FONT_HEIGHT +
692                                          video_logo_height);
693                         old_col = console_col;
694                         old_row = console_row;
695                 }
696                 cursor_state = state;
697         }
698         if (cfb_do_flush_cache)
699                 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
700 }
701 #endif
702
703 #ifndef VIDEO_HW_RECTFILL
704 static void memsetl(int *p, int c, int v)
705 {
706         while (c--)
707                 *(p++) = v;
708 }
709 #endif
710
711 #ifndef VIDEO_HW_BITBLT
712 static void memcpyl(int *d, int *s, int c)
713 {
714         while (c--)
715                 *(d++) = *(s++);
716 }
717 #endif
718
719 static void console_clear_line(int line, int begin, int end)
720 {
721 #ifdef VIDEO_HW_RECTFILL
722         video_hw_rectfill(VIDEO_PIXEL_SIZE,             /* bytes per pixel */
723                           VIDEO_FONT_WIDTH * begin,     /* dest pos x */
724                           video_logo_height +
725                           VIDEO_FONT_HEIGHT * line,     /* dest pos y */
726                           VIDEO_FONT_WIDTH * (end - begin + 1), /* fr. width */
727                           VIDEO_FONT_HEIGHT,            /* frame height */
728                           bgx                           /* fill color */
729                 );
730 #else
731         if (begin == 0 && (end + 1) == CONSOLE_COLS) {
732                 memsetl(CONSOLE_ROW_FIRST +
733                         CONSOLE_ROW_SIZE * line,        /* offset of row */
734                         CONSOLE_ROW_SIZE >> 2,          /* length of row */
735                         bgx                             /* fill color */
736                 );
737         } else {
738                 void *offset;
739                 int i, size;
740
741                 offset = CONSOLE_ROW_FIRST +
742                          CONSOLE_ROW_SIZE * line +      /* offset of row */
743                          VIDEO_FONT_WIDTH *
744                          VIDEO_PIXEL_SIZE * begin;      /* offset of col */
745                 size = VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE * (end - begin + 1);
746                 size >>= 2; /* length to end for memsetl() */
747                 /* fill at col offset of i'th line using bgx as fill color */
748                 for (i = 0; i < VIDEO_FONT_HEIGHT; i++)
749                         memsetl(offset + i * VIDEO_LINE_LEN, size, bgx);
750         }
751 #endif
752 }
753
754 static void console_scrollup(void)
755 {
756         /* copy up rows ignoring the first one */
757
758 #ifdef VIDEO_HW_BITBLT
759         video_hw_bitblt(VIDEO_PIXEL_SIZE,       /* bytes per pixel */
760                         0,                      /* source pos x */
761                         video_logo_height +
762                                 VIDEO_FONT_HEIGHT, /* source pos y */
763                         0,                      /* dest pos x */
764                         video_logo_height,      /* dest pos y */
765                         VIDEO_VISIBLE_COLS,     /* frame width */
766                         VIDEO_VISIBLE_ROWS
767                         - video_logo_height
768                         - VIDEO_FONT_HEIGHT     /* frame height */
769                 );
770 #else
771         memcpyl(CONSOLE_ROW_FIRST, CONSOLE_ROW_SECOND,
772                 CONSOLE_SCROLL_SIZE >> 2);
773 #endif
774         /* clear the last one */
775         console_clear_line(CONSOLE_ROWS - 1, 0, CONSOLE_COLS - 1);
776 }
777
778 static void console_back(void)
779 {
780         console_col--;
781
782         if (console_col < 0) {
783                 console_col = CONSOLE_COLS - 1;
784                 console_row--;
785                 if (console_row < 0)
786                         console_row = 0;
787         }
788 }
789
790 #ifdef CONFIG_CFB_CONSOLE_ANSI
791
792 static void console_clear(void)
793 {
794 #ifdef VIDEO_HW_RECTFILL
795         video_hw_rectfill(VIDEO_PIXEL_SIZE,     /* bytes per pixel */
796                           0,                    /* dest pos x */
797                           video_logo_height,    /* dest pos y */
798                           VIDEO_VISIBLE_COLS,   /* frame width */
799                           VIDEO_VISIBLE_ROWS,   /* frame height */
800                           bgx                   /* fill color */
801         );
802 #else
803         memsetl(CONSOLE_ROW_FIRST, CONSOLE_SIZE, bgx);
804 #endif
805 }
806
807 static void console_cursor_fix(void)
808 {
809         if (console_row < 0)
810                 console_row = 0;
811         if (console_row >= CONSOLE_ROWS)
812                 console_row = CONSOLE_ROWS - 1;
813         if (console_col < 0)
814                 console_col = 0;
815         if (console_col >= CONSOLE_COLS)
816                 console_col = CONSOLE_COLS - 1;
817 }
818
819 static void console_cursor_up(int n)
820 {
821         console_row -= n;
822         console_cursor_fix();
823 }
824
825 static void console_cursor_down(int n)
826 {
827         console_row += n;
828         console_cursor_fix();
829 }
830
831 static void console_cursor_left(int n)
832 {
833         console_col -= n;
834         console_cursor_fix();
835 }
836
837 static void console_cursor_right(int n)
838 {
839         console_col += n;
840         console_cursor_fix();
841 }
842
843 static void console_cursor_set_position(int row, int col)
844 {
845         if (console_row != -1)
846                 console_row = row;
847         if (console_col != -1)
848                 console_col = col;
849         console_cursor_fix();
850 }
851
852 static void console_previousline(int n)
853 {
854         /* FIXME: also scroll terminal ? */
855         console_row -= n;
856         console_cursor_fix();
857 }
858
859 static void console_swap_colors(void)
860 {
861         eorx = fgx;
862         fgx = bgx;
863         bgx = eorx;
864         eorx = fgx ^ bgx;
865 }
866
867 static inline int console_cursor_is_visible(void)
868 {
869         return !ansi_cursor_hidden;
870 }
871 #else
872 static inline int console_cursor_is_visible(void)
873 {
874         return 1;
875 }
876 #endif
877
878 static void console_newline(int n)
879 {
880         console_row += n;
881         console_col = 0;
882
883         /* Check if we need to scroll the terminal */
884         if (console_row >= CONSOLE_ROWS) {
885                 /* Scroll everything up */
886                 console_scrollup();
887
888                 /* Decrement row number */
889                 console_row = CONSOLE_ROWS - 1;
890         }
891 }
892
893 static void console_cr(void)
894 {
895         console_col = 0;
896 }
897
898 static void parse_putc(const char c)
899 {
900         static int nl = 1;
901
902         if (console_cursor_is_visible())
903                 CURSOR_OFF;
904
905         switch (c) {
906         case 13:                /* back to first column */
907                 console_cr();
908                 break;
909
910         case '\n':              /* next line */
911                 if (console_col || (!console_col && nl))
912                         console_newline(1);
913                 nl = 1;
914                 break;
915
916         case 9:         /* tab 8 */
917                 console_col |= 0x0008;
918                 console_col &= ~0x0007;
919
920                 if (console_col >= CONSOLE_COLS)
921                         console_newline(1);
922                 break;
923
924         case 8:         /* backspace */
925                 console_back();
926                 break;
927
928         case 7:         /* bell */
929                 break;  /* ignored */
930
931         default:                /* draw the char */
932                 video_putchar(console_col * VIDEO_FONT_WIDTH,
933                               console_row * VIDEO_FONT_HEIGHT, c);
934                 console_col++;
935
936                 /* check for newline */
937                 if (console_col >= CONSOLE_COLS) {
938                         console_newline(1);
939                         nl = 0;
940                 }
941         }
942
943         if (console_cursor_is_visible())
944                 CURSOR_SET;
945 }
946
947 static void video_putc(struct stdio_dev *dev, const char c)
948 {
949 #ifdef CONFIG_CFB_CONSOLE_ANSI
950         int i;
951
952         if (c == 27) {
953                 for (i = 0; i < ansi_buf_size; ++i)
954                         parse_putc(ansi_buf[i]);
955                 ansi_buf[0] = 27;
956                 ansi_buf_size = 1;
957                 return;
958         }
959
960         if (ansi_buf_size > 0) {
961                 /*
962                  * 0 - ESC
963                  * 1 - [
964                  * 2 - num1
965                  * 3 - ..
966                  * 4 - ;
967                  * 5 - num2
968                  * 6 - ..
969                  * - cchar
970                  */
971                 int next = 0;
972
973                 int flush = 0;
974                 int fail = 0;
975
976                 int num1 = 0;
977                 int num2 = 0;
978                 int cchar = 0;
979
980                 ansi_buf[ansi_buf_size++] = c;
981
982                 if (ansi_buf_size >= sizeof(ansi_buf))
983                         fail = 1;
984
985                 for (i = 0; i < ansi_buf_size; ++i) {
986                         if (fail)
987                                 break;
988
989                         switch (next) {
990                         case 0:
991                                 if (ansi_buf[i] == 27)
992                                         next = 1;
993                                 else
994                                         fail = 1;
995                                 break;
996
997                         case 1:
998                                 if (ansi_buf[i] == '[')
999                                         next = 2;
1000                                 else
1001                                         fail = 1;
1002                                 break;
1003
1004                         case 2:
1005                                 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
1006                                         num1 = ansi_buf[i]-'0';
1007                                         next = 3;
1008                                 } else if (ansi_buf[i] != '?') {
1009                                         --i;
1010                                         num1 = 1;
1011                                         next = 4;
1012                                 }
1013                                 break;
1014
1015                         case 3:
1016                                 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
1017                                         num1 *= 10;
1018                                         num1 += ansi_buf[i]-'0';
1019                                 } else {
1020                                         --i;
1021                                         next = 4;
1022                                 }
1023                                 break;
1024
1025                         case 4:
1026                                 if (ansi_buf[i] != ';') {
1027                                         --i;
1028                                         next = 7;
1029                                 } else
1030                                         next = 5;
1031                                 break;
1032
1033                         case 5:
1034                                 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
1035                                         num2 = ansi_buf[i]-'0';
1036                                         next = 6;
1037                                 } else
1038                                         fail = 1;
1039                                 break;
1040
1041                         case 6:
1042                                 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
1043                                         num2 *= 10;
1044                                         num2 += ansi_buf[i]-'0';
1045                                 } else {
1046                                         --i;
1047                                         next = 7;
1048                                 }
1049                                 break;
1050
1051                         case 7:
1052                                 if ((ansi_buf[i] >= 'A' && ansi_buf[i] <= 'H')
1053                                         || ansi_buf[i] == 'J'
1054                                         || ansi_buf[i] == 'K'
1055                                         || ansi_buf[i] == 'h'
1056                                         || ansi_buf[i] == 'l'
1057                                         || ansi_buf[i] == 'm') {
1058                                         cchar = ansi_buf[i];
1059                                         flush = 1;
1060                                 } else
1061                                         fail = 1;
1062                                 break;
1063                         }
1064                 }
1065
1066                 if (fail) {
1067                         for (i = 0; i < ansi_buf_size; ++i)
1068                                 parse_putc(ansi_buf[i]);
1069                         ansi_buf_size = 0;
1070                         return;
1071                 }
1072
1073                 if (flush) {
1074                         if (!ansi_cursor_hidden)
1075                                 CURSOR_OFF;
1076                         ansi_buf_size = 0;
1077                         switch (cchar) {
1078                         case 'A':
1079                                 /* move cursor num1 rows up */
1080                                 console_cursor_up(num1);
1081                                 break;
1082                         case 'B':
1083                                 /* move cursor num1 rows down */
1084                                 console_cursor_down(num1);
1085                                 break;
1086                         case 'C':
1087                                 /* move cursor num1 columns forward */
1088                                 console_cursor_right(num1);
1089                                 break;
1090                         case 'D':
1091                                 /* move cursor num1 columns back */
1092                                 console_cursor_left(num1);
1093                                 break;
1094                         case 'E':
1095                                 /* move cursor num1 rows up at begin of row */
1096                                 console_previousline(num1);
1097                                 break;
1098                         case 'F':
1099                                 /* move cursor num1 rows down at begin of row */
1100                                 console_newline(num1);
1101                                 break;
1102                         case 'G':
1103                                 /* move cursor to column num1 */
1104                                 console_cursor_set_position(-1, num1-1);
1105                                 break;
1106                         case 'H':
1107                                 /* move cursor to row num1, column num2 */
1108                                 console_cursor_set_position(num1-1, num2-1);
1109                                 break;
1110                         case 'J':
1111                                 /* clear console and move cursor to 0, 0 */
1112                                 console_clear();
1113                                 console_cursor_set_position(0, 0);
1114                                 break;
1115                         case 'K':
1116                                 /* clear line */
1117                                 if (num1 == 0)
1118                                         console_clear_line(console_row,
1119                                                         console_col,
1120                                                         CONSOLE_COLS-1);
1121                                 else if (num1 == 1)
1122                                         console_clear_line(console_row,
1123                                                         0, console_col);
1124                                 else
1125                                         console_clear_line(console_row,
1126                                                         0, CONSOLE_COLS-1);
1127                                 break;
1128                         case 'h':
1129                                 ansi_cursor_hidden = 0;
1130                                 break;
1131                         case 'l':
1132                                 ansi_cursor_hidden = 1;
1133                                 break;
1134                         case 'm':
1135                                 if (num1 == 0) { /* reset swapped colors */
1136                                         if (ansi_colors_need_revert) {
1137                                                 console_swap_colors();
1138                                                 ansi_colors_need_revert = 0;
1139                                         }
1140                                 } else if (num1 == 7) { /* once swap colors */
1141                                         if (!ansi_colors_need_revert) {
1142                                                 console_swap_colors();
1143                                                 ansi_colors_need_revert = 1;
1144                                         }
1145                                 }
1146                                 break;
1147                         }
1148                         if (!ansi_cursor_hidden)
1149                                 CURSOR_SET;
1150                 }
1151         } else {
1152                 parse_putc(c);
1153         }
1154 #else
1155         parse_putc(c);
1156 #endif
1157         if (cfb_do_flush_cache)
1158                 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
1159 }
1160
1161 static void video_puts(struct stdio_dev *dev, const char *s)
1162 {
1163         int count = strlen(s);
1164
1165         while (count--)
1166                 video_putc(dev, *s++);
1167 }
1168
1169 /*
1170  * Do not enforce drivers (or board code) to provide empty
1171  * video_set_lut() if they do not support 8 bpp format.
1172  * Implement weak default function instead.
1173  */
1174 __weak void video_set_lut(unsigned int index, unsigned char r,
1175                      unsigned char g, unsigned char b)
1176 {
1177 }
1178
1179 #if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
1180
1181 #define FILL_8BIT_332RGB(r,g,b) {                       \
1182         *fb = ((r>>5)<<5) | ((g>>5)<<2) | (b>>6);       \
1183         fb ++;                                          \
1184 }
1185
1186 #define FILL_15BIT_555RGB(r,g,b) {                      \
1187         *(unsigned short *)fb =                         \
1188                 SWAP16((unsigned short)(((r>>3)<<10) |  \
1189                                         ((g>>3)<<5)  |  \
1190                                          (b>>3)));      \
1191         fb += 2;                                        \
1192 }
1193
1194 #define FILL_16BIT_565RGB(r,g,b) {                      \
1195         *(unsigned short *)fb =                         \
1196                 SWAP16((unsigned short)((((r)>>3)<<11)| \
1197                                         (((g)>>2)<<5) | \
1198                                          ((b)>>3)));    \
1199         fb += 2;                                        \
1200 }
1201
1202 #define FILL_32BIT_X888RGB(r,g,b) {                     \
1203         *(unsigned long *)fb =                          \
1204                 SWAP32((unsigned long)(((r<<16) |       \
1205                                         (g<<8)  |       \
1206                                          b)));          \
1207         fb += 4;                                        \
1208 }
1209
1210 #ifdef VIDEO_FB_LITTLE_ENDIAN
1211 #define FILL_24BIT_888RGB(r,g,b) {                      \
1212         fb[0] = b;                                      \
1213         fb[1] = g;                                      \
1214         fb[2] = r;                                      \
1215         fb += 3;                                        \
1216 }
1217 #else
1218 #define FILL_24BIT_888RGB(r,g,b) {                      \
1219         fb[0] = r;                                      \
1220         fb[1] = g;                                      \
1221         fb[2] = b;                                      \
1222         fb += 3;                                        \
1223 }
1224 #endif
1225
1226 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1227 static inline void fill_555rgb_pswap(uchar *fb, int x, u8 r, u8 g, u8 b)
1228 {
1229         ushort *dst = (ushort *) fb;
1230         ushort color = (ushort) (((r >> 3) << 10) |
1231                                  ((g >> 3) <<  5) |
1232                                   (b >> 3));
1233         if (x & 1)
1234                 *(--dst) = color;
1235         else
1236                 *(++dst) = color;
1237 }
1238 #endif
1239
1240 /*
1241  * RLE8 bitmap support
1242  */
1243
1244 #ifdef CONFIG_VIDEO_BMP_RLE8
1245 /* Pre-calculated color table entry */
1246 struct palette {
1247         union {
1248                 unsigned short w;       /* word */
1249                 unsigned int dw;        /* double word */
1250         } ce;                           /* color entry */
1251 };
1252
1253 /*
1254  * Helper to draw encoded/unencoded run.
1255  */
1256 static void draw_bitmap(uchar **fb, uchar *bm, struct palette *p,
1257                         int cnt, int enc)
1258 {
1259         ulong addr = (ulong) *fb;
1260         int *off;
1261         int enc_off = 1;
1262         int i;
1263
1264         /*
1265          * Setup offset of the color index in the bitmap.
1266          * Color index of encoded run is at offset 1.
1267          */
1268         off = enc ? &enc_off : &i;
1269
1270         switch (VIDEO_DATA_FORMAT) {
1271         case GDF__8BIT_INDEX:
1272                 for (i = 0; i < cnt; i++)
1273                         *(unsigned char *) addr++ = bm[*off];
1274                 break;
1275         case GDF_15BIT_555RGB:
1276         case GDF_16BIT_565RGB:
1277                 /* differences handled while pre-calculating palette */
1278                 for (i = 0; i < cnt; i++) {
1279                         *(unsigned short *) addr = p[bm[*off]].ce.w;
1280                         addr += 2;
1281                 }
1282                 break;
1283         case GDF_32BIT_X888RGB:
1284                 for (i = 0; i < cnt; i++) {
1285                         *(unsigned long *) addr = p[bm[*off]].ce.dw;
1286                         addr += 4;
1287                 }
1288                 break;
1289         }
1290         *fb = (uchar *) addr;   /* return modified address */
1291 }
1292
1293 static int display_rle8_bitmap(bmp_image_t *img, int xoff, int yoff,
1294                                int width, int height)
1295 {
1296         unsigned char *bm;
1297         unsigned char *fbp;
1298         unsigned int cnt, runlen;
1299         int decode = 1;
1300         int x, y, bpp, i, ncolors;
1301         struct palette p[256];
1302         bmp_color_table_entry_t cte;
1303         int green_shift, red_off;
1304         int limit = VIDEO_COLS * VIDEO_ROWS;
1305         int pixels = 0;
1306
1307         x = 0;
1308         y = __le32_to_cpu(img->header.height) - 1;
1309         ncolors = __le32_to_cpu(img->header.colors_used);
1310         bpp = VIDEO_PIXEL_SIZE;
1311         fbp = (unsigned char *) ((unsigned int) video_fb_address +
1312                                  (((y + yoff) * VIDEO_COLS) + xoff) * bpp);
1313
1314         bm = (uchar *) img + __le32_to_cpu(img->header.data_offset);
1315
1316         /* pre-calculate and setup palette */
1317         switch (VIDEO_DATA_FORMAT) {
1318         case GDF__8BIT_INDEX:
1319                 for (i = 0; i < ncolors; i++) {
1320                         cte = img->color_table[i];
1321                         video_set_lut(i, cte.red, cte.green, cte.blue);
1322                 }
1323                 break;
1324         case GDF_15BIT_555RGB:
1325         case GDF_16BIT_565RGB:
1326                 if (VIDEO_DATA_FORMAT == GDF_15BIT_555RGB) {
1327                         green_shift = 3;
1328                         red_off = 10;
1329                 } else {
1330                         green_shift = 2;
1331                         red_off = 11;
1332                 }
1333                 for (i = 0; i < ncolors; i++) {
1334                         cte = img->color_table[i];
1335                         p[i].ce.w = SWAP16((unsigned short)
1336                                            (((cte.red >> 3) << red_off) |
1337                                             ((cte.green >> green_shift) << 5) |
1338                                             cte.blue >> 3));
1339                 }
1340                 break;
1341         case GDF_32BIT_X888RGB:
1342                 for (i = 0; i < ncolors; i++) {
1343                         cte = img->color_table[i];
1344                         p[i].ce.dw = SWAP32((cte.red << 16) |
1345                                             (cte.green << 8) |
1346                                              cte.blue);
1347                 }
1348                 break;
1349         default:
1350                 printf("RLE Bitmap unsupported in video mode 0x%x\n",
1351                        VIDEO_DATA_FORMAT);
1352                 return -1;
1353         }
1354
1355         while (decode) {
1356                 switch (bm[0]) {
1357                 case 0:
1358                         switch (bm[1]) {
1359                         case 0:
1360                                 /* scan line end marker */
1361                                 bm += 2;
1362                                 x = 0;
1363                                 y--;
1364                                 fbp = (unsigned char *)
1365                                         ((unsigned int) video_fb_address +
1366                                          (((y + yoff) * VIDEO_COLS) +
1367                                           xoff) * bpp);
1368                                 continue;
1369                         case 1:
1370                                 /* end of bitmap data marker */
1371                                 decode = 0;
1372                                 break;
1373                         case 2:
1374                                 /* run offset marker */
1375                                 x += bm[2];
1376                                 y -= bm[3];
1377                                 fbp = (unsigned char *)
1378                                         ((unsigned int) video_fb_address +
1379                                          (((y + yoff) * VIDEO_COLS) +
1380                                           x + xoff) * bpp);
1381                                 bm += 4;
1382                                 break;
1383                         default:
1384                                 /* unencoded run */
1385                                 cnt = bm[1];
1386                                 runlen = cnt;
1387                                 pixels += cnt;
1388                                 if (pixels > limit)
1389                                         goto error;
1390
1391                                 bm += 2;
1392                                 if (y < height) {
1393                                         if (x >= width) {
1394                                                 x += runlen;
1395                                                 goto next_run;
1396                                         }
1397                                         if (x + runlen > width)
1398                                                 cnt = width - x;
1399                                         draw_bitmap(&fbp, bm, p, cnt, 0);
1400                                         x += runlen;
1401                                 }
1402 next_run:
1403                                 bm += runlen;
1404                                 if (runlen & 1)
1405                                         bm++;   /* 0 padding if length is odd */
1406                         }
1407                         break;
1408                 default:
1409                         /* encoded run */
1410                         cnt = bm[0];
1411                         runlen = cnt;
1412                         pixels += cnt;
1413                         if (pixels > limit)
1414                                 goto error;
1415
1416                         if (y < height) {     /* only draw into visible area */
1417                                 if (x >= width) {
1418                                         x += runlen;
1419                                         bm += 2;
1420                                         continue;
1421                                 }
1422                                 if (x + runlen > width)
1423                                         cnt = width - x;
1424                                 draw_bitmap(&fbp, bm, p, cnt, 1);
1425                                 x += runlen;
1426                         }
1427                         bm += 2;
1428                         break;
1429                 }
1430         }
1431         return 0;
1432 error:
1433         printf("Error: Too much encoded pixel data, validate your bitmap\n");
1434         return -1;
1435 }
1436 #endif
1437
1438 /*
1439  * Display the BMP file located at address bmp_image.
1440  */
1441 int video_display_bitmap(ulong bmp_image, int x, int y)
1442 {
1443         ushort xcount, ycount;
1444         uchar *fb;
1445         bmp_image_t *bmp = (bmp_image_t *) bmp_image;
1446         uchar *bmap;
1447         ushort padded_line;
1448         unsigned long width, height, bpp;
1449         unsigned colors;
1450         unsigned long compression;
1451         bmp_color_table_entry_t cte;
1452
1453 #ifdef CONFIG_VIDEO_BMP_GZIP
1454         unsigned char *dst = NULL;
1455         ulong len;
1456 #endif
1457
1458         WATCHDOG_RESET();
1459
1460         if (!((bmp->header.signature[0] == 'B') &&
1461               (bmp->header.signature[1] == 'M'))) {
1462
1463 #ifdef CONFIG_VIDEO_BMP_GZIP
1464                 /*
1465                  * Could be a gzipped bmp image, try to decrompress...
1466                  */
1467                 len = CONFIG_SYS_VIDEO_LOGO_MAX_SIZE;
1468                 dst = malloc(CONFIG_SYS_VIDEO_LOGO_MAX_SIZE);
1469                 if (dst == NULL) {
1470                         printf("Error: malloc in gunzip failed!\n");
1471                         return 1;
1472                 }
1473                 /*
1474                  * NB: we need to force offset of +2
1475                  * See doc/README.displaying-bmps
1476                  */
1477                 if (gunzip(dst+2, CONFIG_SYS_VIDEO_LOGO_MAX_SIZE-2,
1478                            (uchar *) bmp_image,
1479                            &len) != 0) {
1480                         printf("Error: no valid bmp or bmp.gz image at %lx\n",
1481                                bmp_image);
1482                         free(dst);
1483                         return 1;
1484                 }
1485                 if (len == CONFIG_SYS_VIDEO_LOGO_MAX_SIZE) {
1486                         printf("Image could be truncated "
1487                                 "(increase CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)!\n");
1488                 }
1489
1490                 /*
1491                  * Set addr to decompressed image
1492                  */
1493                 bmp = (bmp_image_t *)(dst+2);
1494
1495                 if (!((bmp->header.signature[0] == 'B') &&
1496                       (bmp->header.signature[1] == 'M'))) {
1497                         printf("Error: no valid bmp.gz image at %lx\n",
1498                                bmp_image);
1499                         free(dst);
1500                         return 1;
1501                 }
1502 #else
1503                 printf("Error: no valid bmp image at %lx\n", bmp_image);
1504                 return 1;
1505 #endif /* CONFIG_VIDEO_BMP_GZIP */
1506         }
1507
1508         width = le32_to_cpu(bmp->header.width);
1509         height = le32_to_cpu(bmp->header.height);
1510         bpp = le16_to_cpu(bmp->header.bit_count);
1511         colors = le32_to_cpu(bmp->header.colors_used);
1512         compression = le32_to_cpu(bmp->header.compression);
1513
1514         debug("Display-bmp: %ld x %ld  with %d colors\n",
1515               width, height, colors);
1516
1517         if (compression != BMP_BI_RGB
1518 #ifdef CONFIG_VIDEO_BMP_RLE8
1519             && compression != BMP_BI_RLE8
1520 #endif
1521                 ) {
1522                 printf("Error: compression type %ld not supported\n",
1523                        compression);
1524 #ifdef CONFIG_VIDEO_BMP_GZIP
1525                 if (dst)
1526                         free(dst);
1527 #endif
1528                 return 1;
1529         }
1530
1531         padded_line = (((width * bpp + 7) / 8) + 3) & ~0x3;
1532
1533 #ifdef CONFIG_SPLASH_SCREEN_ALIGN
1534         if (x == BMP_ALIGN_CENTER)
1535                 x = max(0, (VIDEO_VISIBLE_COLS - width) / 2);
1536         else if (x < 0)
1537                 x = max(0, VIDEO_VISIBLE_COLS - width + x + 1);
1538
1539         if (y == BMP_ALIGN_CENTER)
1540                 y = max(0, (VIDEO_VISIBLE_ROWS - height) / 2);
1541         else if (y < 0)
1542                 y = max(0, VIDEO_VISIBLE_ROWS - height + y + 1);
1543 #endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1544
1545         /*
1546          * Just ignore elements which are completely beyond screen
1547          * dimensions.
1548          */
1549         if ((x >= VIDEO_VISIBLE_COLS) || (y >= VIDEO_VISIBLE_ROWS))
1550                 return 0;
1551
1552         if ((x + width) > VIDEO_VISIBLE_COLS)
1553                 width = VIDEO_VISIBLE_COLS - x;
1554         if ((y + height) > VIDEO_VISIBLE_ROWS)
1555                 height = VIDEO_VISIBLE_ROWS - y;
1556
1557         bmap = (uchar *) bmp + le32_to_cpu(bmp->header.data_offset);
1558         fb = (uchar *) (video_fb_address +
1559                         ((y + height - 1) * VIDEO_COLS * VIDEO_PIXEL_SIZE) +
1560                         x * VIDEO_PIXEL_SIZE);
1561
1562 #ifdef CONFIG_VIDEO_BMP_RLE8
1563         if (compression == BMP_BI_RLE8) {
1564                 return display_rle8_bitmap(bmp, x, y, width, height);
1565         }
1566 #endif
1567
1568         /* We handle only 4, 8, or 24 bpp bitmaps */
1569         switch (le16_to_cpu(bmp->header.bit_count)) {
1570         case 4:
1571                 padded_line -= width / 2;
1572                 ycount = height;
1573
1574                 switch (VIDEO_DATA_FORMAT) {
1575                 case GDF_32BIT_X888RGB:
1576                         while (ycount--) {
1577                                 WATCHDOG_RESET();
1578                                 /*
1579                                  * Don't assume that 'width' is an
1580                                  * even number
1581                                  */
1582                                 for (xcount = 0; xcount < width; xcount++) {
1583                                         uchar idx;
1584
1585                                         if (xcount & 1) {
1586                                                 idx = *bmap & 0xF;
1587                                                 bmap++;
1588                                         } else
1589                                                 idx = *bmap >> 4;
1590                                         cte = bmp->color_table[idx];
1591                                         FILL_32BIT_X888RGB(cte.red, cte.green,
1592                                                            cte.blue);
1593                                 }
1594                                 bmap += padded_line;
1595                                 fb -= (VIDEO_VISIBLE_COLS + width) *
1596                                         VIDEO_PIXEL_SIZE;
1597                         }
1598                         break;
1599                 default:
1600                         puts("4bpp bitmap unsupported with current "
1601                              "video mode\n");
1602                         break;
1603                 }
1604                 break;
1605
1606         case 8:
1607                 padded_line -= width;
1608                 if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
1609                         /* Copy colormap */
1610                         for (xcount = 0; xcount < colors; ++xcount) {
1611                                 cte = bmp->color_table[xcount];
1612                                 video_set_lut(xcount, cte.red, cte.green,
1613                                               cte.blue);
1614                         }
1615                 }
1616                 ycount = height;
1617                 switch (VIDEO_DATA_FORMAT) {
1618                 case GDF__8BIT_INDEX:
1619                         while (ycount--) {
1620                                 WATCHDOG_RESET();
1621                                 xcount = width;
1622                                 while (xcount--) {
1623                                         *fb++ = *bmap++;
1624                                 }
1625                                 bmap += padded_line;
1626                                 fb -= (VIDEO_VISIBLE_COLS + width) *
1627                                                         VIDEO_PIXEL_SIZE;
1628                         }
1629                         break;
1630                 case GDF__8BIT_332RGB:
1631                         while (ycount--) {
1632                                 WATCHDOG_RESET();
1633                                 xcount = width;
1634                                 while (xcount--) {
1635                                         cte = bmp->color_table[*bmap++];
1636                                         FILL_8BIT_332RGB(cte.red, cte.green,
1637                                                          cte.blue);
1638                                 }
1639                                 bmap += padded_line;
1640                                 fb -= (VIDEO_VISIBLE_COLS + width) *
1641                                                         VIDEO_PIXEL_SIZE;
1642                         }
1643                         break;
1644                 case GDF_15BIT_555RGB:
1645                         while (ycount--) {
1646 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1647                                 int xpos = x;
1648 #endif
1649                                 WATCHDOG_RESET();
1650                                 xcount = width;
1651                                 while (xcount--) {
1652                                         cte = bmp->color_table[*bmap++];
1653 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1654                                         fill_555rgb_pswap(fb, xpos++, cte.red,
1655                                                           cte.green,
1656                                                           cte.blue);
1657                                         fb += 2;
1658 #else
1659                                         FILL_15BIT_555RGB(cte.red, cte.green,
1660                                                           cte.blue);
1661 #endif
1662                                 }
1663                                 bmap += padded_line;
1664                                 fb -= (VIDEO_VISIBLE_COLS + width) *
1665                                                         VIDEO_PIXEL_SIZE;
1666                         }
1667                         break;
1668                 case GDF_16BIT_565RGB:
1669                         while (ycount--) {
1670                                 WATCHDOG_RESET();
1671                                 xcount = width;
1672                                 while (xcount--) {
1673                                         cte = bmp->color_table[*bmap++];
1674                                         FILL_16BIT_565RGB(cte.red, cte.green,
1675                                                           cte.blue);
1676                                 }
1677                                 bmap += padded_line;
1678                                 fb -= (VIDEO_VISIBLE_COLS + width) *
1679                                                         VIDEO_PIXEL_SIZE;
1680                         }
1681                         break;
1682                 case GDF_32BIT_X888RGB:
1683                         while (ycount--) {
1684                                 WATCHDOG_RESET();
1685                                 xcount = width;
1686                                 while (xcount--) {
1687                                         cte = bmp->color_table[*bmap++];
1688                                         FILL_32BIT_X888RGB(cte.red, cte.green,
1689                                                            cte.blue);
1690                                 }
1691                                 bmap += padded_line;
1692                                 fb -= (VIDEO_VISIBLE_COLS + width) *
1693                                                         VIDEO_PIXEL_SIZE;
1694                         }
1695                         break;
1696                 case GDF_24BIT_888RGB:
1697                         while (ycount--) {
1698                                 WATCHDOG_RESET();
1699                                 xcount = width;
1700                                 while (xcount--) {
1701                                         cte = bmp->color_table[*bmap++];
1702                                         FILL_24BIT_888RGB(cte.red, cte.green,
1703                                                           cte.blue);
1704                                 }
1705                                 bmap += padded_line;
1706                                 fb -= (VIDEO_VISIBLE_COLS + width) *
1707                                                         VIDEO_PIXEL_SIZE;
1708                         }
1709                         break;
1710                 }
1711                 break;
1712         case 24:
1713                 padded_line -= 3 * width;
1714                 ycount = height;
1715                 switch (VIDEO_DATA_FORMAT) {
1716                 case GDF__8BIT_332RGB:
1717                         while (ycount--) {
1718                                 WATCHDOG_RESET();
1719                                 xcount = width;
1720                                 while (xcount--) {
1721                                         FILL_8BIT_332RGB(bmap[2], bmap[1],
1722                                                          bmap[0]);
1723                                         bmap += 3;
1724                                 }
1725                                 bmap += padded_line;
1726                                 fb -= (VIDEO_VISIBLE_COLS + width) *
1727                                                         VIDEO_PIXEL_SIZE;
1728                         }
1729                         break;
1730                 case GDF_15BIT_555RGB:
1731                         while (ycount--) {
1732 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1733                                 int xpos = x;
1734 #endif
1735                                 WATCHDOG_RESET();
1736                                 xcount = width;
1737                                 while (xcount--) {
1738 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1739                                         fill_555rgb_pswap(fb, xpos++, bmap[2],
1740                                                           bmap[1], bmap[0]);
1741                                         fb += 2;
1742 #else
1743                                         FILL_15BIT_555RGB(bmap[2], bmap[1],
1744                                                           bmap[0]);
1745 #endif
1746                                         bmap += 3;
1747                                 }
1748                                 bmap += padded_line;
1749                                 fb -= (VIDEO_VISIBLE_COLS + width) *
1750                                                         VIDEO_PIXEL_SIZE;
1751                         }
1752                         break;
1753                 case GDF_16BIT_565RGB:
1754                         while (ycount--) {
1755                                 WATCHDOG_RESET();
1756                                 xcount = width;
1757                                 while (xcount--) {
1758                                         FILL_16BIT_565RGB(bmap[2], bmap[1],
1759                                                           bmap[0]);
1760                                         bmap += 3;
1761                                 }
1762                                 bmap += padded_line;
1763                                 fb -= (VIDEO_VISIBLE_COLS + width) *
1764                                                         VIDEO_PIXEL_SIZE;
1765                         }
1766                         break;
1767                 case GDF_32BIT_X888RGB:
1768                         while (ycount--) {
1769                                 WATCHDOG_RESET();
1770                                 xcount = width;
1771                                 while (xcount--) {
1772                                         FILL_32BIT_X888RGB(bmap[2], bmap[1],
1773                                                            bmap[0]);
1774                                         bmap += 3;
1775                                 }
1776                                 bmap += padded_line;
1777                                 fb -= (VIDEO_VISIBLE_COLS + width) *
1778                                                         VIDEO_PIXEL_SIZE;
1779                         }
1780                         break;
1781                 case GDF_24BIT_888RGB:
1782                         while (ycount--) {
1783                                 WATCHDOG_RESET();
1784                                 xcount = width;
1785                                 while (xcount--) {
1786                                         FILL_24BIT_888RGB(bmap[2], bmap[1],
1787                                                           bmap[0]);
1788                                         bmap += 3;
1789                                 }
1790                                 bmap += padded_line;
1791                                 fb -= (VIDEO_VISIBLE_COLS + width) *
1792                                                         VIDEO_PIXEL_SIZE;
1793                         }
1794                         break;
1795                 default:
1796                         printf("Error: 24 bits/pixel bitmap incompatible "
1797                                 "with current video mode\n");
1798                         break;
1799                 }
1800                 break;
1801         default:
1802                 printf("Error: %d bit/pixel bitmaps not supported by U-Boot\n",
1803                         le16_to_cpu(bmp->header.bit_count));
1804                 break;
1805         }
1806
1807 #ifdef CONFIG_VIDEO_BMP_GZIP
1808         if (dst) {
1809                 free(dst);
1810         }
1811 #endif
1812
1813         if (cfb_do_flush_cache)
1814                 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
1815         return (0);
1816 }
1817 #endif
1818
1819
1820 #ifdef CONFIG_VIDEO_LOGO
1821 static int video_logo_xpos;
1822 static int video_logo_ypos;
1823
1824 static void plot_logo_or_black(void *screen, int width, int x, int y,   \
1825                         int black);
1826
1827 static void logo_plot(void *screen, int width, int x, int y)
1828 {
1829         plot_logo_or_black(screen, width, x, y, 0);
1830 }
1831
1832 static void logo_black(void)
1833 {
1834         plot_logo_or_black(video_fb_address, \
1835                         VIDEO_COLS, \
1836                         video_logo_xpos, \
1837                         video_logo_ypos, \
1838                         1);
1839 }
1840
1841 static int do_clrlogo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1842 {
1843         if (argc != 1)
1844                 return cmd_usage(cmdtp);
1845
1846         logo_black();
1847         return 0;
1848 }
1849
1850 U_BOOT_CMD(
1851            clrlogo, 1, 0, do_clrlogo,
1852            "fill the boot logo area with black",
1853            " "
1854            );
1855
1856 static void plot_logo_or_black(void *screen, int width, int x, int y, int black)
1857 {
1858
1859         int xcount, i;
1860         int skip = (width - VIDEO_LOGO_WIDTH) * VIDEO_PIXEL_SIZE;
1861         int ycount = video_logo_height;
1862         unsigned char r, g, b, *logo_red, *logo_blue, *logo_green;
1863         unsigned char *source;
1864         unsigned char *dest;
1865
1866 #ifdef CONFIG_SPLASH_SCREEN_ALIGN
1867         if (x == BMP_ALIGN_CENTER)
1868                 x = max(0, (VIDEO_VISIBLE_COLS - VIDEO_LOGO_WIDTH) / 2);
1869         else if (x < 0)
1870                 x = max(0, VIDEO_VISIBLE_COLS - VIDEO_LOGO_WIDTH + x + 1);
1871
1872         if (y == BMP_ALIGN_CENTER)
1873                 y = max(0, (VIDEO_VISIBLE_ROWS - VIDEO_LOGO_HEIGHT) / 2);
1874         else if (y < 0)
1875                 y = max(0, VIDEO_VISIBLE_ROWS - VIDEO_LOGO_HEIGHT + y + 1);
1876 #endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1877
1878         dest = (unsigned char *)screen + (y * width  + x) * VIDEO_PIXEL_SIZE;
1879
1880 #ifdef CONFIG_VIDEO_BMP_LOGO
1881         source = bmp_logo_bitmap;
1882
1883         /* Allocate temporary space for computing colormap */
1884         logo_red = malloc(BMP_LOGO_COLORS);
1885         logo_green = malloc(BMP_LOGO_COLORS);
1886         logo_blue = malloc(BMP_LOGO_COLORS);
1887         /* Compute color map */
1888         for (i = 0; i < VIDEO_LOGO_COLORS; i++) {
1889                 logo_red[i] = (bmp_logo_palette[i] & 0x0f00) >> 4;
1890                 logo_green[i] = (bmp_logo_palette[i] & 0x00f0);
1891                 logo_blue[i] = (bmp_logo_palette[i] & 0x000f) << 4;
1892         }
1893 #else
1894         source = linux_logo;
1895         logo_red = linux_logo_red;
1896         logo_green = linux_logo_green;
1897         logo_blue = linux_logo_blue;
1898 #endif
1899
1900         if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
1901                 for (i = 0; i < VIDEO_LOGO_COLORS; i++) {
1902                         video_set_lut(i + VIDEO_LOGO_LUT_OFFSET,
1903                                       logo_red[i], logo_green[i],
1904                                       logo_blue[i]);
1905                 }
1906         }
1907
1908         while (ycount--) {
1909 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1910                 int xpos = x;
1911 #endif
1912                 xcount = VIDEO_LOGO_WIDTH;
1913                 while (xcount--) {
1914                         if (black) {
1915                                 r = 0x00;
1916                                 g = 0x00;
1917                                 b = 0x00;
1918                         } else {
1919                                 r = logo_red[*source - VIDEO_LOGO_LUT_OFFSET];
1920                                 g = logo_green[*source - VIDEO_LOGO_LUT_OFFSET];
1921                                 b = logo_blue[*source - VIDEO_LOGO_LUT_OFFSET];
1922                         }
1923
1924                         switch (VIDEO_DATA_FORMAT) {
1925                         case GDF__8BIT_INDEX:
1926                                 *dest = *source;
1927                                 break;
1928                         case GDF__8BIT_332RGB:
1929                                 *dest = ((r >> 5) << 5) |
1930                                         ((g >> 5) << 2) |
1931                                          (b >> 6);
1932                                 break;
1933                         case GDF_15BIT_555RGB:
1934 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1935                                 fill_555rgb_pswap(dest, xpos++, r, g, b);
1936 #else
1937                                 *(unsigned short *) dest =
1938                                         SWAP16((unsigned short) (
1939                                                         ((r >> 3) << 10) |
1940                                                         ((g >> 3) <<  5) |
1941                                                          (b >> 3)));
1942 #endif
1943                                 break;
1944                         case GDF_16BIT_565RGB:
1945                                 *(unsigned short *) dest =
1946                                         SWAP16((unsigned short) (
1947                                                         ((r >> 3) << 11) |
1948                                                         ((g >> 2) <<  5) |
1949                                                          (b >> 3)));
1950                                 break;
1951                         case GDF_32BIT_X888RGB:
1952                                 *(unsigned long *) dest =
1953                                         SWAP32((unsigned long) (
1954                                                         (r << 16) |
1955                                                         (g <<  8) |
1956                                                          b));
1957                                 break;
1958                         case GDF_24BIT_888RGB:
1959 #ifdef VIDEO_FB_LITTLE_ENDIAN
1960                                 dest[0] = b;
1961                                 dest[1] = g;
1962                                 dest[2] = r;
1963 #else
1964                                 dest[0] = r;
1965                                 dest[1] = g;
1966                                 dest[2] = b;
1967 #endif
1968                                 break;
1969                         }
1970                         source++;
1971                         dest += VIDEO_PIXEL_SIZE;
1972                 }
1973                 dest += skip;
1974         }
1975 #ifdef CONFIG_VIDEO_BMP_LOGO
1976         free(logo_red);
1977         free(logo_green);
1978         free(logo_blue);
1979 #endif
1980 }
1981
1982 static void *video_logo(void)
1983 {
1984         char info[128];
1985         int space, len;
1986         __maybe_unused int y_off = 0;
1987         __maybe_unused ulong addr;
1988         __maybe_unused char *s;
1989
1990         splash_get_pos(&video_logo_xpos, &video_logo_ypos);
1991
1992 #ifdef CONFIG_SPLASH_SCREEN
1993         s = getenv("splashimage");
1994         if (s != NULL) {
1995                 splash_screen_prepare();
1996                 addr = simple_strtoul(s, NULL, 16);
1997
1998                 if (video_display_bitmap(addr,
1999                                         video_logo_xpos,
2000                                         video_logo_ypos) == 0) {
2001                         video_logo_height = 0;
2002                         return ((void *) (video_fb_address));
2003                 }
2004         }
2005 #endif /* CONFIG_SPLASH_SCREEN */
2006
2007         logo_plot(video_fb_address, VIDEO_COLS,
2008                   video_logo_xpos, video_logo_ypos);
2009
2010 #ifdef CONFIG_SPLASH_SCREEN_ALIGN
2011         /*
2012          * when using splashpos for video_logo, skip any info
2013          * output on video console if the logo is not at 0,0
2014          */
2015         if (video_logo_xpos || video_logo_ypos) {
2016                 /*
2017                  * video_logo_height is used in text and cursor offset
2018                  * calculations. Since the console is below the logo,
2019                  * we need to adjust the logo height
2020                  */
2021                 if (video_logo_ypos == BMP_ALIGN_CENTER)
2022                         video_logo_height += max(0, (VIDEO_VISIBLE_ROWS - \
2023                                                      VIDEO_LOGO_HEIGHT) / 2);
2024                 else if (video_logo_ypos > 0)
2025                         video_logo_height += video_logo_ypos;
2026
2027                 return video_fb_address + video_logo_height * VIDEO_LINE_LEN;
2028         }
2029 #endif
2030         if (board_cfb_skip())
2031                 return 0;
2032
2033         sprintf(info, " %s", version_string);
2034
2035         space = (VIDEO_LINE_LEN / 2 - VIDEO_INFO_X) / VIDEO_FONT_WIDTH;
2036         len = strlen(info);
2037
2038         if (len > space) {
2039                 video_drawchars(VIDEO_INFO_X, VIDEO_INFO_Y,
2040                                 (uchar *) info, space);
2041                 video_drawchars(VIDEO_INFO_X + VIDEO_FONT_WIDTH,
2042                                 VIDEO_INFO_Y + VIDEO_FONT_HEIGHT,
2043                                 (uchar *) info + space, len - space);
2044                 y_off = 1;
2045         } else
2046                 video_drawstring(VIDEO_INFO_X, VIDEO_INFO_Y, (uchar *) info);
2047
2048 #ifdef CONFIG_CONSOLE_EXTRA_INFO
2049         {
2050                 int i, n =
2051                         ((video_logo_height -
2052                           VIDEO_FONT_HEIGHT) / VIDEO_FONT_HEIGHT);
2053
2054                 for (i = 1; i < n; i++) {
2055                         video_get_info_str(i, info);
2056                         if (!*info)
2057                                 continue;
2058
2059                         len = strlen(info);
2060                         if (len > space) {
2061                                 video_drawchars(VIDEO_INFO_X,
2062                                                 VIDEO_INFO_Y +
2063                                                 (i + y_off) *
2064                                                         VIDEO_FONT_HEIGHT,
2065                                                 (uchar *) info, space);
2066                                 y_off++;
2067                                 video_drawchars(VIDEO_INFO_X +
2068                                                 VIDEO_FONT_WIDTH,
2069                                                 VIDEO_INFO_Y +
2070                                                         (i + y_off) *
2071                                                         VIDEO_FONT_HEIGHT,
2072                                                 (uchar *) info + space,
2073                                                 len - space);
2074                         } else {
2075                                 video_drawstring(VIDEO_INFO_X,
2076                                                  VIDEO_INFO_Y +
2077                                                  (i + y_off) *
2078                                                         VIDEO_FONT_HEIGHT,
2079                                                  (uchar *) info);
2080                         }
2081                 }
2082         }
2083 #endif
2084
2085         return (video_fb_address + video_logo_height * VIDEO_LINE_LEN);
2086 }
2087 #endif
2088
2089 static int cfb_fb_is_in_dram(void)
2090 {
2091         bd_t *bd = gd->bd;
2092 #if defined(CONFIG_ARM) || defined(CONFIG_AVR32) || defined(COFNIG_NDS32) || \
2093 defined(CONFIG_SANDBOX) || defined(CONFIG_X86)
2094         ulong start, end;
2095         int i;
2096
2097         for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
2098                 start = bd->bi_dram[i].start;
2099                 end = bd->bi_dram[i].start + bd->bi_dram[i].size - 1;
2100                 if ((ulong)video_fb_address >= start &&
2101                     (ulong)video_fb_address < end)
2102                         return 1;
2103         }
2104 #else
2105         if ((ulong)video_fb_address >= bd->bi_memstart &&
2106             (ulong)video_fb_address < bd->bi_memstart + bd->bi_memsize)
2107                 return 1;
2108 #endif
2109         return 0;
2110 }
2111
2112 void video_clear(void)
2113 {
2114         if (!video_fb_address)
2115                 return;
2116 #ifdef VIDEO_HW_RECTFILL
2117         video_hw_rectfill(VIDEO_PIXEL_SIZE,     /* bytes per pixel */
2118                           0,                    /* dest pos x */
2119                           0,                    /* dest pos y */
2120                           VIDEO_VISIBLE_COLS,   /* frame width */
2121                           VIDEO_VISIBLE_ROWS,   /* frame height */
2122                           bgx                   /* fill color */
2123         );
2124 #else
2125         memsetl(video_fb_address,
2126                 (VIDEO_VISIBLE_ROWS * VIDEO_LINE_LEN) / sizeof(int), bgx);
2127 #endif
2128 }
2129
2130 static int video_init(void)
2131 {
2132         unsigned char color8;
2133
2134         pGD = video_hw_init();
2135         if (pGD == NULL)
2136                 return -1;
2137
2138         video_fb_address = (void *) VIDEO_FB_ADRS;
2139 #ifdef CONFIG_VIDEO_HW_CURSOR
2140         video_init_hw_cursor(VIDEO_FONT_WIDTH, VIDEO_FONT_HEIGHT);
2141 #endif
2142
2143         cfb_do_flush_cache = cfb_fb_is_in_dram() && dcache_status();
2144
2145         /* Init drawing pats */
2146         switch (VIDEO_DATA_FORMAT) {
2147         case GDF__8BIT_INDEX:
2148                 video_set_lut(0x01, CONSOLE_FG_COL, CONSOLE_FG_COL,
2149                               CONSOLE_FG_COL);
2150                 video_set_lut(0x00, CONSOLE_BG_COL, CONSOLE_BG_COL,
2151                               CONSOLE_BG_COL);
2152                 fgx = 0x01010101;
2153                 bgx = 0x00000000;
2154                 break;
2155         case GDF__8BIT_332RGB:
2156                 color8 = ((CONSOLE_FG_COL & 0xe0) |
2157                           ((CONSOLE_FG_COL >> 3) & 0x1c) |
2158                           CONSOLE_FG_COL >> 6);
2159                 fgx = (color8 << 24) | (color8 << 16) | (color8 << 8) |
2160                         color8;
2161                 color8 = ((CONSOLE_BG_COL & 0xe0) |
2162                           ((CONSOLE_BG_COL >> 3) & 0x1c) |
2163                           CONSOLE_BG_COL >> 6);
2164                 bgx = (color8 << 24) | (color8 << 16) | (color8 << 8) |
2165                         color8;
2166                 break;
2167         case GDF_15BIT_555RGB:
2168                 fgx = (((CONSOLE_FG_COL >> 3) << 26) |
2169                        ((CONSOLE_FG_COL >> 3) << 21) |
2170                        ((CONSOLE_FG_COL >> 3) << 16) |
2171                        ((CONSOLE_FG_COL >> 3) << 10) |
2172                        ((CONSOLE_FG_COL >> 3) <<  5) |
2173                         (CONSOLE_FG_COL >> 3));
2174                 bgx = (((CONSOLE_BG_COL >> 3) << 26) |
2175                        ((CONSOLE_BG_COL >> 3) << 21) |
2176                        ((CONSOLE_BG_COL >> 3) << 16) |
2177                        ((CONSOLE_BG_COL >> 3) << 10) |
2178                        ((CONSOLE_BG_COL >> 3) <<  5) |
2179                         (CONSOLE_BG_COL >> 3));
2180                 break;
2181         case GDF_16BIT_565RGB:
2182                 fgx = (((CONSOLE_FG_COL >> 3) << 27) |
2183                        ((CONSOLE_FG_COL >> 2) << 21) |
2184                        ((CONSOLE_FG_COL >> 3) << 16) |
2185                        ((CONSOLE_FG_COL >> 3) << 11) |
2186                        ((CONSOLE_FG_COL >> 2) <<  5) |
2187                         (CONSOLE_FG_COL >> 3));
2188                 bgx = (((CONSOLE_BG_COL >> 3) << 27) |
2189                        ((CONSOLE_BG_COL >> 2) << 21) |
2190                        ((CONSOLE_BG_COL >> 3) << 16) |
2191                        ((CONSOLE_BG_COL >> 3) << 11) |
2192                        ((CONSOLE_BG_COL >> 2) <<  5) |
2193                         (CONSOLE_BG_COL >> 3));
2194                 break;
2195         case GDF_32BIT_X888RGB:
2196                 fgx =   (CONSOLE_FG_COL << 16) |
2197                         (CONSOLE_FG_COL <<  8) |
2198                          CONSOLE_FG_COL;
2199                 bgx =   (CONSOLE_BG_COL << 16) |
2200                         (CONSOLE_BG_COL <<  8) |
2201                          CONSOLE_BG_COL;
2202                 break;
2203         case GDF_24BIT_888RGB:
2204                 fgx =   (CONSOLE_FG_COL << 24) |
2205                         (CONSOLE_FG_COL << 16) |
2206                         (CONSOLE_FG_COL <<  8) |
2207                          CONSOLE_FG_COL;
2208                 bgx =   (CONSOLE_BG_COL << 24) |
2209                         (CONSOLE_BG_COL << 16) |
2210                         (CONSOLE_BG_COL <<  8) |
2211                          CONSOLE_BG_COL;
2212                 break;
2213         }
2214         eorx = fgx ^ bgx;
2215
2216         video_clear();
2217
2218 #ifdef CONFIG_VIDEO_LOGO
2219         /* Plot the logo and get start point of console */
2220         debug("Video: Drawing the logo ...\n");
2221         video_console_address = video_logo();
2222 #else
2223         video_console_address = video_fb_address;
2224 #endif
2225
2226         /* Initialize the console */
2227         console_col = 0;
2228         console_row = 0;
2229
2230         if (cfb_do_flush_cache)
2231                 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
2232
2233         return 0;
2234 }
2235
2236 /*
2237  * Implement a weak default function for boards that optionally
2238  * need to skip the video initialization.
2239  */
2240 __weak int board_video_skip(void)
2241 {
2242         /* As default, don't skip test */
2243         return 0;
2244 }
2245
2246 int drv_video_init(void)
2247 {
2248         int skip_dev_init;
2249         struct stdio_dev console_dev;
2250
2251         /* Check if video initialization should be skipped */
2252         if (board_video_skip())
2253                 return 0;
2254
2255         /* Init video chip - returns with framebuffer cleared */
2256         skip_dev_init = (video_init() == -1);
2257
2258         if (board_cfb_skip())
2259                 return 0;
2260
2261 #if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
2262         debug("KBD: Keyboard init ...\n");
2263         skip_dev_init |= (VIDEO_KBD_INIT_FCT == -1);
2264 #endif
2265
2266         if (skip_dev_init)
2267                 return 0;
2268
2269         /* Init vga device */
2270         memset(&console_dev, 0, sizeof(console_dev));
2271         strcpy(console_dev.name, "vga");
2272         console_dev.ext = DEV_EXT_VIDEO;        /* Video extensions */
2273         console_dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_SYSTEM;
2274         console_dev.putc = video_putc;  /* 'putc' function */
2275         console_dev.puts = video_puts;  /* 'puts' function */
2276
2277 #if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
2278         /* Also init console device */
2279         console_dev.flags |= DEV_FLAGS_INPUT;
2280         console_dev.tstc = VIDEO_TSTC_FCT;      /* 'tstc' function */
2281         console_dev.getc = VIDEO_GETC_FCT;      /* 'getc' function */
2282 #endif /* CONFIG_VGA_AS_SINGLE_DEVICE */
2283
2284         if (stdio_register(&console_dev) != 0)
2285                 return 0;
2286
2287         /* Return success */
2288         return 1;
2289 }
2290
2291 void video_position_cursor(unsigned col, unsigned row)
2292 {
2293         console_col = min(col, CONSOLE_COLS - 1);
2294         console_row = min(row, CONSOLE_ROWS - 1);
2295 }
2296
2297 int video_get_pixel_width(void)
2298 {
2299         return VIDEO_VISIBLE_COLS;
2300 }
2301
2302 int video_get_pixel_height(void)
2303 {
2304         return VIDEO_VISIBLE_ROWS;
2305 }
2306
2307 int video_get_screen_rows(void)
2308 {
2309         return CONSOLE_ROWS;
2310 }
2311
2312 int video_get_screen_columns(void)
2313 {
2314         return CONSOLE_COLS;
2315 }