diff mbox

[U-Boot,v2] common/lcd_simplefb: Add support for 32bit organized framebuffers

Message ID 1429914621-26924-1-git-send-email-oe5hpm@oevsv.at
State Accepted
Delegated to: Anatolij Gustschin
Headers show

Commit Message

Hannes Schmelzer April 24, 2015, 10:30 p.m. UTC
Signed-off-by: Hannes Petermaier <oe5hpm@oevsv.at>
---

Changes in v2:
- correct mistake in color order

 common/lcd_simplefb.c |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

Comments

Anatolij Gustschin July 23, 2015, 4:21 p.m. UTC | #1
Hi,

On Sat, 25 Apr 2015 00:30:21 +0200
Hannes Petermaier <oe5hpm@oevsv.at> wrote:

> Signed-off-by: Hannes Petermaier <oe5hpm@oevsv.at>
> ---
> 
> Changes in v2:
> - correct mistake in color order
> 
>  common/lcd_simplefb.c |    5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)

applied to u-boot-video/master.

Thanks,

Anatolij
diff mbox

Patch

diff --git a/common/lcd_simplefb.c b/common/lcd_simplefb.c
index 8db2add..2ba00f6 100644
--- a/common/lcd_simplefb.c
+++ b/common/lcd_simplefb.c
@@ -16,11 +16,14 @@  DECLARE_GLOBAL_DATA_PTR;
 
 static int lcd_dt_simplefb_configure_node(void *blob, int off)
 {
-#if LCD_BPP == LCD_COLOR16
 	int vl_col = lcd_get_pixel_width();
 	int vl_row = lcd_get_pixel_height();
+#if LCD_BPP == LCD_COLOR16
 	return fdt_setup_simplefb_node(blob, off, gd->fb_base, vl_col, vl_row,
 				       vl_col * 2, "r5g6b5");
+#elif LCD_BPP == LCD_COLOR32
+	return fdt_setup_simplefb_node(blob, off, gd->fb_base, vl_col, vl_row,
+				       vl_col * 4, "a8r8g8b8");
 #else
 	return -1;
 #endif