Re: [PATCH v2] drm/omap: plane zpos/zorder management improvements

2018-01-04 Thread Tomi Valkeinen
Hi,

On 03/01/18 11:16, Peter Ujfalusi wrote:
> Use the plane index as default zpos for all planes. Even if the
> application is not setting zpos/zorder explicitly we will have unique zpos
> for each plane.
> 
> Enforce that all planes must have unique zpos by refusing atomic update for
> planes with already used zpos.
> 
> Signed-off-by: Peter Ujfalusi 
> ---
> Hi,
> 
> changes since v1:
> - Dropped the zpos normalization related patches
> - New patch based on the discussion, see commit message.
> 
> Regards,
> Peter
> 
>  drivers/gpu/drm/omapdrm/omap_plane.c | 26 +++---
>  1 file changed, 19 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/gpu/drm/omapdrm/omap_plane.c 
> b/drivers/gpu/drm/omapdrm/omap_plane.c
> index 15e5d5d325c6..6aeda3cc2f8b 100644
> --- a/drivers/gpu/drm/omapdrm/omap_plane.c
> +++ b/drivers/gpu/drm/omapdrm/omap_plane.c
> @@ -33,6 +33,7 @@
>  struct omap_plane {
>   struct drm_plane base;
>   enum omap_plane_id id;
> + int idx;
>   const char *name;
>  };
>  
> @@ -99,8 +100,7 @@ static void omap_plane_atomic_disable(struct drm_plane 
> *plane,
>   struct omap_plane *omap_plane = to_omap_plane(plane);
>  
>   plane->state->rotation = DRM_MODE_ROTATE_0;
> - plane->state->zpos = plane->type == DRM_PLANE_TYPE_PRIMARY
> -? 0 : omap_plane->id;
> + plane->state->zpos = omap_plane->idx;
>  
>   priv->dispc_ops->ovl_enable(omap_plane->id, false);
>  }
> @@ -109,15 +109,17 @@ static int omap_plane_atomic_check(struct drm_plane 
> *plane,
>  struct drm_plane_state *state)
>  {
>   struct drm_crtc_state *crtc_state;
> + struct drm_crtc *crtc = state->crtc;
> + struct drm_plane *p;
>  
>   if (!state->fb)
>   return 0;
>  
>   /* crtc should only be NULL when disabling (i.e., !state->fb) */
> - if (WARN_ON(!state->crtc))
> + if (WARN_ON(!crtc))
>   return 0;
>  
> - crtc_state = drm_atomic_get_existing_crtc_state(state->state, 
> state->crtc);
> + crtc_state = drm_atomic_get_existing_crtc_state(state->state, crtc);
>   /* we should have a crtc state if the plane is attached to a crtc */
>   if (WARN_ON(!crtc_state))
>   return 0;
> @@ -125,6 +127,16 @@ static int omap_plane_atomic_check(struct drm_plane 
> *plane,
>   if (!crtc_state->enable)
>   return 0;
>  
> + drm_for_each_plane_mask(p, crtc->dev, crtc->state->plane_mask) {
> + if (plane->base.id == p->base.id)
> + continue;
> +
> + if (p->state->zpos == state->zpos) {
> + DBG("zpos must be unique (zpos: %u)", state->zpos);
> + return -EINVAL;
> + }
> + }

I think this should be done in omap_drv, or maybe in omap_crtc. You
don't want to check individual planes, but you want to ensure that none
of the planes have conflicting zpos'es. Strictly speaking, zpos is not
exactly a plane feature (even if it's set per-plane), it's more of a
composition feature.

Perhaps omap_crtc would be the best place, as the zpos must be unique on
a crtc, so in the crtc's atomic check you could check that all the
planes on that crtc have unique zpos.

 Tomi

-- 
Texas Instruments Finland Oy, Porkkalankatu 22, 00180 Helsinki.
Y-tunnus/Business ID: 0615521-4. Kotipaikka/Domicile: Helsinki
___
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel


[PATCH v2] drm/omap: plane zpos/zorder management improvements

2018-01-03 Thread Peter Ujfalusi
Use the plane index as default zpos for all planes. Even if the
application is not setting zpos/zorder explicitly we will have unique zpos
for each plane.

Enforce that all planes must have unique zpos by refusing atomic update for
planes with already used zpos.

Signed-off-by: Peter Ujfalusi 
---
Hi,

changes since v1:
- Dropped the zpos normalization related patches
- New patch based on the discussion, see commit message.

Regards,
Peter

 drivers/gpu/drm/omapdrm/omap_plane.c | 26 +++---
 1 file changed, 19 insertions(+), 7 deletions(-)

diff --git a/drivers/gpu/drm/omapdrm/omap_plane.c 
b/drivers/gpu/drm/omapdrm/omap_plane.c
index 15e5d5d325c6..6aeda3cc2f8b 100644
--- a/drivers/gpu/drm/omapdrm/omap_plane.c
+++ b/drivers/gpu/drm/omapdrm/omap_plane.c
@@ -33,6 +33,7 @@
 struct omap_plane {
struct drm_plane base;
enum omap_plane_id id;
+   int idx;
const char *name;
 };
 
@@ -99,8 +100,7 @@ static void omap_plane_atomic_disable(struct drm_plane 
*plane,
struct omap_plane *omap_plane = to_omap_plane(plane);
 
plane->state->rotation = DRM_MODE_ROTATE_0;
-   plane->state->zpos = plane->type == DRM_PLANE_TYPE_PRIMARY
-  ? 0 : omap_plane->id;
+   plane->state->zpos = omap_plane->idx;
 
priv->dispc_ops->ovl_enable(omap_plane->id, false);
 }
@@ -109,15 +109,17 @@ static int omap_plane_atomic_check(struct drm_plane 
*plane,
   struct drm_plane_state *state)
 {
struct drm_crtc_state *crtc_state;
+   struct drm_crtc *crtc = state->crtc;
+   struct drm_plane *p;
 
if (!state->fb)
return 0;
 
/* crtc should only be NULL when disabling (i.e., !state->fb) */
-   if (WARN_ON(!state->crtc))
+   if (WARN_ON(!crtc))
return 0;
 
-   crtc_state = drm_atomic_get_existing_crtc_state(state->state, 
state->crtc);
+   crtc_state = drm_atomic_get_existing_crtc_state(state->state, crtc);
/* we should have a crtc state if the plane is attached to a crtc */
if (WARN_ON(!crtc_state))
return 0;
@@ -125,6 +127,16 @@ static int omap_plane_atomic_check(struct drm_plane *plane,
if (!crtc_state->enable)
return 0;
 
+   drm_for_each_plane_mask(p, crtc->dev, crtc->state->plane_mask) {
+   if (plane->base.id == p->base.id)
+   continue;
+
+   if (p->state->zpos == state->zpos) {
+   DBG("zpos must be unique (zpos: %u)", state->zpos);
+   return -EINVAL;
+   }
+   }
+
if (state->crtc_x < 0 || state->crtc_y < 0)
return -EINVAL;
 
@@ -196,8 +208,7 @@ static void omap_plane_reset(struct drm_plane *plane)
 * Set the zpos default depending on whether we are a primary or overlay
 * plane.
 */
-   plane->state->zpos = plane->type == DRM_PLANE_TYPE_PRIMARY
-  ? 0 : omap_plane->id;
+   plane->state->zpos = omap_plane->idx;
 }
 
 static int omap_plane_atomic_set_property(struct drm_plane *plane,
@@ -284,6 +295,7 @@ struct drm_plane *omap_plane_init(struct drm_device *dev,
for (nformats = 0; formats[nformats]; ++nformats)
;
omap_plane->id = id;
+   omap_plane->idx = idx;
omap_plane->name = plane_id_to_name[id];
 
plane = _plane->base;
@@ -297,7 +309,7 @@ struct drm_plane *omap_plane_init(struct drm_device *dev,
drm_plane_helper_add(plane, _plane_helper_funcs);
 
omap_plane_install_properties(plane, >base);
-   drm_plane_create_zpos_property(plane, 0, 0, num_planes - 1);
+   drm_plane_create_zpos_property(plane, idx, 0, num_planes - 1);
 
return plane;
 
-- 
Peter

Texas Instruments Finland Oy, Porkkalankatu 22, 00180 Helsinki.
Y-tunnus/Business ID: 0615521-4. Kotipaikka/Domicile: Helsinki

___
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel