Hello Brijesh Jadav and Nick Reed:
Thanks very much for you advice to resolve the problem of showing the logo on LCD(DVO2) om EVM814x. Now its work ok.
According to your advice,I have modiyed the code,and in fact, It should Ok at the begin,But Because I show the penguin default,and the code:
Firmware.c (drivers\video) :
void *video_hw_init()
{
--------
/* clear the frame buffer for with the backgroung color */
memset((void *) FRAME_BUFFER_ADDRESS,LOGO_BGCOLOR, FRAME_SIZE);
---------
}
And:
Logo.h (include) 5374 2012/12/12
#ifdef CONFIG_480P
#define WIDTH 720
#define HEIGHT 480
#elif defined CONFIG_720P
#define WIDTH 1280
#define HEIGHT 720
#else
#define WIDTH 1920
#define HEIGHT 1080
#endif
My lcd is 1024*600,so When I still use the default parameter will result the data which will copy to framebuffer buffer will wrong.
Thanks very much.Thank you !!!