Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/msm/mdp: Add support for more 32-bit RGB formats

That will complete the lists of Alpha + RGB formats.

Signed-off-by: Stephane Viau <sviau@codeaurora.org>
Signed-off-by: Rob Clark <robdclark@gmail.com>

authored by

Stephane Viau and committed by
Rob Clark
fbd4ae8a 7f8fc886

+6
+6
drivers/gpu/drm/msm/mdp/mdp_format.c
··· 96 96 /* name a r g b e0 e1 e2 e3 alpha tight cpp cnt ... */ 97 97 FMT(ARGB8888, 8, 8, 8, 8, 1, 0, 2, 3, true, true, 4, 4, 98 98 MDP_PLANE_INTERLEAVED, CHROMA_RGB), 99 + FMT(ABGR8888, 8, 8, 8, 8, 2, 0, 1, 3, true, true, 4, 4, 100 + MDP_PLANE_INTERLEAVED, CHROMA_RGB), 101 + FMT(RGBA8888, 8, 8, 8, 8, 3, 1, 0, 2, true, true, 4, 4, 102 + MDP_PLANE_INTERLEAVED, CHROMA_RGB), 103 + FMT(BGRA8888, 8, 8, 8, 8, 3, 2, 0, 1, true, true, 4, 4, 104 + MDP_PLANE_INTERLEAVED, CHROMA_RGB), 99 105 FMT(XRGB8888, 8, 8, 8, 8, 1, 0, 2, 3, false, true, 4, 4, 100 106 MDP_PLANE_INTERLEAVED, CHROMA_RGB), 101 107 FMT(RGB888, 0, 8, 8, 8, 1, 0, 2, 0, false, true, 3, 3,