Re: [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver

2009-12-04 Thread Wolfgang Denk
Dear Dimitar Dimitrov, In message <200911242147.04900.dinu...@gmail.com> you wrote: > > I can regenerate the patches for the latest GIT. If someone is willing to try > them please let me know. > > Unfortunately I don't have the boards anymore so I can't verify that the new > patches and new u-

Re: [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver

2009-11-24 Thread Dimitar Dimitrov
On Sunday 22 November 2009, Wolfgang Denk wrote: > Dear Dimitar Dimitrov, > > In message <200907151856.24888.dinu...@gmail.com> you wrote: > > This is my third try for Olimex SAM9-L9260/61 board support patches. > > > > Here follows the first patch. > > --- > > > > Boards utilizing the Atmel LC

Re: [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver

2009-11-22 Thread Wolfgang Denk
Dear Dimitar Dimitrov, In message <200907151856.24888.dinu...@gmail.com> you wrote: > This is my third try for Olimex SAM9-L9260/61 board support patches. > > Here follows the first patch. > --- > > Boards utilizing the Atmel LCD driver can now specify that the LCD clock must > be inverted by d

Re: [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver

2009-07-25 Thread Anatolij Gustschin
Anatolij Gustschin wrote: > Dimitar Dimitrov wrote: >> This is my third try for Olimex SAM9-L9260/61 board support patches. >> >> Here follows the first patch. >> --- >> >> Boards utilizing the Atmel LCD driver can now specify that the LCD clock must >> be inverted by defining the macro CONFIG_LCD

Re: [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver

2009-07-19 Thread Jean-Christophe PLAGNIOL-VILLARD
> This definition in struct vidinfo for Atmel LCD > /* LCD configuration register */ > u_long vl_sync; /* Horizontal / vertical sync */ > u_long vl_bpix; /* Bits per pixel, 0 = 1, 1 = 2, 2 = 4, 3 = 8, >4 = 16 */ > u_long

Re: [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver

2009-07-18 Thread Anatolij Gustschin
Jean-Christophe PLAGNIOL-VILLARD wrote: > On 18:56 Wed 15 Jul , Dimitar Dimitrov wrote: ... >> --- a/drivers/video/atmel_lcdfb.c >> +++ b/drivers/video/atmel_lcdfb.c >> @@ -112,6 +112,9 @@ void lcd_ctrl_init(void *lcdbase) >> >> value |= panel_info.vl_sync; >> value |= (panel_info.v

Re: [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver

2009-07-18 Thread Jean-Christophe PLAGNIOL-VILLARD
On 18:56 Wed 15 Jul , Dimitar Dimitrov wrote: > This is my third try for Olimex SAM9-L9260/61 board support patches. > > Here follows the first patch. > --- > > Boards utilizing the Atmel LCD driver can now specify that the LCD clock must > be inverted by defining the macro CONFIG_LCD_INVERT

Re: [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver

2009-07-18 Thread Anatolij Gustschin
Dimitar Dimitrov wrote: > This is my third try for Olimex SAM9-L9260/61 board support patches. > > Here follows the first patch. > --- > > Boards utilizing the Atmel LCD driver can now specify that the LCD clock must > be inverted by defining the macro CONFIG_LCD_INVERTED_CLOCK. > --- > README

[U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver

2009-07-15 Thread Dimitar Dimitrov
This is my third try for Olimex SAM9-L9260/61 board support patches. Here follows the first patch. --- Boards utilizing the Atmel LCD driver can now specify that the LCD clock must be inverted by defining the macro CONFIG_LCD_INVERTED_CLOCK. --- README |5 + drivers