Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1d977b06 authored by Tomi Valkeinen's avatar Tomi Valkeinen
Browse files

drm/omap: fix fbdev pix format to support all platforms



omap_fbdev always creates a framebuffer with ARGB8888 pixel format. On
OMAP3 we have VIDEO1 overlay that does not support ARGB8888, and on
OMAP2 none of the overlays support ARGB888.

This patch changes the omap_fbdev's fb to XRGB8888, which is supported
by all platforms.

Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
Tested-by: default avatarH. Nikolaus Schaller <hns@goldelico.com>
Acked-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
parent 9f9499ae
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -112,11 +112,8 @@ static int omap_fbdev_create(struct drm_fb_helper *helper,
	dma_addr_t paddr;
	int ret;

	/* only doing ARGB32 since this is what is needed to alpha-blend
	 * with video overlays:
	 */
	sizes->surface_bpp = 32;
	sizes->surface_depth = 32;
	sizes->surface_depth = 24;

	DBG("create fbdev: %dx%d@%d (%dx%d)", sizes->surface_width,
			sizes->surface_height, sizes->surface_bpp,