]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm/msm/dsi: check for failure on retrieving pll in dsi manager
authorLloyd Atkinson <latkinso@codeaurora.org>
Tue, 16 Jan 2018 21:26:01 +0000 (16:26 -0500)
committerRob Clark <robdclark@gmail.com>
Tue, 20 Feb 2018 15:41:20 +0000 (10:41 -0500)
Make msm_dsi_pll_init consistently return an error code instead
of NULL when pll initialization fails so that later pll
retrieval can check against an error code. Add checks for these
failures after retrieval of src_pll to avoid invalid pointer
dereferences later in msm_dsi_pll_get_clk_provider.

Signed-off-by: Lloyd Atkinson <latkinso@codeaurora.org>
Signed-off-by: Rob Clark <robdclark@gmail.com>
drivers/gpu/drm/msm/dsi/dsi_manager.c
drivers/gpu/drm/msm/dsi/phy/dsi_phy.c
drivers/gpu/drm/msm/dsi/pll/dsi_pll.c

index 855248132b2bd2d0a24c878b0066074e412f83ca..1a54fd67c9c4186591d795121909a224248f90d4 100644 (file)
@@ -88,6 +88,8 @@ static int dsi_mgr_setup_components(int id)
 
                msm_dsi_phy_set_usecase(msm_dsi->phy, MSM_DSI_PHY_STANDALONE);
                src_pll = msm_dsi_phy_get_pll(msm_dsi->phy);
+               if (IS_ERR(src_pll))
+                       return PTR_ERR(src_pll);
                ret = msm_dsi_host_set_src_pll(msm_dsi->host, src_pll);
        } else if (!other_dsi) {
                ret = 0;
@@ -116,6 +118,8 @@ static int dsi_mgr_setup_components(int id)
                msm_dsi_phy_set_usecase(clk_slave_dsi->phy,
                                        MSM_DSI_PHY_SLAVE);
                src_pll = msm_dsi_phy_get_pll(clk_master_dsi->phy);
+               if (IS_ERR(src_pll))
+                       return PTR_ERR(src_pll);
                ret = msm_dsi_host_set_src_pll(msm_dsi->host, src_pll);
                if (ret)
                        return ret;
index 790ca280cbfdf6a88e131d607db2074d7c18e889..c8bfaa78065114e857508417b5f8e55a2cabde90 100644 (file)
@@ -503,10 +503,10 @@ static int dsi_phy_driver_probe(struct platform_device *pdev)
                goto fail;
 
        phy->pll = msm_dsi_pll_init(pdev, phy->cfg->type, phy->id);
-       if (!phy->pll)
+       if (IS_ERR_OR_NULL(phy->pll))
                dev_info(dev,
-                       "%s: pll init failed, need separate pll clk driver\n",
-                       __func__);
+                       "%s: pll init failed: %ld, need separate pll clk driver\n",
+                       __func__, PTR_ERR(phy->pll));
 
        dsi_phy_disable_resource(phy);
 
index bc289f5c9078a30aca0188381453e8c7cd02af10..491f08dce96901d1a28555f72edaf30b717d1ee8 100644 (file)
@@ -173,7 +173,7 @@ struct msm_dsi_pll *msm_dsi_pll_init(struct platform_device *pdev,
 
        if (IS_ERR(pll)) {
                dev_err(dev, "%s: failed to init DSI PLL\n", __func__);
-               return NULL;
+               return pll;
        }
 
        pll->type = type;