Re: [U-Boot] [PATCH 2/3] video: add support for display controller in MB86R0x SoCs

2010-05-01 Thread Anatolij Gustschin
Dear Matthias, On Thu, 22 Apr 2010 15:03:55 +0200 Matthias Weißer wrote: ... > >> +/* > >> + * Set a RGB color in the LUT > >> + */ > >> +void video_set_lut(unsigned int index, unsigned char r, > >> + unsigned char g, unsigned char b) > >> +{ > >> + > >> +} > > >

Re: [U-Boot] [PATCH 2/3] video: add support for display controller in MB86R0x SoCs

2010-05-01 Thread Anatolij Gustschin
Dear Matthias, On Thu, 22 Apr 2010 12:30:56 +0200 Matthias Weisser wrote: ... > diff --git a/drivers/video/cfb_console.c b/drivers/video/cfb_console.c > index d1f47c9..4769cdb 100644 > --- a/drivers/video/cfb_console.c > +++ b/drivers/video/cfb_console.c > @@ -153,6 +153,14 @@ CONFIG_VIDEO_HW_CUR

Re: [U-Boot] [PATCH 2/3] video: add support for display controller in MB86R0x SoCs

2010-04-28 Thread Matthias Weißer
Am 28.04.2010 08:44, schrieb Wolfgang Denk: > Dear Matthias, > > in message<4bd7d5dd.6080...@arcor.de> you wrote: >> + pGD->memSize = VIDEO_MEM_SIZE; + pGD->frameAdrs = PHYS_SDRAM + PHYS_SDRAM_SIZE - VIDEO_MEM_SIZE; >>> >>> Please pay attention to the global memory map requirements. P

Re: [U-Boot] [PATCH 2/3] video: add support for display controller in MB86R0x SoCs

2010-04-27 Thread Wolfgang Denk
Dear Matthias, in message <4bd7d5dd.6080...@arcor.de> you wrote: > > >> + pGD->memSize = VIDEO_MEM_SIZE; > >> + pGD->frameAdrs = PHYS_SDRAM + PHYS_SDRAM_SIZE - VIDEO_MEM_SIZE; > > > > Please pay attention to the global memory map requirements. PRAM might > > go first. > > Can you please explain

Re: [U-Boot] [PATCH 2/3] video: add support for display controller in MB86R0x SoCs

2010-04-27 Thread Matthias Weißer
Am 22.04.2010 14:41, schrieb Wolfgang Denk: > Dear Matthias Weisser, > > In message<1271932257-14618-3-git-send-email-weiss...@arcor.de> you wrote: >> This patch adds support for the display controller in >> the MB86R0x SoCs. >> >> Signed-off-by: Matthias Weisser > ... >> +pGD->memSize = VIDEO

Re: [U-Boot] [PATCH 2/3] video: add support for display controller in MB86R0x SoCs

2010-04-22 Thread Matthias Weißer
Am 22.04.2010 14:41, schrieb Wolfgang Denk: > Dear Matthias Weisser, > > In message<1271932257-14618-3-git-send-email-weiss...@arcor.de> you wrote: >> This patch adds support for the display controller in >> the MB86R0x SoCs. >> >> Signed-off-by: Matthias Weisser > ... >> +pGD->memSize = VIDEO

Re: [U-Boot] [PATCH 2/3] video: add support for display controller in MB86R0x SoCs

2010-04-22 Thread Wolfgang Denk
Dear Matthias Weisser, In message <1271932257-14618-3-git-send-email-weiss...@arcor.de> you wrote: > This patch adds support for the display controller in > the MB86R0x SoCs. > > Signed-off-by: Matthias Weisser ... > + pGD->memSize = VIDEO_MEM_SIZE; > + pGD->frameAdrs = PHYS_SDRAM + PHYS

[U-Boot] [PATCH 2/3] video: add support for display controller in MB86R0x SoCs

2010-04-22 Thread Matthias Weisser
This patch adds support for the display controller in the MB86R0x SoCs. Signed-off-by: Matthias Weisser --- drivers/video/Makefile |1 + drivers/video/cfb_console.c |8 ++ drivers/video/mb86r0xgdc.c | 194 +++ 3 files changed, 203 insertions