All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/3] ARM: atmel: sama5d4 xplained: fix the LCD parameters
@ 2015-01-08  7:20 Bo Shen
  2015-01-08  7:20 ` [U-Boot] [PATCH 2/3] ARM: atmel: sama5d4xek: " Bo Shen
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Bo Shen @ 2015-01-08  7:20 UTC (permalink / raw)
  To: u-boot

Correct the LCD pixel clock, remove unused vsync parameter,
and also correct the include file.

Signed-off-by: Bo Shen <voice.shen@atmel.com>
---

 board/atmel/sama5d4_xplained/sama5d4_xplained.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/board/atmel/sama5d4_xplained/sama5d4_xplained.c b/board/atmel/sama5d4_xplained/sama5d4_xplained.c
index de0baad..2758c5c 100644
--- a/board/atmel/sama5d4_xplained/sama5d4_xplained.c
+++ b/board/atmel/sama5d4_xplained/sama5d4_xplained.c
@@ -14,7 +14,7 @@
 #include <asm/arch/clk.h>
 #include <asm/arch/sama5d3_smc.h>
 #include <asm/arch/sama5d4.h>
-#include <atmel_lcdc.h>
+#include <atmel_hlcdc.h>
 #include <atmel_mci.h>
 #include <lcd.h>
 #include <mmc.h>
@@ -109,10 +109,8 @@ static void sama5d4_xplained_usb_hw_init(void)
 vidinfo_t panel_info = {
 	.vl_col = 480,
 	.vl_row = 272,
-	.vl_clk = 9000,
-	.vl_sync = ATMEL_LCDC_INVLINE_NORMAL | ATMEL_LCDC_INVFRAME_NORMAL,
+	.vl_clk = 9000000,
 	.vl_bpix = LCD_BPP,
-	.vl_bpox = LCD_OUTPUT_BPP,
 	.vl_tft = 1,
 	.vl_hsync_len = 41,
 	.vl_left_margin = 2,
-- 
2.1.0.24.g4109c28

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

* [U-Boot] [PATCH 2/3] ARM: atmel: sama5d4xek: fix the LCD parameters
  2015-01-08  7:20 [U-Boot] [PATCH 1/3] ARM: atmel: sama5d4 xplained: fix the LCD parameters Bo Shen
@ 2015-01-08  7:20 ` Bo Shen
  2015-01-11  1:27   ` [U-Boot] [U-Boot,2/3] " Andreas Bießmann
  2015-01-08  7:20 ` [U-Boot] [PATCH 3/3] ARM: atmel: sama5d3xek: " Bo Shen
  2015-01-11  1:26 ` [U-Boot] [U-Boot,1/3] ARM: atmel: sama5d4 xplained: " Andreas Bießmann
  2 siblings, 1 reply; 6+ messages in thread
From: Bo Shen @ 2015-01-08  7:20 UTC (permalink / raw)
  To: u-boot

Remove unused vsync parameter, and correct the include file.

Signed-off-by: Bo Shen <voice.shen@atmel.com>
---

 board/atmel/sama5d4ek/sama5d4ek.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/board/atmel/sama5d4ek/sama5d4ek.c b/board/atmel/sama5d4ek/sama5d4ek.c
index f8394f5..d3039c0 100644
--- a/board/atmel/sama5d4ek/sama5d4ek.c
+++ b/board/atmel/sama5d4ek/sama5d4ek.c
@@ -14,7 +14,7 @@
 #include <asm/arch/clk.h>
 #include <asm/arch/sama5d3_smc.h>
 #include <asm/arch/sama5d4.h>
-#include <atmel_lcdc.h>
+#include <atmel_hlcdc.h>
 #include <atmel_mci.h>
 #include <lcd.h>
 #include <mmc.h>
@@ -111,7 +111,6 @@ vidinfo_t panel_info = {
 	.vl_col = 800,
 	.vl_row = 480,
 	.vl_clk = 33260000,
-	.vl_sync = ATMEL_LCDC_INVLINE_NORMAL | ATMEL_LCDC_INVFRAME_NORMAL,
 	.vl_bpix = LCD_BPP,
 	.vl_tft = 1,
 	.vl_hsync_len = 5,
-- 
2.1.0.24.g4109c28

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

* [U-Boot] [PATCH 3/3] ARM: atmel: sama5d3xek: fix the LCD parameters
  2015-01-08  7:20 [U-Boot] [PATCH 1/3] ARM: atmel: sama5d4 xplained: fix the LCD parameters Bo Shen
  2015-01-08  7:20 ` [U-Boot] [PATCH 2/3] ARM: atmel: sama5d4xek: " Bo Shen
@ 2015-01-08  7:20 ` Bo Shen
  2015-01-11  1:27   ` [U-Boot] [U-Boot,3/3] " Andreas Bießmann
  2015-01-11  1:26 ` [U-Boot] [U-Boot,1/3] ARM: atmel: sama5d4 xplained: " Andreas Bießmann
  2 siblings, 1 reply; 6+ messages in thread
From: Bo Shen @ 2015-01-08  7:20 UTC (permalink / raw)
  To: u-boot

Remove unused vsync parameter, and correct the include file.

Signed-off-by: Bo Shen <voice.shen@atmel.com>
---

 board/atmel/sama5d3xek/sama5d3xek.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/board/atmel/sama5d3xek/sama5d3xek.c b/board/atmel/sama5d3xek/sama5d3xek.c
index ca4f79d..cf6ed8b 100644
--- a/board/atmel/sama5d3xek/sama5d3xek.c
+++ b/board/atmel/sama5d3xek/sama5d3xek.c
@@ -15,7 +15,7 @@
 #include <asm/arch/gpio.h>
 #include <asm/arch/clk.h>
 #include <lcd.h>
-#include <atmel_lcdc.h>
+#include <atmel_hlcdc.h>
 #include <atmel_mci.h>
 #include <phy.h>
 #include <micrel.h>
@@ -146,7 +146,6 @@ vidinfo_t panel_info = {
 	.vl_col = 800,
 	.vl_row = 480,
 	.vl_clk = 24000000,
-	.vl_sync = ATMEL_LCDC_INVLINE_NORMAL | ATMEL_LCDC_INVFRAME_NORMAL,
 	.vl_bpix = LCD_BPP,
 	.vl_tft = 1,
 	.vl_hsync_len = 128,
-- 
2.1.0.24.g4109c28

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

* [U-Boot] [U-Boot,1/3] ARM: atmel: sama5d4 xplained: fix the LCD parameters
  2015-01-08  7:20 [U-Boot] [PATCH 1/3] ARM: atmel: sama5d4 xplained: fix the LCD parameters Bo Shen
  2015-01-08  7:20 ` [U-Boot] [PATCH 2/3] ARM: atmel: sama5d4xek: " Bo Shen
  2015-01-08  7:20 ` [U-Boot] [PATCH 3/3] ARM: atmel: sama5d3xek: " Bo Shen
@ 2015-01-11  1:26 ` Andreas Bießmann
  2 siblings, 0 replies; 6+ messages in thread
From: Andreas Bießmann @ 2015-01-11  1:26 UTC (permalink / raw)
  To: u-boot

Dear Bo Shen,

Bo Shen <voice.shen@atmel.com> writes:
>Correct the LCD pixel clock, remove unused vsync parameter,
>and also correct the include file.
>
>Signed-off-by: Bo Shen <voice.shen@atmel.com>
>---
>
> board/atmel/sama5d4_xplained/sama5d4_xplained.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)

applied to u-boot-atmel/master, thanks!

Best regards,
Andreas Bie?mann

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

* [U-Boot] [U-Boot,2/3] ARM: atmel: sama5d4xek: fix the LCD parameters
  2015-01-08  7:20 ` [U-Boot] [PATCH 2/3] ARM: atmel: sama5d4xek: " Bo Shen
@ 2015-01-11  1:27   ` Andreas Bießmann
  0 siblings, 0 replies; 6+ messages in thread
From: Andreas Bießmann @ 2015-01-11  1:27 UTC (permalink / raw)
  To: u-boot

Dear Bo Shen,

Bo Shen <voice.shen@atmel.com> writes:
>Remove unused vsync parameter, and correct the include file.
>
>Signed-off-by: Bo Shen <voice.shen@atmel.com>
>---
>
> board/atmel/sama5d4ek/sama5d4ek.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)

applied to u-boot-atmel/master, thanks!

Best regards,
Andreas Bie?mann

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

* [U-Boot] [U-Boot,3/3] ARM: atmel: sama5d3xek: fix the LCD parameters
  2015-01-08  7:20 ` [U-Boot] [PATCH 3/3] ARM: atmel: sama5d3xek: " Bo Shen
@ 2015-01-11  1:27   ` Andreas Bießmann
  0 siblings, 0 replies; 6+ messages in thread
From: Andreas Bießmann @ 2015-01-11  1:27 UTC (permalink / raw)
  To: u-boot

Dear Bo Shen,

Bo Shen <voice.shen@atmel.com> writes:
>Remove unused vsync parameter, and correct the include file.
>
>Signed-off-by: Bo Shen <voice.shen@atmel.com>
>---
>
> board/atmel/sama5d3xek/sama5d3xek.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)

applied to u-boot-atmel/master, thanks!

Best regards,
Andreas Bie?mann

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

end of thread, other threads:[~2015-01-11  1:27 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-08  7:20 [U-Boot] [PATCH 1/3] ARM: atmel: sama5d4 xplained: fix the LCD parameters Bo Shen
2015-01-08  7:20 ` [U-Boot] [PATCH 2/3] ARM: atmel: sama5d4xek: " Bo Shen
2015-01-11  1:27   ` [U-Boot] [U-Boot,2/3] " Andreas Bießmann
2015-01-08  7:20 ` [U-Boot] [PATCH 3/3] ARM: atmel: sama5d3xek: " Bo Shen
2015-01-11  1:27   ` [U-Boot] [U-Boot,3/3] " Andreas Bießmann
2015-01-11  1:26 ` [U-Boot] [U-Boot,1/3] ARM: atmel: sama5d4 xplained: " Andreas Bießmann

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.