[PATCH] drm/msm/mdp5: expose "alpha" property
Daniel Vetter
daniel at ffwll.ch
Mon Oct 17 06:24:59 UTC 2016
On Fri, Oct 14, 2016 at 07:50:13PM -0400, Rob Clark wrote:
> We had this wired up already internally but initially did not expose the
> property pending bikeshed about alpha and color management properties.
> I noted that drm-hwc2 was looking for this property, and a couple other
> drivers already support it in the same way. So time to expose it!
>
> Signed-off-by: Rob Clark <robdclark at gmail.com>
Can we please have a bit of shared property setup in drm_blend.c and some
documentation how it is supposed to be used? Adding props is nice, but
greating an undocumented and ill-defined mess of them, not so much ;-)
I'd prefer the full specced blending equation in the docs, including how
this interacts with fb formats which already have their own alpha value.
Thanks, Daniel
> ---
> drivers/gpu/drm/msm/mdp/mdp5/mdp5_plane.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/drivers/gpu/drm/msm/mdp/mdp5/mdp5_plane.c b/drivers/gpu/drm/msm/mdp/mdp5/mdp5_plane.c
> index 432c098..b6f1fc66 100644
> --- a/drivers/gpu/drm/msm/mdp/mdp5/mdp5_plane.c
> +++ b/drivers/gpu/drm/msm/mdp/mdp5/mdp5_plane.c
> @@ -120,6 +120,7 @@ static void mdp5_plane_install_properties(struct drm_plane *plane,
> ARRAY_SIZE(name##_prop_enum_list))
>
> INSTALL_RANGE_PROPERTY(zpos, ZPOS, 1, 255, 1);
> + INSTALL_RANGE_PROPERTY(alpha, ALPHA, 0, 255, 255);
>
> mdp5_plane_install_rotation_property(dev, plane);
>
> @@ -148,6 +149,7 @@ static int mdp5_plane_atomic_set_property(struct drm_plane *plane,
> } while (0)
>
> SET_PROPERTY(zpos, ZPOS, uint8_t);
> + SET_PROPERTY(alpha, ALPHA, uint8_t);
>
> dev_err(dev->dev, "Invalid property\n");
> ret = -EINVAL;
> @@ -176,6 +178,7 @@ static int mdp5_plane_atomic_get_property(struct drm_plane *plane,
> } while (0)
>
> GET_PROPERTY(zpos, ZPOS, uint8_t);
> + GET_PROPERTY(alpha, ALPHA, uint8_t);
>
> dev_err(dev->dev, "Invalid property\n");
> ret = -EINVAL;
> --
> 2.7.4
>
> _______________________________________________
> dri-devel mailing list
> dri-devel at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel
--
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
More information about the dri-devel
mailing list