public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver
@ 2009-07-15 15:56 Dimitar Dimitrov
  2009-07-15 15:58 ` [U-Boot] [PATCH 02/03 v3] Add support for Olimex SAM9-L9261 SBC Dimitar Dimitrov
                   ` (4 more replies)
  0 siblings, 5 replies; 13+ messages in thread
From: Dimitar Dimitrov @ 2009-07-15 15:56 UTC (permalink / raw)
  To: u-boot

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/video/atmel_lcdfb.c |    3 +++
 2 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/README b/README
index de700bd..d7c0afe 100644
--- a/README
+++ b/README
@@ -1063,6 +1063,11 @@ The following options need to be configured:
 		Normally display is black on white background; define
 		CONFIG_SYS_WHITE_ON_BLACK to get it inverted.
 
+		CONFIG_LCD_INVERTED_CLOCK
+		Define this if your LCD needs inverted clock polarity. Note
+		that this feature will work only if the selected LCD driver 
+		and hardware controller support it.
+
 - Splash Screen Support: CONFIG_SPLASH_SCREEN
 
 		If this option is set, the environment is checked for
diff --git a/drivers/video/atmel_lcdfb.c b/drivers/video/atmel_lcdfb.c
index db86763..d3e988e 100644
--- 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.vl_bpix << 5);
+#if defined(CONFIG_LCD_INVERTED_CLOCK)
+	value |= ATMEL_LCDC_INVCLK_INVERTED;
+#endif
 	lcdc_writel(panel_info.mmio, ATMEL_LCDC_LCDCON2, value);
 
 	/* Vertical timing */
-- 
1.5.6.1

^ permalink raw reply related	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2009-12-05  0:10 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-15 15:56 [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver Dimitar Dimitrov
2009-07-15 15:58 ` [U-Boot] [PATCH 02/03 v3] Add support for Olimex SAM9-L9261 SBC Dimitar Dimitrov
2009-07-18 21:09   ` Jean-Christophe PLAGNIOL-VILLARD
2009-07-15 16:00 ` [U-Boot] [PATCH 03/03 v3] Add support for Olimex SAM9-L9260 SBC Dimitar Dimitrov
2009-07-18 21:13   ` Jean-Christophe PLAGNIOL-VILLARD
2009-07-18 19:18 ` [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver Anatolij Gustschin
2009-07-25 20:28   ` Anatolij Gustschin
2009-07-18 20:58 ` Jean-Christophe PLAGNIOL-VILLARD
2009-07-18 23:34   ` Anatolij Gustschin
2009-07-19  9:34     ` Jean-Christophe PLAGNIOL-VILLARD
2009-11-22 21:01 ` Wolfgang Denk
2009-11-24 19:47   ` Dimitar Dimitrov
2009-12-05  0:10     ` Wolfgang Denk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox