* Patch by Pierre Aubert, 11 Mar 2004:

- add bitmap command and splash screen support in cfb console
  - add [optional] origin in the bitmap display command

* Patch by Travis Sawyer, 11 Mar 2004:
  Fix ocotea board early init interrupt setup.

* Patch by Thomas Viehweger, 11 Mar 2004:
  Remove redundand code; add  PCI-specific bits to include/mpc8260.h
This commit is contained in:
wdenk 2004-03-14 16:51:43 +00:00
parent aaf224ab4e
commit 4b248f3f71
8 changed files with 866 additions and 543 deletions

View File

@ -2,6 +2,16 @@
Changes for U-Boot 1.0.2: Changes for U-Boot 1.0.2:
====================================================================== ======================================================================
* Patch by Pierre Aubert, 11 Mar 2004:
- add bitmap command and splash screen support in cfb console
- add [optional] origin in the bitmap display command
* Patch by Travis Sawyer, 11 Mar 2004:
Fix ocotea board early init interrupt setup.
* Patch by Thomas Viehweger, 11 Mar 2004:
Remove redundand code; add PCI-specific bits to include/mpc8260.h
* Patch by Stephan Linz, 09 Mar 2004 * Patch by Stephan Linz, 09 Mar 2004
- Add support for the SSV ADNP/ESC1 (Nios Softcore) - Add support for the SSV ADNP/ESC1 (Nios Softcore)

View File

@ -36,6 +36,7 @@ void fpga_init (void);
int board_early_init_f (void) int board_early_init_f (void)
{ {
unsigned long mfr;
/*-------------------------------------------------------------------------+ /*-------------------------------------------------------------------------+
| Initialize EBC CONFIG | Initialize EBC CONFIG
+-------------------------------------------------------------------------*/ +-------------------------------------------------------------------------*/
@ -116,6 +117,23 @@ int board_early_init_f (void)
mtdcr (uic1vr, 0x00000001); /* int31 highest, base=0x000 */ mtdcr (uic1vr, 0x00000001); /* int31 highest, base=0x000 */
mtdcr (uic1sr, 0xffffffff); /* clear all */ mtdcr (uic1sr, 0xffffffff); /* clear all */
mtdcr (uic2sr, 0xffffffff); /* clear all */
mtdcr (uic2er, 0x00000000); /* disable all */
mtdcr (uic2cr, 0x00000000); /* all non-critical */
mtdcr (uic2pr, 0xffffffff); /* per ref-board manual */
mtdcr (uic2tr, 0x00ff8c0f); /* per ref-board manual */
mtdcr (uic2vr, 0x00000001); /* int31 highest, base=0x000 */
mtdcr (uic2sr, 0xffffffff); /* clear all */
mtdcr (uicb0sr, 0xfc000000); /* clear all */
mtdcr (uicb0er, 0x00000000); /* disable all */
mtdcr (uicb0cr, 0x00000000); /* all non-critical */
mtdcr (uicb0pr, 0xfc000000); /* */
mtdcr (uicb0tr, 0x00000000); /* */
mtdcr (uicb0vr, 0x00000001); /* */
mfsdr (sdr_mfr, mfr);
mfr &= ~SDR0_MFR_ECS_MASK;
/* mtsdr(sdr_mfr, mfr); */
fpga_init(); fpga_init();
return 0; return 0;

View File

@ -32,7 +32,7 @@
#if (CONFIG_COMMANDS & CFG_CMD_BMP) #if (CONFIG_COMMANDS & CFG_CMD_BMP)
static int bmp_info (ulong addr); static int bmp_info (ulong addr);
static int bmp_display (ulong addr); static int bmp_display (ulong addr, int x, int y);
/* /*
* Subroutine: do_bmp * Subroutine: do_bmp
@ -47,6 +47,7 @@ static int bmp_display (ulong addr);
int do_bmp(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) int do_bmp(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
{ {
ulong addr; ulong addr;
int x = 0, y = 0;
switch (argc) { switch (argc) {
case 2: /* use load_addr as default address */ case 2: /* use load_addr as default address */
@ -55,6 +56,11 @@ int do_bmp(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
case 3: /* use argument */ case 3: /* use argument */
addr = simple_strtoul(argv[2], NULL, 16); addr = simple_strtoul(argv[2], NULL, 16);
break; break;
case 5:
addr = simple_strtoul(argv[2], NULL, 16);
x = simple_strtoul(argv[3], NULL, 10);
y = simple_strtoul(argv[4], NULL, 10);
break;
default: default:
printf ("Usage:\n%s\n", cmdtp->usage); printf ("Usage:\n%s\n", cmdtp->usage);
return 1; return 1;
@ -66,7 +72,7 @@ int do_bmp(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
if (strncmp(argv[1],"info",1) == 0) { if (strncmp(argv[1],"info",1) == 0) {
return (bmp_info(addr)); return (bmp_info(addr));
} else if (strncmp(argv[1],"display",1) == 0) { } else if (strncmp(argv[1],"display",1) == 0) {
return (bmp_display(addr)); return (bmp_display(addr, x, y));
} else { } else {
printf ("Usage:\n%s\n", cmdtp->usage); printf ("Usage:\n%s\n", cmdtp->usage);
return 1; return 1;
@ -74,10 +80,10 @@ int do_bmp(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
bmp, 3, 1, do_bmp, bmp, 5, 1, do_bmp,
"bmp - manipulate BMP image data\n", "bmp - manipulate BMP image data\n",
"info <imageAddr> - display image info\n" "info <imageAddr> - display image info\n"
"bmp display <imageAddr> - display image\n" "bmp display <imageAddr> [x y] - display image at x,y\n"
); );
/* /*
@ -115,11 +121,17 @@ static int bmp_info(ulong addr)
* Return: None * Return: None
* *
*/ */
static int bmp_display(ulong addr) static int bmp_display(ulong addr, int x, int y)
{ {
extern int lcd_display_bitmap (ulong); #ifdef CONFIG_LCD
extern int lcd_display_bitmap (ulong, int, int);
return (lcd_display_bitmap (addr)); return (lcd_display_bitmap (addr, x, y));
#endif
#ifdef CONFIG_VIDEO
extern int video_display_bitmap (ulong, int, int);
return (video_display_bitmap (addr, x, y));
#endif
} }
#endif /* (CONFIG_COMMANDS & CFG_CMD_BMP) */ #endif /* (CONFIG_COMMANDS & CFG_CMD_BMP) */

View File

@ -98,7 +98,9 @@ static void config_8260_ioports (volatile immap_t * immr)
void cpu_init_f (volatile immap_t * immr) void cpu_init_f (volatile immap_t * immr)
{ {
DECLARE_GLOBAL_DATA_PTR; DECLARE_GLOBAL_DATA_PTR;
#if !defined(CONFIG_COGENT) /* done in start.S for the cogent */
uint sccr;
#endif
volatile memctl8260_t *memctl = &immr->im_memctl; volatile memctl8260_t *memctl = &immr->im_memctl;
extern void m8260_cpm_reset (void); extern void m8260_cpm_reset (void);
@ -131,7 +133,10 @@ void cpu_init_f (volatile immap_t * immr)
#if !defined(CONFIG_COGENT) /* done in start.S for the cogent */ #if !defined(CONFIG_COGENT) /* done in start.S for the cogent */
/* System clock control register (9-8) */ /* System clock control register (9-8) */
immr->im_clkrst.car_sccr = CFG_SCCR; sccr = immr->im_clkrst.car_sccr &
(SCCR_PCI_MODE | SCCR_PCI_MODCK | SCCR_PCIDF_MSK);
immr->im_clkrst.car_sccr = sccr |
(CFG_SCCR & ~(SCCR_PCI_MODE | SCCR_PCI_MODCK | SCCR_PCIDF_MSK) );
#endif /* !CONFIG_COGENT */ #endif /* !CONFIG_COGENT */
/* /*

View File

@ -1205,7 +1205,7 @@ static void bitmap_plot (int x, int y)
* Display the BMP file located at address bmp_image. * Display the BMP file located at address bmp_image.
* Only uncompressed * Only uncompressed
*/ */
int lcd_display_bitmap(ulong bmp_image) int lcd_display_bitmap(ulong bmp_image, int x, int y)
{ {
volatile immap_t *immr = (immap_t *) CFG_IMMR; volatile immap_t *immr = (immap_t *) CFG_IMMR;
volatile cpm8xx_t *cp = &(immr->im_cpm); volatile cpm8xx_t *cp = &(immr->im_cpm);
@ -1277,16 +1277,14 @@ int lcd_display_bitmap(ulong bmp_image)
} }
padded_line = (width&0x3) ? ((width&~0x3)+4) : (width); padded_line = (width&0x3) ? ((width&~0x3)+4) : (width);
if (width>panel_info.vl_col) if ((x + width)>panel_info.vl_col)
width = panel_info.vl_col; width = panel_info.vl_col - x;
if (height>panel_info.vl_row) if ((y + height)>panel_info.vl_row)
height = panel_info.vl_row; height = panel_info.vl_row - y;
bmap = (uchar *)bmp + le32_to_cpu (bmp->header.data_offset); bmap = (uchar *)bmp + le32_to_cpu (bmp->header.data_offset);
fb = (uchar *) fb = (uchar *) (lcd_base +
(lcd_base + (y + height - 1) * lcd_line_length + x);
(((height>=panel_info.vl_row) ? panel_info.vl_row : height)-1)
* lcd_line_length);
for (i = 0; i < height; ++i) { for (i = 0; i < height; ++i) {
WATCHDOG_RESET(); WATCHDOG_RESET();
for (j = 0; j < width ; j++) for (j = 0; j < width ; j++)
@ -1317,7 +1315,7 @@ static void *lcd_logo (void)
if ((s = getenv("splashimage")) != NULL) { if ((s = getenv("splashimage")) != NULL) {
addr = simple_strtoul(s, NULL, 16); addr = simple_strtoul(s, NULL, 16);
if (lcd_display_bitmap (addr) == 0) { if (lcd_display_bitmap (addr, 0, 0) == 0) {
return ((void *)lcd_base); return ((void *)lcd_base);
} }
} }

View File

@ -168,6 +168,11 @@ CONFIG_VIDEO_HW_CURSOR: - Uses the hardware cursor capability of the
#endif #endif
#if (CONFIG_COMMANDS & CFG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
#include <watchdog.h>
#include <bmp_layout.h>
#endif /* (CONFIG_COMMANDS & CFG_CMD_BMP) || CONFIG_SPLASH_SCREEN */
/*****************************************************************************/ /*****************************************************************************/
/* Cursor definition: */ /* Cursor definition: */
/* CONFIG_CONSOLE_CURSOR: Uses a timer function (see drivers/i8042.c) to */ /* CONFIG_CONSOLE_CURSOR: Uses a timer function (see drivers/i8042.c) to */
@ -367,7 +372,6 @@ static const int video_font_draw_table32[16][4] = {
/******************************************************************************/ /******************************************************************************/
static void video_drawchars (int xx, int yy, unsigned char *s, int count) static void video_drawchars (int xx, int yy, unsigned char *s, int count)
{ {
u8 *cdat, *dest, *dest0; u8 *cdat, *dest, *dest0;
@ -376,19 +380,19 @@ static void video_drawchars (int xx, int yy, unsigned char *s, int count)
offset = yy * VIDEO_LINE_LEN + xx * VIDEO_PIXEL_SIZE; offset = yy * VIDEO_LINE_LEN + xx * VIDEO_PIXEL_SIZE;
dest0 = video_fb_address + offset; dest0 = video_fb_address + offset;
switch (VIDEO_DATA_FORMAT) switch (VIDEO_DATA_FORMAT) {
{
case GDF__8BIT_INDEX: case GDF__8BIT_INDEX:
case GDF__8BIT_332RGB: case GDF__8BIT_332RGB:
while (count--) while (count--) {
{ c = *s;
c = *s ;
cdat = video_fontdata + c * VIDEO_FONT_HEIGHT; cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
for (rows = VIDEO_FONT_HEIGHT, dest = dest0; rows--; dest += VIDEO_LINE_LEN) for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
{ rows--;
dest += VIDEO_LINE_LEN) {
u8 bits = *cdat++; u8 bits = *cdat++;
((u32 *)dest)[0] = (video_font_draw_table8[bits >> 4] & eorx) ^ bgx;
((u32 *)dest)[1] = (video_font_draw_table8[bits & 15] & eorx) ^ bgx; ((u32 *) dest)[0] = (video_font_draw_table8[bits >> 4] & eorx) ^ bgx;
((u32 *) dest)[1] = (video_font_draw_table8[bits & 15] & eorx) ^ bgx;
} }
dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE; dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
s++; s++;
@ -396,80 +400,84 @@ static void video_drawchars (int xx, int yy, unsigned char *s, int count)
break; break;
case GDF_15BIT_555RGB: case GDF_15BIT_555RGB:
while (count--) while (count--) {
{ c = *s;
c = *s ;
cdat = video_fontdata + c * VIDEO_FONT_HEIGHT; cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
for (rows = VIDEO_FONT_HEIGHT, dest = dest0; rows--; dest += VIDEO_LINE_LEN) for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
{ rows--;
dest += VIDEO_LINE_LEN) {
u8 bits = *cdat++; u8 bits = *cdat++;
((u32 *)dest)[0] = SHORTSWAP32((video_font_draw_table15[bits >> 6] & eorx) ^ bgx);
((u32 *)dest)[1] = SHORTSWAP32((video_font_draw_table15[bits >> 4 & 3] & eorx) ^ bgx); ((u32 *) dest)[0] = SHORTSWAP32 ((video_font_draw_table15 [bits >> 6] & eorx) ^ bgx);
((u32 *)dest)[2] = SHORTSWAP32((video_font_draw_table15[bits >> 2 & 3] & eorx) ^ bgx); ((u32 *) dest)[1] = SHORTSWAP32 ((video_font_draw_table15 [bits >> 4 & 3] & eorx) ^ bgx);
((u32 *)dest)[3] = SHORTSWAP32((video_font_draw_table15[bits & 3] & eorx) ^ bgx); ((u32 *) dest)[2] = SHORTSWAP32 ((video_font_draw_table15 [bits >> 2 & 3] & eorx) ^ bgx);
((u32 *) dest)[3] = SHORTSWAP32 ((video_font_draw_table15 [bits & 3] & eorx) ^ bgx);
} }
dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE; dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
s++ ; s++;
} }
break; break;
case GDF_16BIT_565RGB: case GDF_16BIT_565RGB:
while (count--) while (count--) {
{ c = *s;
c = *s ;
cdat = video_fontdata + c * VIDEO_FONT_HEIGHT; cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
for (rows = VIDEO_FONT_HEIGHT, dest = dest0; rows--; dest += VIDEO_LINE_LEN) for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
{ rows--;
dest += VIDEO_LINE_LEN) {
u8 bits = *cdat++; u8 bits = *cdat++;
((u32 *)dest)[0] = SHORTSWAP32((video_font_draw_table16[bits >> 6] & eorx) ^ bgx);
((u32 *)dest)[1] = SHORTSWAP32((video_font_draw_table16[bits >> 4 & 3] & eorx) ^ bgx); ((u32 *) dest)[0] = SHORTSWAP32 ((video_font_draw_table16 [bits >> 6] & eorx) ^ bgx);
((u32 *)dest)[2] = SHORTSWAP32((video_font_draw_table16[bits >> 2 & 3] & eorx) ^ bgx); ((u32 *) dest)[1] = SHORTSWAP32 ((video_font_draw_table16 [bits >> 4 & 3] & eorx) ^ bgx);
((u32 *)dest)[3] = SHORTSWAP32((video_font_draw_table16[bits & 3] & eorx) ^ bgx); ((u32 *) dest)[2] = SHORTSWAP32 ((video_font_draw_table16 [bits >> 2 & 3] & eorx) ^ bgx);
((u32 *) dest)[3] = SHORTSWAP32 ((video_font_draw_table16 [bits & 3] & eorx) ^ bgx);
} }
dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE; dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
s++ ; s++;
} }
break; break;
case GDF_32BIT_X888RGB: case GDF_32BIT_X888RGB:
while (count--) while (count--) {
{ c = *s;
c = *s ;
cdat = video_fontdata + c * VIDEO_FONT_HEIGHT; cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
for (rows = VIDEO_FONT_HEIGHT, dest = dest0; rows--; dest += VIDEO_LINE_LEN) for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
{ rows--;
dest += VIDEO_LINE_LEN) {
u8 bits = *cdat++; u8 bits = *cdat++;
((u32 *)dest)[0] = SWAP32((video_font_draw_table32[bits >> 4][0] & eorx) ^ bgx);
((u32 *)dest)[1] = SWAP32((video_font_draw_table32[bits >> 4][1] & eorx) ^ bgx); ((u32 *) dest)[0] = SWAP32 ((video_font_draw_table32 [bits >> 4][0] & eorx) ^ bgx);
((u32 *)dest)[2] = SWAP32((video_font_draw_table32[bits >> 4][2] & eorx) ^ bgx); ((u32 *) dest)[1] = SWAP32 ((video_font_draw_table32 [bits >> 4][1] & eorx) ^ bgx);
((u32 *)dest)[3] = SWAP32((video_font_draw_table32[bits >> 4][3] & eorx) ^ bgx); ((u32 *) dest)[2] = SWAP32 ((video_font_draw_table32 [bits >> 4][2] & eorx) ^ bgx);
((u32 *)dest)[4] = SWAP32((video_font_draw_table32[bits & 15][0] & eorx) ^ bgx); ((u32 *) dest)[3] = SWAP32 ((video_font_draw_table32 [bits >> 4][3] & eorx) ^ bgx);
((u32 *)dest)[5] = SWAP32((video_font_draw_table32[bits & 15][1] & eorx) ^ bgx); ((u32 *) dest)[4] = SWAP32 ((video_font_draw_table32 [bits & 15][0] & eorx) ^ bgx);
((u32 *)dest)[6] = SWAP32((video_font_draw_table32[bits & 15][2] & eorx) ^ bgx); ((u32 *) dest)[5] = SWAP32 ((video_font_draw_table32 [bits & 15][1] & eorx) ^ bgx);
((u32 *)dest)[7] = SWAP32((video_font_draw_table32[bits & 15][3] & eorx) ^ bgx); ((u32 *) dest)[6] = SWAP32 ((video_font_draw_table32 [bits & 15][2] & eorx) ^ bgx);
((u32 *) dest)[7] = SWAP32 ((video_font_draw_table32 [bits & 15][3] & eorx) ^ bgx);
} }
dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE; dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
s++ ; s++;
} }
break; break;
case GDF_24BIT_888RGB: case GDF_24BIT_888RGB:
while (count--) while (count--) {
{ c = *s;
c = *s ;
cdat = video_fontdata + c * VIDEO_FONT_HEIGHT; cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
for (rows = VIDEO_FONT_HEIGHT, dest = dest0; rows--; dest += VIDEO_LINE_LEN) for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
{ rows--;
dest += VIDEO_LINE_LEN) {
u8 bits = *cdat++; u8 bits = *cdat++;
((u32 *)dest)[0] = (video_font_draw_table24[bits >> 4][0] & eorx) ^ bgx;
((u32 *)dest)[1] = (video_font_draw_table24[bits >> 4][1] & eorx) ^ bgx; ((u32 *) dest)[0] = (video_font_draw_table24[bits >> 4][0] & eorx) ^ bgx;
((u32 *)dest)[2] = (video_font_draw_table24[bits >> 4][2] & eorx) ^ bgx; ((u32 *) dest)[1] = (video_font_draw_table24[bits >> 4][1] & eorx) ^ bgx;
((u32 *)dest)[3] = (video_font_draw_table24[bits & 15][0] & eorx) ^ bgx; ((u32 *) dest)[2] = (video_font_draw_table24[bits >> 4][2] & eorx) ^ bgx;
((u32 *)dest)[4] = (video_font_draw_table24[bits & 15][1] & eorx) ^ bgx; ((u32 *) dest)[3] = (video_font_draw_table24[bits & 15][0] & eorx) ^ bgx;
((u32 *)dest)[5] = (video_font_draw_table24[bits & 15][2] & eorx) ^ bgx; ((u32 *) dest)[4] = (video_font_draw_table24[bits & 15][1] & eorx) ^ bgx;
((u32 *) dest)[5] = (video_font_draw_table24[bits & 15][2] & eorx) ^ bgx;
} }
dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE; dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
s++ ; s++;
} }
break; break;
} }
@ -477,21 +485,21 @@ static void video_drawchars (int xx, int yy, unsigned char *s, int count)
/*****************************************************************************/ /*****************************************************************************/
static inline void video_drawstring(int xx, int yy, unsigned char *s) static inline void video_drawstring (int xx, int yy, unsigned char *s)
{ {
video_drawchars (xx, yy, s, strlen(s)); video_drawchars (xx, yy, s, strlen (s));
} }
/*****************************************************************************/ /*****************************************************************************/
static void video_putchar(int xx, int yy, unsigned char c) static void video_putchar (int xx, int yy, unsigned char c)
{ {
video_drawchars (xx, yy + VIDEO_LOGO_HEIGHT, &c, 1); video_drawchars (xx, yy + VIDEO_LOGO_HEIGHT, &c, 1);
} }
/*****************************************************************************/ /*****************************************************************************/
#if defined(CONFIG_CONSOLE_CURSOR) || defined(CONFIG_VIDEO_SW_CURSOR) #if defined(CONFIG_CONSOLE_CURSOR) || defined(CONFIG_VIDEO_SW_CURSOR)
static void video_set_cursor(void) static void video_set_cursor (void)
{ {
/* swap drawing colors */ /* swap drawing colors */
eorx = fgx; eorx = fgx;
@ -500,7 +508,8 @@ static void video_set_cursor(void)
eorx = fgx ^ bgx; eorx = fgx ^ bgx;
/* draw cursor */ /* draw cursor */
video_putchar (console_col * VIDEO_FONT_WIDTH, video_putchar (console_col * VIDEO_FONT_WIDTH,
console_row * VIDEO_FONT_HEIGHT, ' '); console_row * VIDEO_FONT_HEIGHT,
' ');
/* restore drawing colors */ /* restore drawing colors */
eorx = fgx; eorx = fgx;
fgx = bgx; fgx = bgx;
@ -513,35 +522,36 @@ static void video_set_cursor(void)
void console_cursor (int state) void console_cursor (int state)
{ {
static int last_state = 0; static int last_state = 0;
#ifdef CONFIG_CONSOLE_TIME #ifdef CONFIG_CONSOLE_TIME
struct rtc_time tm; struct rtc_time tm;
char info[16]; char info[16];
/* time update only if cursor is on (faster scroll) */ /* time update only if cursor is on (faster scroll) */
if (state) if (state) {
{
rtc_get (&tm); rtc_get (&tm);
sprintf(info, " %02d:%02d:%02d ", tm.tm_hour, tm.tm_min, tm.tm_sec); sprintf (info, " %02d:%02d:%02d ", tm.tm_hour, tm.tm_min,
video_drawstring(VIDEO_VISIBLE_COLS-10*VIDEO_FONT_WIDTH, tm.tm_sec);
video_drawstring (VIDEO_VISIBLE_COLS - 10 * VIDEO_FONT_WIDTH,
VIDEO_INFO_Y, info); VIDEO_INFO_Y, info);
sprintf(info, "%02d.%02d.%04d", tm.tm_mday, tm.tm_mon, tm.tm_year); sprintf (info, "%02d.%02d.%04d", tm.tm_mday, tm.tm_mon,
video_drawstring(VIDEO_VISIBLE_COLS-10*VIDEO_FONT_WIDTH, tm.tm_year);
VIDEO_INFO_Y+1*VIDEO_FONT_HEIGHT, info); video_drawstring (VIDEO_VISIBLE_COLS - 10 * VIDEO_FONT_WIDTH,
VIDEO_INFO_Y + 1 * VIDEO_FONT_HEIGHT, info);
} }
#endif #endif
if (state && (last_state != state)) if (state && (last_state != state)) {
{ video_set_cursor ();
video_set_cursor();
} }
if (!state && (last_state != state)) if (!state && (last_state != state)) {
{
/* clear cursor */ /* clear cursor */
video_putchar (console_col * VIDEO_FONT_WIDTH, video_putchar (console_col * VIDEO_FONT_WIDTH,
console_row * VIDEO_FONT_HEIGHT, ' '); console_row * VIDEO_FONT_HEIGHT,
' ');
} }
last_state = state; last_state = state;
@ -575,8 +585,7 @@ static void console_scrollup (void)
/* copy up rows ignoring the first one */ /* copy up rows ignoring the first one */
#ifdef VIDEO_HW_BITBLT #ifdef VIDEO_HW_BITBLT
video_hw_bitblt ( video_hw_bitblt (VIDEO_PIXEL_SIZE, /* bytes per pixel */
VIDEO_PIXEL_SIZE, /* bytes per pixel */
0, /* source pos x */ 0, /* source pos x */
VIDEO_LOGO_HEIGHT + VIDEO_FONT_HEIGHT, /* source pos y */ VIDEO_LOGO_HEIGHT + VIDEO_FONT_HEIGHT, /* source pos y */
0, /* dest pos x */ 0, /* dest pos x */
@ -585,13 +594,13 @@ static void console_scrollup (void)
VIDEO_VISIBLE_ROWS - VIDEO_LOGO_HEIGHT - VIDEO_FONT_HEIGHT /* frame height */ VIDEO_VISIBLE_ROWS - VIDEO_LOGO_HEIGHT - VIDEO_FONT_HEIGHT /* frame height */
); );
#else #else
memcpyl (CONSOLE_ROW_FIRST, CONSOLE_ROW_SECOND, CONSOLE_SCROLL_SIZE >> 2); memcpyl (CONSOLE_ROW_FIRST, CONSOLE_ROW_SECOND,
CONSOLE_SCROLL_SIZE >> 2);
#endif #endif
/* clear the last one */ /* clear the last one */
#ifdef VIDEO_HW_RECTFILL #ifdef VIDEO_HW_RECTFILL
video_hw_rectfill ( video_hw_rectfill (VIDEO_PIXEL_SIZE, /* bytes per pixel */
VIDEO_PIXEL_SIZE, /* bytes per pixel */
0, /* dest pos x */ 0, /* dest pos x */
VIDEO_VISIBLE_ROWS - VIDEO_FONT_HEIGHT, /* dest pos y */ VIDEO_VISIBLE_ROWS - VIDEO_FONT_HEIGHT, /* dest pos y */
VIDEO_VISIBLE_COLS, /* frame width */ VIDEO_VISIBLE_COLS, /* frame width */
@ -607,31 +616,28 @@ static void console_scrollup (void)
static void console_back (void) static void console_back (void)
{ {
CURSOR_OFF CURSOR_OFF console_col--;
console_col--;
if (console_col < 0) if (console_col < 0) {
{
console_col = CONSOLE_COLS - 1; console_col = CONSOLE_COLS - 1;
console_row--; console_row--;
if (console_row < 0) if (console_row < 0)
console_row = 0; console_row = 0;
} }
video_putchar (console_col * VIDEO_FONT_WIDTH, video_putchar (console_col * VIDEO_FONT_WIDTH,
console_row * VIDEO_FONT_HEIGHT, ' '); console_row * VIDEO_FONT_HEIGHT,
' ');
} }
/*****************************************************************************/ /*****************************************************************************/
static void console_newline (void) static void console_newline (void)
{ {
CURSOR_OFF CURSOR_OFF console_row++;
console_row++;
console_col = 0; console_col = 0;
/* Check if we need to scroll the terminal */ /* Check if we need to scroll the terminal */
if (console_row >= CONSOLE_ROWS) if (console_row >= CONSOLE_ROWS) {
{
/* Scroll everything up */ /* Scroll everything up */
console_scrollup (); console_scrollup ();
@ -644,64 +650,317 @@ static void console_newline (void)
void video_putc (const char c) void video_putc (const char c)
{ {
switch (c) switch (c) {
{
case 13: /* ignore */ case 13: /* ignore */
break; break;
case '\n': /* next line */ case '\n': /* next line */
console_newline(); console_newline ();
break; break;
case 9: /* tab 8 */ case 9: /* tab 8 */
CURSOR_OFF CURSOR_OFF console_col |= 0x0008;
console_col |= 0x0008;
console_col &= ~0x0007; console_col &= ~0x0007;
if (console_col >= CONSOLE_COLS) if (console_col >= CONSOLE_COLS)
console_newline(); console_newline ();
break; break;
case 8: /* backspace */ case 8: /* backspace */
console_back(); console_back ();
break; break;
default: /* draw the char */ default: /* draw the char */
video_putchar (console_col * VIDEO_FONT_WIDTH, video_putchar (console_col * VIDEO_FONT_WIDTH,
console_row * VIDEO_FONT_HEIGHT, c); console_row * VIDEO_FONT_HEIGHT,
console_col++ ; c);
console_col++;
/* check for newline */ /* check for newline */
if (console_col >= CONSOLE_COLS) if (console_col >= CONSOLE_COLS)
console_newline(); console_newline ();
} }
CURSOR_SET CURSOR_SET}
}
/*****************************************************************************/ /*****************************************************************************/
void video_puts (const char *s) void video_puts (const char *s)
{ {
int count = strlen(s); int count = strlen (s);
while(count--) while (count--)
video_putc(*s++); video_putc (*s++);
} }
/*****************************************************************************/ /*****************************************************************************/
#if (CONFIG_COMMANDS & CFG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
#define FILL_8BIT_332RGB(r,g,b) { \
*fb = ((r>>5)<<5) | ((g>>5)<<2) | (b>>6); \
fb ++; \
}
#define FILL_15BIT_555RGB(r,g,b) { \
*(unsigned short *)fb = SWAP16((unsigned short)(((r>>3)<<10) | ((g>>3)<<5) | (b>>3))); \
fb += 2; \
}
#define FILL_16BIT_565RGB(r,g,b) { \
*(unsigned short *)fb = SWAP16((unsigned short)((((r)>>3)<<11) | (((g)>>2)<<5) | ((b)>>3))); \
fb += 2; \
}
#define FILL_32BIT_X888RGB(r,g,b) { \
*(unsigned long *)fb = SWAP32((unsigned long)(((r<<16) | (g<<8) | b))); \
fb += 4; \
}
#ifdef VIDEO_FB_LITTLE_ENDIAN
#define FILL_24BIT_888RGB(r,g,b) { \
fb[0] = b; \
fb[1] = g; \
fb[2] = r; \
fb += 3; \
}
#else
#define FILL_24BIT_888RGB(r,g,b) { \
fb[0] = r; \
fb[1] = g; \
fb[2] = b; \
fb += 3; \
}
#endif
/*
* Display the BMP file located at address bmp_image.
* Only uncompressed
*/
int video_display_bitmap (ulong bmp_image, int x, int y)
{
ushort xcount, ycount;
uchar *fb;
bmp_image_t *bmp = (bmp_image_t *) bmp_image;
uchar *bmap;
ushort padded_line;
unsigned long width, height, bpp;
unsigned colors;
unsigned long compression;
bmp_color_table_entry_t cte;
WATCHDOG_RESET ();
if (!((bmp->header.signature[0] == 'B') &&
(bmp->header.signature[1] == 'M'))) {
printf ("Error: no valid bmp image at %lx\n", bmp_image);
return 1;
}
width = le32_to_cpu (bmp->header.width);
height = le32_to_cpu (bmp->header.height);
bpp = le16_to_cpu (bmp->header.bit_count);
colors = le32_to_cpu (bmp->header.colors_used);
compression = le32_to_cpu (bmp->header.compression);
debug ("Display-bmp: %d x %d with %d colors\n",
width, height, colors);
if (compression != BMP_BI_RGB) {
printf ("Error: compression type %ld not supported\n",
compression);
return 1;
}
padded_line = (((width * bpp + 7) / 8) + 3) & ~0x3;
if ((x + width) > VIDEO_VISIBLE_COLS)
width = VIDEO_VISIBLE_COLS - x;
if ((y + height) > VIDEO_VISIBLE_ROWS)
height = VIDEO_VISIBLE_ROWS - y;
bmap = (uchar *) bmp + le32_to_cpu (bmp->header.data_offset);
fb = (uchar *) (video_fb_address +
((y + height - 1) * VIDEO_COLS * VIDEO_PIXEL_SIZE) +
x * VIDEO_PIXEL_SIZE);
/* We handle only 8bpp or 24 bpp bitmap */
switch (le16_to_cpu (bmp->header.bit_count)) {
case 8:
padded_line -= width;
if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
/* Copy colormap */
for (xcount = 0; xcount < colors; ++xcount) {
cte = bmp->color_table[xcount];
video_set_lut (xcount, cte.red, cte.green, cte.blue);
}
}
ycount = height;
switch (VIDEO_DATA_FORMAT) {
case GDF__8BIT_INDEX:
while (ycount--) {
WATCHDOG_RESET ();
xcount = width;
while (xcount--) {
*fb++ = *bmap++;
}
bmap += padded_line;
fb -= (VIDEO_VISIBLE_COLS + width) * VIDEO_PIXEL_SIZE;
}
break;
case GDF__8BIT_332RGB:
while (ycount--) {
WATCHDOG_RESET ();
xcount = width;
while (xcount--) {
cte = bmp->color_table[*bmap++];
FILL_8BIT_332RGB (cte.red, cte.green, cte.blue);
}
bmap += padded_line;
fb -= (VIDEO_VISIBLE_COLS + width) * VIDEO_PIXEL_SIZE;
}
break;
case GDF_15BIT_555RGB:
while (ycount--) {
WATCHDOG_RESET ();
xcount = width;
while (xcount--) {
cte = bmp->color_table[*bmap++];
FILL_15BIT_555RGB (cte.red, cte.green, cte.blue);
}
bmap += padded_line;
fb -= (VIDEO_VISIBLE_COLS + width) * VIDEO_PIXEL_SIZE;
}
break;
case GDF_16BIT_565RGB:
while (ycount--) {
WATCHDOG_RESET ();
xcount = width;
while (xcount--) {
cte = bmp->color_table[*bmap++];
FILL_16BIT_565RGB (cte.red, cte.green, cte.blue);
}
bmap += padded_line;
fb -= (VIDEO_VISIBLE_COLS + width) * VIDEO_PIXEL_SIZE;
}
break;
case GDF_32BIT_X888RGB:
while (ycount--) {
WATCHDOG_RESET ();
xcount = width;
while (xcount--) {
cte = bmp->color_table[*bmap++];
FILL_32BIT_X888RGB (cte.red, cte.green, cte.blue);
}
bmap += padded_line;
fb -= (VIDEO_VISIBLE_COLS + width) * VIDEO_PIXEL_SIZE;
}
break;
case GDF_24BIT_888RGB:
while (ycount--) {
WATCHDOG_RESET ();
xcount = width;
while (xcount--) {
cte = bmp->color_table[*bmap++];
FILL_24BIT_888RGB (cte.red, cte.green, cte.blue);
}
bmap += padded_line;
fb -= (VIDEO_VISIBLE_COLS + width) * VIDEO_PIXEL_SIZE;
}
break;
}
break;
case 24:
padded_line -= 3 * width;
ycount = height;
switch (VIDEO_DATA_FORMAT) {
case GDF__8BIT_332RGB:
while (ycount--) {
WATCHDOG_RESET ();
xcount = width;
while (xcount--) {
FILL_8BIT_332RGB (bmap[2], bmap[1], bmap[0]);
bmap += 3;
}
bmap += padded_line;
fb -= (VIDEO_VISIBLE_COLS + width) * VIDEO_PIXEL_SIZE;
}
break;
case GDF_15BIT_555RGB:
while (ycount--) {
WATCHDOG_RESET ();
xcount = width;
while (xcount--) {
FILL_15BIT_555RGB (bmap[2], bmap[1], bmap[0]);
bmap += 3;
}
bmap += padded_line;
fb -= (VIDEO_VISIBLE_COLS + width) * VIDEO_PIXEL_SIZE;
}
break;
case GDF_16BIT_565RGB:
while (ycount--) {
WATCHDOG_RESET ();
xcount = width;
while (xcount--) {
FILL_16BIT_565RGB (bmap[2], bmap[1], bmap[0]);
bmap += 3;
}
bmap += padded_line;
fb -= (VIDEO_VISIBLE_COLS + width) * VIDEO_PIXEL_SIZE;
}
break;
case GDF_32BIT_X888RGB:
while (ycount--) {
WATCHDOG_RESET ();
xcount = width;
while (xcount--) {
FILL_32BIT_X888RGB (bmap[2], bmap[1], bmap[0]);
bmap += 3;
}
bmap += padded_line;
fb -= (VIDEO_VISIBLE_COLS + width) * VIDEO_PIXEL_SIZE;
}
break;
case GDF_24BIT_888RGB:
while (ycount--) {
WATCHDOG_RESET ();
xcount = width;
while (xcount--) {
FILL_24BIT_888RGB (bmap[2], bmap[1], bmap[0]);
bmap += 3;
}
bmap += padded_line;
fb -= (VIDEO_VISIBLE_COLS + width) * VIDEO_PIXEL_SIZE;
}
break;
default:
printf ("Error: 24 bits/pixel bitmap incompatible with current video mode\n");
break;
}
break;
default:
printf ("Error: %d bit/pixel bitmaps not supported by U-Boot\n",
le16_to_cpu (bmp->header.bit_count));
break;
}
return (0);
}
#endif /* (CONFIG_COMMANDS & CFG_CMD_BMP) || CONFIG_SPLASH_SCREEN */
/*****************************************************************************/
#ifdef CONFIG_VIDEO_LOGO #ifdef CONFIG_VIDEO_LOGO
void logo_plot (void *screen, int width, int x, int y) void logo_plot (void *screen, int width, int x, int y)
{ {
int skip = (width - VIDEO_LOGO_WIDTH) * VIDEO_PIXEL_SIZE, int xcount, i;
xcount, i, int skip = (width - VIDEO_LOGO_WIDTH) * VIDEO_PIXEL_SIZE;
ycount = VIDEO_LOGO_HEIGHT; int ycount = VIDEO_LOGO_HEIGHT;
unsigned char unsigned char r, g, b, *logo_red, *logo_blue, *logo_green;
*source, unsigned char *source;
*dest = (unsigned char *) screen + ((y * width * VIDEO_PIXEL_SIZE) + x), unsigned char *dest = (unsigned char *)screen + ((y * width * VIDEO_PIXEL_SIZE) + x);
r, g, b, *logo_red, *logo_blue, *logo_green;
#ifdef CONFIG_VIDEO_BMP_LOGO #ifdef CONFIG_VIDEO_BMP_LOGO
source = bmp_logo_bitmap; source = bmp_logo_bitmap;
@ -712,9 +971,9 @@ void logo_plot (void *screen, int width, int x, int y)
logo_blue = malloc (BMP_LOGO_COLORS); logo_blue = malloc (BMP_LOGO_COLORS);
/* Compute color map */ /* Compute color map */
for (i = 0; i < VIDEO_LOGO_COLORS; i++) { for (i = 0; i < VIDEO_LOGO_COLORS; i++) {
logo_red [i] = (bmp_logo_palette [i] & 0x0f00) >> 4; logo_red[i] = (bmp_logo_palette[i] & 0x0f00) >> 4;
logo_green [i] = (bmp_logo_palette [i] & 0x00f0); logo_green[i] = (bmp_logo_palette[i] & 0x00f0);
logo_blue [i] = (bmp_logo_palette [i] & 0x000f) << 4; logo_blue[i] = (bmp_logo_palette[i] & 0x000f) << 4;
} }
#else #else
source = linux_logo; source = linux_logo;
@ -723,43 +982,38 @@ void logo_plot (void *screen, int width, int x, int y)
logo_blue = linux_logo_blue; logo_blue = linux_logo_blue;
#endif #endif
if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
{ for (i = 0; i < VIDEO_LOGO_COLORS; i++) {
for (i = 0; i < VIDEO_LOGO_COLORS; i++)
{
video_set_lut (i + VIDEO_LOGO_LUT_OFFSET, video_set_lut (i + VIDEO_LOGO_LUT_OFFSET,
logo_red [i], logo_green [i], logo_blue [i]); logo_red[i], logo_green[i], logo_blue[i]);
} }
} }
while (ycount--) while (ycount--) {
{
xcount = VIDEO_LOGO_WIDTH; xcount = VIDEO_LOGO_WIDTH;
while (xcount--) while (xcount--) {
{ r = logo_red[*source - VIDEO_LOGO_LUT_OFFSET];
r = logo_red [*source - VIDEO_LOGO_LUT_OFFSET]; g = logo_green[*source - VIDEO_LOGO_LUT_OFFSET];
g = logo_green [*source - VIDEO_LOGO_LUT_OFFSET]; b = logo_blue[*source - VIDEO_LOGO_LUT_OFFSET];
b = logo_blue [*source - VIDEO_LOGO_LUT_OFFSET];
switch (VIDEO_DATA_FORMAT) switch (VIDEO_DATA_FORMAT) {
{
case GDF__8BIT_INDEX: case GDF__8BIT_INDEX:
*dest = *source; *dest = *source;
break; break;
case GDF__8BIT_332RGB: case GDF__8BIT_332RGB:
*dest = ((r>>5)<<5) | ((g>>5)<<2) | (b>>6); *dest = ((r >> 5) << 5) | ((g >> 5) << 2) | (b >> 6);
break; break;
case GDF_15BIT_555RGB: case GDF_15BIT_555RGB:
*(unsigned short *)dest = *(unsigned short *) dest =
SWAP16((unsigned short)(((r>>3)<<10) | ((g>>3)<<5) | (b>>3))); SWAP16 ((unsigned short) (((r >> 3) << 10) | ((g >> 3) << 5) | (b >> 3)));
break; break;
case GDF_16BIT_565RGB: case GDF_16BIT_565RGB:
*(unsigned short *)dest = *(unsigned short *) dest =
SWAP16((unsigned short)(((r>>3)<<11) | ((g>>2)<<5) | (b>>3))); SWAP16 ((unsigned short) (((r >> 3) << 11) | ((g >> 2) << 5) | (b >> 3)));
break; break;
case GDF_32BIT_X888RGB: case GDF_32BIT_X888RGB:
*(unsigned long *)dest = *(unsigned long *) dest =
SWAP32((unsigned long)((r<<16) | (g<<8) | b)); SWAP32 ((unsigned long) ((r << 16) | (g << 8) | b));
break; break;
case GDF_24BIT_888RGB: case GDF_24BIT_888RGB:
#ifdef VIDEO_FB_LITTLE_ENDIAN #ifdef VIDEO_FB_LITTLE_ENDIAN
@ -792,21 +1046,35 @@ static void *video_logo (void)
char info[128]; char info[128];
extern char version_string; extern char version_string;
#ifdef CONFIG_SPLASH_SCREEN
char *s;
ulong addr;
if ((s = getenv ("splashimage")) != NULL) {
addr = simple_strtoul (s, NULL, 16);
if (video_display_bitmap (addr, 0, 0) == 0) {
return ((void *) (video_fb_address));
}
}
#endif /* CONFIG_SPLASH_SCREEN */
logo_plot (video_fb_address, VIDEO_COLS, 0, 0); logo_plot (video_fb_address, VIDEO_COLS, 0, 0);
sprintf(info, " %s", &version_string); sprintf (info, " %s", &version_string);
video_drawstring (VIDEO_INFO_X, VIDEO_INFO_Y, info); video_drawstring (VIDEO_INFO_X, VIDEO_INFO_Y, info);
#ifdef CONFIG_CONSOLE_EXTRA_INFO #ifdef CONFIG_CONSOLE_EXTRA_INFO
{ {
int i, n = ((VIDEO_LOGO_HEIGHT-VIDEO_FONT_HEIGHT)/VIDEO_FONT_HEIGHT); int i, n = ((VIDEO_LOGO_HEIGHT - VIDEO_FONT_HEIGHT) / VIDEO_FONT_HEIGHT);
for (i = 1; i < n; i++) for (i = 1; i < n; i++) {
{
video_get_info_str (i, info); video_get_info_str (i, info);
if (*info) if (*info)
video_drawstring (VIDEO_INFO_X, video_drawstring (VIDEO_INFO_X,
VIDEO_INFO_Y + i*VIDEO_FONT_HEIGHT, info); VIDEO_INFO_Y + i * VIDEO_FONT_HEIGHT,
info);
} }
} }
#endif #endif
@ -818,21 +1086,20 @@ static void *video_logo (void)
/*****************************************************************************/ /*****************************************************************************/
static int video_init(void) static int video_init (void)
{ {
unsigned char color8; unsigned char color8;
if ((pGD=video_hw_init()) == NULL) if ((pGD = video_hw_init ()) == NULL)
return -1; return -1;
video_fb_address = (void*)VIDEO_FB_ADRS; video_fb_address = (void *) VIDEO_FB_ADRS;
#ifdef CONFIG_VIDEO_HW_CURSOR #ifdef CONFIG_VIDEO_HW_CURSOR
video_init_hw_cursor(VIDEO_FONT_WIDTH, VIDEO_FONT_HEIGHT); video_init_hw_cursor (VIDEO_FONT_WIDTH, VIDEO_FONT_HEIGHT);
#endif #endif
/* Init drawing pats */ /* Init drawing pats */
switch (VIDEO_DATA_FORMAT) switch (VIDEO_DATA_FORMAT) {
{
case GDF__8BIT_INDEX: case GDF__8BIT_INDEX:
video_set_lut (0x01, CONSOLE_FG_COL, CONSOLE_FG_COL, CONSOLE_FG_COL); video_set_lut (0x01, CONSOLE_FG_COL, CONSOLE_FG_COL, CONSOLE_FG_COL);
video_set_lut (0x00, CONSOLE_BG_COL, CONSOLE_BG_COL, CONSOLE_BG_COL); video_set_lut (0x00, CONSOLE_BG_COL, CONSOLE_BG_COL, CONSOLE_BG_COL);
@ -840,38 +1107,50 @@ static int video_init(void)
bgx = 0x00000000; bgx = 0x00000000;
break; break;
case GDF__8BIT_332RGB: case GDF__8BIT_332RGB:
color8 = ((CONSOLE_FG_COL & 0xe0) | ((CONSOLE_FG_COL>>3) & 0x1c) | CONSOLE_FG_COL>>6); color8 = ((CONSOLE_FG_COL & 0xe0) |
fgx = (color8<<24) | (color8<<16) | (color8<<8) | color8; ((CONSOLE_FG_COL >> 3) & 0x1c) | CONSOLE_FG_COL >> 6);
color8 = ((CONSOLE_BG_COL & 0xe0) | ((CONSOLE_BG_COL>>3) & 0x1c) | CONSOLE_BG_COL>>6); fgx = (color8 << 24) | (color8 << 16) | (color8 << 8) | color8;
bgx = (color8<<24) | (color8<<16) | (color8<<8) | color8; color8 = ((CONSOLE_BG_COL & 0xe0) |
((CONSOLE_BG_COL >> 3) & 0x1c) | CONSOLE_BG_COL >> 6);
bgx = (color8 << 24) | (color8 << 16) | (color8 << 8) | color8;
break; break;
case GDF_15BIT_555RGB: case GDF_15BIT_555RGB:
fgx = (((CONSOLE_FG_COL>>3)<<26) | ((CONSOLE_FG_COL>>3)<<21) | ((CONSOLE_FG_COL>>3)<<16) | fgx = (((CONSOLE_FG_COL >> 3) << 26) |
((CONSOLE_FG_COL>>3)<<10) | ((CONSOLE_FG_COL>>3)<<5) | (CONSOLE_FG_COL>>3)); ((CONSOLE_FG_COL >> 3) << 21) | ((CONSOLE_FG_COL >> 3) << 16) |
bgx = (((CONSOLE_BG_COL>>3)<<26) | ((CONSOLE_BG_COL>>3)<<21) | ((CONSOLE_BG_COL>>3)<<16) | ((CONSOLE_FG_COL >> 3) << 10) | ((CONSOLE_FG_COL >> 3) << 5) |
((CONSOLE_BG_COL>>3)<<10) | ((CONSOLE_BG_COL>>3)<<5) | (CONSOLE_BG_COL>>3)); (CONSOLE_FG_COL >> 3));
bgx = (((CONSOLE_BG_COL >> 3) << 26) |
((CONSOLE_BG_COL >> 3) << 21) | ((CONSOLE_BG_COL >> 3) << 16) |
((CONSOLE_BG_COL >> 3) << 10) | ((CONSOLE_BG_COL >> 3) << 5) |
(CONSOLE_BG_COL >> 3));
break; break;
case GDF_16BIT_565RGB: case GDF_16BIT_565RGB:
fgx = (((CONSOLE_FG_COL>>3)<<27) | ((CONSOLE_FG_COL>>2)<<21) | ((CONSOLE_FG_COL>>3)<<16) | fgx = (((CONSOLE_FG_COL >> 3) << 27) |
((CONSOLE_FG_COL>>3)<<11) | ((CONSOLE_FG_COL>>2)<<5) | (CONSOLE_FG_COL>>3)); ((CONSOLE_FG_COL >> 2) << 21) | ((CONSOLE_FG_COL >> 3) << 16) |
bgx = (((CONSOLE_BG_COL>>3)<<27) | ((CONSOLE_BG_COL>>2)<<21) | ((CONSOLE_BG_COL>>3)<<16) | ((CONSOLE_FG_COL >> 3) << 11) | ((CONSOLE_FG_COL >> 2) << 5) |
((CONSOLE_BG_COL>>3)<<11) | ((CONSOLE_BG_COL>>2)<<5) | (CONSOLE_BG_COL>>3)); (CONSOLE_FG_COL >> 3));
bgx = (((CONSOLE_BG_COL >> 3) << 27) |
((CONSOLE_BG_COL >> 2) << 21) | ((CONSOLE_BG_COL >> 3) << 16) |
((CONSOLE_BG_COL >> 3) << 11) | ((CONSOLE_BG_COL >> 2) << 5) |
(CONSOLE_BG_COL >> 3));
break; break;
case GDF_32BIT_X888RGB: case GDF_32BIT_X888RGB:
fgx = (CONSOLE_FG_COL<<16) | (CONSOLE_FG_COL<<8) | CONSOLE_FG_COL; fgx = (CONSOLE_FG_COL << 16) | (CONSOLE_FG_COL << 8) | CONSOLE_FG_COL;
bgx = (CONSOLE_BG_COL<<16) | (CONSOLE_BG_COL<<8) | CONSOLE_BG_COL; bgx = (CONSOLE_BG_COL << 16) | (CONSOLE_BG_COL << 8) | CONSOLE_BG_COL;
break; break;
case GDF_24BIT_888RGB: case GDF_24BIT_888RGB:
fgx = (CONSOLE_FG_COL<<24) | (CONSOLE_FG_COL<<16) | (CONSOLE_FG_COL<<8) | CONSOLE_FG_COL; fgx = (CONSOLE_FG_COL << 24) | (CONSOLE_FG_COL << 16) |
bgx = (CONSOLE_BG_COL<<24) | (CONSOLE_BG_COL<<16) | (CONSOLE_BG_COL<<8) | CONSOLE_BG_COL; (CONSOLE_FG_COL << 8) | CONSOLE_FG_COL;
bgx = (CONSOLE_BG_COL << 24) | (CONSOLE_BG_COL << 16) |
(CONSOLE_BG_COL << 8) | CONSOLE_BG_COL;
break; break;
} }
eorx = fgx ^ bgx; eorx = fgx ^ bgx;
#ifdef CONFIG_VIDEO_LOGO #ifdef CONFIG_VIDEO_LOGO
/* Plot the logo and get start point of console */ /* Plot the logo and get start point of console */
PRINTD("Video: Drawing the logo ...\n"); PRINTD ("Video: Drawing the logo ...\n");
video_console_address = video_logo(); video_console_address = video_logo ();
#else #else
video_console_address = video_fb_address; video_console_address = video_fb_address;
#endif #endif
@ -880,7 +1159,7 @@ static int video_init(void)
console_col = 0; console_col = 0;
console_row = 0; console_row = 0;
return 0 ; return 0;
} }
@ -900,15 +1179,14 @@ int drv_video_init (void)
return 0; return 0;
/* Init video chip - returns with framebuffer cleared */ /* Init video chip - returns with framebuffer cleared */
if (video_init() == -1) if (video_init () == -1)
skip_dev_init = 1; skip_dev_init = 1;
#ifdef CONFIG_VGA_AS_SINGLE_DEVICE #ifdef CONFIG_VGA_AS_SINGLE_DEVICE
/* Devices VGA and Keyboard will be assigned seperately */ /* Devices VGA and Keyboard will be assigned seperately */
/* Init vga device */ /* Init vga device */
if (!skip_dev_init) if (!skip_dev_init) {
{ memset (&console_dev, 0, sizeof (console_dev));
memset (&console_dev, 0, sizeof(console_dev)); strcpy (console_dev.name, "vga");
strcpy(console_dev.name, "vga");
console_dev.ext = DEV_EXT_VIDEO; /* Video extensions */ console_dev.ext = DEV_EXT_VIDEO; /* Video extensions */
console_dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_SYSTEM; console_dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_SYSTEM;
console_dev.putc = video_putc; /* 'putc' function */ console_dev.putc = video_putc; /* 'putc' function */
@ -920,15 +1198,14 @@ int drv_video_init (void)
return 1; return 1;
} }
#else #else
PRINTD("KBD: Keyboard init ...\n"); PRINTD ("KBD: Keyboard init ...\n");
if (VIDEO_KBD_INIT_FCT == -1) if (VIDEO_KBD_INIT_FCT == -1)
skip_dev_init = 1; skip_dev_init = 1;
/* Init console device */ /* Init console device */
if (!skip_dev_init) if (!skip_dev_init) {
{ memset (&console_dev, 0, sizeof (console_dev));
memset (&console_dev, 0, sizeof(console_dev)); strcpy (console_dev.name, "console");
strcpy(console_dev.name, "console");
console_dev.ext = DEV_EXT_VIDEO; /* Video extensions */ console_dev.ext = DEV_EXT_VIDEO; /* Video extensions */
console_dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT | DEV_FLAGS_SYSTEM; console_dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT | DEV_FLAGS_SYSTEM;
console_dev.putc = video_putc; /* 'putc' function */ console_dev.putc = video_putc; /* 'putc' function */
@ -943,5 +1220,4 @@ int drv_video_init (void)
/* No console dev available */ /* No console dev available */
return 0; return 0;
} }
#endif /* CONFIG_CFB_CONSOLE */ #endif /* CONFIG_CFB_CONSOLE */

View File

@ -174,16 +174,16 @@
/* /*
* Flash configuration * Flash configuration
*/ */
#define CFG_FLASH_BASE 0xff000000 #define CFG_FLASH_BASE 0xFF000000
#define CFG_FLASH_SIZE 0x01000000 #define CFG_FLASH_SIZE 0x01000000
#if !defined(CFG_LOWBOOT) #if !defined(CFG_LOWBOOT)
#define CFG_ENV_ADDR (CFG_FLASH_BASE + 0x740000 + 0x800000) #define CFG_ENV_ADDR (CFG_FLASH_BASE + 0x00740000 + 0x00800000)
#else /* CFG_LOWBOOT */ #else /* CFG_LOWBOOT */
#if defined(CFG_LOWBOOT08) #if defined(CFG_LOWBOOT08)
#define CFG_ENV_ADDR (CFG_FLASH_BASE + 0x30000 + 0x800000) #define CFG_ENV_ADDR (CFG_FLASH_BASE + 0x00040000 + 0x00800000)
#endif #endif
#if defined(CFG_LOWBOOT16) #if defined(CFG_LOWBOOT16)
#define CFG_ENV_ADDR (CFG_FLASH_BASE + 0x30000) #define CFG_ENV_ADDR (CFG_FLASH_BASE + 0x00040000)
#endif #endif
#endif /* CFG_LOWBOOT */ #endif /* CFG_LOWBOOT */
#define CFG_MAX_FLASH_BANKS 2 /* max num of memory banks */ #define CFG_MAX_FLASH_BANKS 2 /* max num of memory banks */
@ -207,7 +207,7 @@
/* /*
* Memory map * Memory map
*/ */
#define CFG_MBAR 0xf0000000 #define CFG_MBAR 0xF0000000
#define CFG_SDRAM_BASE 0x00000000 #define CFG_SDRAM_BASE 0x00000000
#define CFG_DEFAULT_MBAR 0x80000000 #define CFG_DEFAULT_MBAR 0x80000000
@ -279,10 +279,10 @@
#ifdef CONFIG_MPC5200_DDR #ifdef CONFIG_MPC5200_DDR
#define CFG_BOOTCS_START 0xff800000 #define CFG_BOOTCS_START 0xFF800000
#define CFG_BOOTCS_SIZE 0x00800000 #define CFG_BOOTCS_SIZE 0x00800000
#define CFG_BOOTCS_CFG 0x00047801 #define CFG_BOOTCS_CFG 0x00047801
#define CFG_CS1_START 0xff000000 #define CFG_CS1_START 0xFF000000
#define CFG_CS1_SIZE 0x00800000 #define CFG_CS1_SIZE 0x00800000
#define CFG_CS1_CFG 0x00047800 #define CFG_CS1_CFG 0x00047800
@ -335,7 +335,7 @@
#define CFG_ATA_REG_OFFSET (CFG_ATA_DATA_OFFSET) #define CFG_ATA_REG_OFFSET (CFG_ATA_DATA_OFFSET)
/* Offset for alternate registers */ /* Offset for alternate registers */
#define CFG_ATA_ALT_OFFSET (0x005c) #define CFG_ATA_ALT_OFFSET (0x005C)
/* Interval between registers */ /* Interval between registers */
#define CFG_ATA_STRIDE 4 #define CFG_ATA_STRIDE 4

View File

@ -288,6 +288,10 @@
/*----------------------------------------------------------------------- /*-----------------------------------------------------------------------
* SCCR - System Clock Control Register 9-8 * SCCR - System Clock Control Register 9-8
*/ */
#define SCCR_PCI_MODE 0x00000100 /* PCI Mode */
#define SCCR_PCI_MODCK 0x00000080 /* Value of PCI_MODCK pin */
#define SCCR_PCIDF_MSK 0x00000078 /* PCI division factor */
#define SCCR_PCIDF_SHIFT 3
#define SCCR_CLPD 0x00000004 /* CPM Low Power Disable */ #define SCCR_CLPD 0x00000004 /* CPM Low Power Disable */
#define SCCR_DFBRG_MSK 0x00000003 /* Division factor of BRGCLK Mask */ #define SCCR_DFBRG_MSK 0x00000003 /* Division factor of BRGCLK Mask */
#define SCCR_DFBRG_SHIFT 0 #define SCCR_DFBRG_SHIFT 0