diff options
| author | Alexander Graf <[email protected]> | 2016-11-02 10:36:19 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2016-11-28 20:15:20 -0500 |
| commit | 8b82dd9adde852dd506af39dc74ddc59f5295cb7 (patch) | |
| tree | 0f9384282be38a9215dbb68dab8304e392b64483 /drivers | |
| parent | 6b0ee50634212a63a49e17646716f87df303a68d (diff) | |
bcm2835 video: Map frame buffer as 32bpp
To enable working efifb support, let's map the frame buffer as 32bpp
instead of 16bpp.
Signed-off-by: Alexander Graf <[email protected]>
Acked-by: Stephen Warren <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/video/bcm2835.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/bcm2835.c b/drivers/video/bcm2835.c index cd605e632cb..cc6454f10d4 100644 --- a/drivers/video/bcm2835.c +++ b/drivers/video/bcm2835.c @@ -71,9 +71,9 @@ void lcd_ctrl_init(void *lcdbase) msg_setup->virtual_w_h.body.req.width = w; msg_setup->virtual_w_h.body.req.height = h; BCM2835_MBOX_INIT_TAG(&msg_setup->depth, SET_DEPTH); - msg_setup->depth.body.req.bpp = 16; + msg_setup->depth.body.req.bpp = 32; BCM2835_MBOX_INIT_TAG(&msg_setup->pixel_order, SET_PIXEL_ORDER); - msg_setup->pixel_order.body.req.order = BCM2835_MBOX_PIXEL_ORDER_BGR; + msg_setup->pixel_order.body.req.order = BCM2835_MBOX_PIXEL_ORDER_RGB; BCM2835_MBOX_INIT_TAG(&msg_setup->alpha_mode, SET_ALPHA_MODE); msg_setup->alpha_mode.body.req.alpha = BCM2835_MBOX_ALPHA_MODE_IGNORED; BCM2835_MBOX_INIT_TAG(&msg_setup->virtual_offset, SET_VIRTUAL_OFFSET); @@ -103,7 +103,7 @@ void lcd_ctrl_init(void *lcdbase) panel_info.vl_col = w; panel_info.vl_row = h; - panel_info.vl_bpix = LCD_COLOR16; + panel_info.vl_bpix = LCD_COLOR32; gd->fb_base = bus_to_phys( msg_setup->allocate_buffer.body.resp.fb_address); |
