1
0
Fork 0

common/lcd_simplefb: Add support for 32bit organized framebuffers

Signed-off-by: Hannes Petermaier <oe5hpm@oevsv.at>
utp
Hannes Petermaier 2015-04-25 00:30:21 +02:00 committed by Anatolij Gustschin
parent b217c89e85
commit de934b4158
1 changed files with 4 additions and 1 deletions

View File

@ -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