diff options
author | Christoph Manszewski <c.manszewski@samsung.com> | 2018-09-21 14:24:38 +0200 |
---|---|---|
committer | Inki Dae <inki.dae@samsung.com> | 2018-10-01 11:49:59 +0900 |
commit | 6ac99a328ee16d3f8cc253f1df62623cee3e9ea5 (patch) | |
tree | 94a40e3f22e9a1e9d94248a0e3a3043d76e45b66 /drivers/gpu/drm/exynos/exynos_drm_drv.h | |
parent | 482582c0217d352f0e344f0b25ea6ce12f964351 (diff) | |
download | lwn-6ac99a328ee16d3f8cc253f1df62623cee3e9ea5.tar.gz lwn-6ac99a328ee16d3f8cc253f1df62623cee3e9ea5.zip |
drm/exynos: mixer: Make plane alpha configurable
The mixer hardware supports variable plane alpha. Currently planes are
opaque, make this configurable.
Tested on Odroid-U3 with Exynos 4412 CPU, kernel next-20180913
using modetest.
Signed-off-by: Christoph Manszewski <c.manszewski@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Diffstat (limited to 'drivers/gpu/drm/exynos/exynos_drm_drv.h')
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_drv.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_drv.h b/drivers/gpu/drm/exynos/exynos_drm_drv.h index 4f60e9126e8a..ec9604f1272b 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_drv.h +++ b/drivers/gpu/drm/exynos/exynos_drm_drv.h @@ -93,6 +93,7 @@ struct exynos_drm_plane { #define EXYNOS_DRM_PLANE_CAP_ZPOS (1 << 2) #define EXYNOS_DRM_PLANE_CAP_TILE (1 << 3) #define EXYNOS_DRM_PLANE_CAP_PIX_BLEND (1 << 4) +#define EXYNOS_DRM_PLANE_CAP_WIN_BLEND (1 << 5) /* * Exynos DRM plane configuration structure. |