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