drm/tegra: dsi: Reset across ->exit()/->init()
authorThierry Reding <treding@nvidia.com>
Mon, 24 Nov 2014 15:31:48 +0000 (16:31 +0100)
committerThierry Reding <treding@nvidia.com>
Tue, 27 Jan 2015 09:14:39 +0000 (10:14 +0100)
This allows a DRM driver unload/reload cycle to completely reset the DSI
controller and may help in situations where it's broken.

Signed-off-by: Thierry Reding <treding@nvidia.com>
drivers/gpu/drm/tegra/dsi.c

index 60b8022..748727b 100644 (file)
@@ -948,6 +948,14 @@ static int tegra_dsi_init(struct host1x_client *client)
        struct tegra_dsi *dsi = host1x_client_to_dsi(client);
        int err;
 
+       reset_control_deassert(dsi->rst);
+
+       err = tegra_dsi_pad_calibrate(dsi);
+       if (err < 0) {
+               dev_err(dsi->dev, "MIPI calibration failed: %d\n", err);
+               goto reset;
+       }
+
        /* Gangsters must not register their own outputs. */
        if (!dsi->master) {
                dsi->output.type = TEGRA_OUTPUT_DSI;
@@ -968,6 +976,10 @@ static int tegra_dsi_init(struct host1x_client *client)
        }
 
        return 0;
+
+reset:
+       reset_control_assert(dsi->rst);
+       return err;
 }
 
 static int tegra_dsi_exit(struct host1x_client *client)
@@ -997,6 +1009,8 @@ static int tegra_dsi_exit(struct host1x_client *client)
                }
        }
 
+       reset_control_assert(dsi->rst);
+
        return 0;
 }
 
@@ -1423,13 +1437,6 @@ static int tegra_dsi_probe(struct platform_device *pdev)
        if (IS_ERR(dsi->rst))
                return PTR_ERR(dsi->rst);
 
-       err = reset_control_deassert(dsi->rst);
-       if (err < 0) {
-               dev_err(&pdev->dev, "failed to bring DSI out of reset: %d\n",
-                       err);
-               return err;
-       }
-
        dsi->clk = devm_clk_get(&pdev->dev, NULL);
        if (IS_ERR(dsi->clk)) {
                dev_err(&pdev->dev, "cannot get DSI clock\n");
@@ -1495,12 +1502,6 @@ static int tegra_dsi_probe(struct platform_device *pdev)
                goto disable_vdd;
        }
 
-       err = tegra_dsi_pad_calibrate(dsi);
-       if (err < 0) {
-               dev_err(dsi->dev, "MIPI calibration failed: %d\n", err);
-               goto mipi_free;
-       }
-
        dsi->host.ops = &tegra_dsi_host_ops;
        dsi->host.dev = &pdev->dev;