Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1702456 > unrolled thread

[PATCH 2/3] drm/vc4: Don't disable DSI clocks on component unload.

Started byEric Anholt <eric@anholt.net>
First post2017-08-02 22:40 +0200
Last post2017-08-04 12:10 +0200
Articles 3 — 3 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 2/3] drm/vc4: Don't disable DSI clocks on component unload. Eric Anholt <eric@anholt.net> - 2017-08-02 22:40 +0200
    Re: [PATCH 2/3] drm/vc4: Don't disable DSI clocks on component  unload. Noralf Trønnes <noralf@tronnes.org> - 2017-08-03 15:40 +0200
    Re: [PATCH 2/3] drm/vc4: Don't disable DSI clocks on component  unload. Boris Brezillon <boris.brezillon@free-electrons.com> - 2017-08-04 12:10 +0200

#1702456 — [PATCH 2/3] drm/vc4: Don't disable DSI clocks on component unload.

FromEric Anholt <eric@anholt.net>
Date2017-08-02 22:40 +0200
Subject[PATCH 2/3] drm/vc4: Don't disable DSI clocks on component unload.
Message-ID<ua8AW-6r3-13@gated-at.bofh.it>
The clocks are enabled/disabled at encoder enable/disable time, not at
component load.  Fixes a WARN_ON at boot if V3D fails to probe.

Fixes: 4078f5757144 ("drm/vc4: Add DSI driver")
Signed-off-by: Eric Anholt <eric@anholt.net>
---
 drivers/gpu/drm/vc4/vc4_dsi.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/drivers/gpu/drm/vc4/vc4_dsi.c b/drivers/gpu/drm/vc4/vc4_dsi.c
index 629d372633e6..13481bb6322f 100644
--- a/drivers/gpu/drm/vc4/vc4_dsi.c
+++ b/drivers/gpu/drm/vc4/vc4_dsi.c
@@ -1641,9 +1641,6 @@ static void vc4_dsi_unbind(struct device *dev, struct device *master,
 
 	mipi_dsi_host_unregister(&dsi->dsi_host);
 
-	clk_disable_unprepare(dsi->pll_phy_clock);
-	clk_disable_unprepare(dsi->escape_clock);
-
 	if (dsi->port == 1)
 		vc4->dsi1 = NULL;
 }
-- 
2.13.3

[toc] | [next] | [standalone]


#1703128 — Re: [PATCH 2/3] drm/vc4: Don't disable DSI clocks on component unload.

FromNoralf Trønnes <noralf@tronnes.org>
Date2017-08-03 15:40 +0200
SubjectRe: [PATCH 2/3] drm/vc4: Don't disable DSI clocks on component unload.
Message-ID<uaow4-Bh-51@gated-at.bofh.it>
In reply to#1702456
Den 02.08.2017 22.32, skrev Eric Anholt:
> The clocks are enabled/disabled at encoder enable/disable time, not at
> component load.  Fixes a WARN_ON at boot if V3D fails to probe.
>
> Fixes: 4078f5757144 ("drm/vc4: Add DSI driver")
> Signed-off-by: Eric Anholt <eric@anholt.net>
> ---

Acked-by: Noralf Trønnes <noralf@tronnes.org>

>   drivers/gpu/drm/vc4/vc4_dsi.c | 3 ---
>   1 file changed, 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/vc4/vc4_dsi.c b/drivers/gpu/drm/vc4/vc4_dsi.c
> index 629d372633e6..13481bb6322f 100644
> --- a/drivers/gpu/drm/vc4/vc4_dsi.c
> +++ b/drivers/gpu/drm/vc4/vc4_dsi.c
> @@ -1641,9 +1641,6 @@ static void vc4_dsi_unbind(struct device *dev, struct device *master,
>   
>   	mipi_dsi_host_unregister(&dsi->dsi_host);
>   
> -	clk_disable_unprepare(dsi->pll_phy_clock);
> -	clk_disable_unprepare(dsi->escape_clock);
> -
>   	if (dsi->port == 1)
>   		vc4->dsi1 = NULL;
>   }

[toc] | [prev] | [next] | [standalone]


#1703847 — Re: [PATCH 2/3] drm/vc4: Don't disable DSI clocks on component unload.

FromBoris Brezillon <boris.brezillon@free-electrons.com>
Date2017-08-04 12:10 +0200
SubjectRe: [PATCH 2/3] drm/vc4: Don't disable DSI clocks on component unload.
Message-ID<uaHIl-5DP-9@gated-at.bofh.it>
In reply to#1702456
On Wed,  2 Aug 2017 13:32:41 -0700
Eric Anholt <eric@anholt.net> wrote:

> The clocks are enabled/disabled at encoder enable/disable time, not at
> component load.  Fixes a WARN_ON at boot if V3D fails to probe.
> 
> Fixes: 4078f5757144 ("drm/vc4: Add DSI driver")
> Signed-off-by: Eric Anholt <eric@anholt.net>

Reviewed-by: Boris Brezillon <boris.brezillon@free-electrons.com>

> ---
>  drivers/gpu/drm/vc4/vc4_dsi.c | 3 ---
>  1 file changed, 3 deletions(-)
> 
> diff --git a/drivers/gpu/drm/vc4/vc4_dsi.c b/drivers/gpu/drm/vc4/vc4_dsi.c
> index 629d372633e6..13481bb6322f 100644
> --- a/drivers/gpu/drm/vc4/vc4_dsi.c
> +++ b/drivers/gpu/drm/vc4/vc4_dsi.c
> @@ -1641,9 +1641,6 @@ static void vc4_dsi_unbind(struct device *dev, struct device *master,
>  
>  	mipi_dsi_host_unregister(&dsi->dsi_host);
>  
> -	clk_disable_unprepare(dsi->pll_phy_clock);
> -	clk_disable_unprepare(dsi->escape_clock);
> -
>  	if (dsi->port == 1)
>  		vc4->dsi1 = NULL;
>  }

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web