All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/atomic: clear plane's CRTC and FB when shutting down
@ 2014-11-26 23:58 Rob Clark
  2014-11-27  9:43 ` Daniel Vetter
  0 siblings, 1 reply; 2+ messages in thread
From: Rob Clark @ 2014-11-26 23:58 UTC (permalink / raw)
  To: dri-devel

Otherwise we'd still end up w/ the plane attached to the CRTC, and
seemingly active, but without an FB.  Which ends up going *boom*
in the drivers.

Slightly modified version of Daniel's irc suggestion.

CC: Daniel Vetter <daniel@ffwll.ch>
Signed-off-by: Rob Clark <robdclark@gmail.com>
---
 drivers/gpu/drm/drm_atomic_helper.c | 19 +++++++++++++------
 1 file changed, 13 insertions(+), 6 deletions(-)

diff --git a/drivers/gpu/drm/drm_atomic_helper.c b/drivers/gpu/drm/drm_atomic_helper.c
index a348688..7d5e6c1 100644
--- a/drivers/gpu/drm/drm_atomic_helper.c
+++ b/drivers/gpu/drm/drm_atomic_helper.c
@@ -1409,11 +1409,24 @@ retry:
 		goto fail;
 	}
 
+	primary_state = drm_atomic_get_plane_state(state, crtc->primary);
+	if (IS_ERR(primary_state)) {
+		ret = PTR_ERR(primary_state);
+		goto fail;
+	}
+
 	if (!set->mode) {
 		WARN_ON(set->fb);
 		WARN_ON(set->num_connectors);
 
 		crtc_state->enable = false;
+
+		ret = drm_atomic_set_crtc_for_plane(state, crtc->primary, NULL);
+		if (ret != 0)
+			goto fail;
+
+		drm_atomic_set_fb_for_plane(primary_state, NULL);
+
 		goto commit;
 	}
 
@@ -1423,12 +1436,6 @@ retry:
 	crtc_state->enable = true;
 	drm_mode_copy(&crtc_state->mode, set->mode);
 
-	primary_state = drm_atomic_get_plane_state(state, crtc->primary);
-	if (IS_ERR(primary_state)) {
-		ret = PTR_ERR(primary_state);
-		goto fail;
-	}
-
 	ret = drm_atomic_set_crtc_for_plane(state, crtc->primary, crtc);
 	if (ret != 0)
 		goto fail;
-- 
1.9.3

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] drm/atomic: clear plane's CRTC and FB when shutting down
  2014-11-26 23:58 [PATCH] drm/atomic: clear plane's CRTC and FB when shutting down Rob Clark
@ 2014-11-27  9:43 ` Daniel Vetter
  0 siblings, 0 replies; 2+ messages in thread
From: Daniel Vetter @ 2014-11-27  9:43 UTC (permalink / raw)
  To: Rob Clark; +Cc: dri-devel

On Wed, Nov 26, 2014 at 06:58:04PM -0500, Rob Clark wrote:
> Otherwise we'd still end up w/ the plane attached to the CRTC, and
> seemingly active, but without an FB.  Which ends up going *boom*
> in the drivers.
> 
> Slightly modified version of Daniel's irc suggestion.
> 
> CC: Daniel Vetter <daniel@ffwll.ch>
> Signed-off-by: Rob Clark <robdclark@gmail.com>

I think the problem here really is just that legacy state (plane->fb/crtc)
and atomic state get out of sync. Leaving planes around while the crtc
goes down is already possible with ->disable_plane and overlays, drivers
should be able to cope with that.

Merged into my atomic fixes pile, thanks.
-Daniel

> ---
>  drivers/gpu/drm/drm_atomic_helper.c | 19 +++++++++++++------
>  1 file changed, 13 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/gpu/drm/drm_atomic_helper.c b/drivers/gpu/drm/drm_atomic_helper.c
> index a348688..7d5e6c1 100644
> --- a/drivers/gpu/drm/drm_atomic_helper.c
> +++ b/drivers/gpu/drm/drm_atomic_helper.c
> @@ -1409,11 +1409,24 @@ retry:
>  		goto fail;
>  	}
>  
> +	primary_state = drm_atomic_get_plane_state(state, crtc->primary);
> +	if (IS_ERR(primary_state)) {
> +		ret = PTR_ERR(primary_state);
> +		goto fail;
> +	}
> +
>  	if (!set->mode) {
>  		WARN_ON(set->fb);
>  		WARN_ON(set->num_connectors);
>  
>  		crtc_state->enable = false;
> +
> +		ret = drm_atomic_set_crtc_for_plane(state, crtc->primary, NULL);
> +		if (ret != 0)
> +			goto fail;
> +
> +		drm_atomic_set_fb_for_plane(primary_state, NULL);
> +
>  		goto commit;
>  	}
>  
> @@ -1423,12 +1436,6 @@ retry:
>  	crtc_state->enable = true;
>  	drm_mode_copy(&crtc_state->mode, set->mode);
>  
> -	primary_state = drm_atomic_get_plane_state(state, crtc->primary);
> -	if (IS_ERR(primary_state)) {
> -		ret = PTR_ERR(primary_state);
> -		goto fail;
> -	}
> -
>  	ret = drm_atomic_set_crtc_for_plane(state, crtc->primary, crtc);
>  	if (ret != 0)
>  		goto fail;
> -- 
> 1.9.3
> 

-- 
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-11-27  9:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-11-26 23:58 [PATCH] drm/atomic: clear plane's CRTC and FB when shutting down Rob Clark
2014-11-27  9:43 ` Daniel Vetter

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.