summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/msm/dsi/pll/dsi_pll.h
diff options
context:
space:
mode:
authorArchit Taneja2018-01-17 07:05:25 +0100
committerRob Clark2018-02-20 16:41:20 +0100
commit973e02db35c2c4036693e32ed6f250eefd8c322c (patch)
tree87b487f88a958d527ac69e4e8d724dce0dfc28de /drivers/gpu/drm/msm/dsi/pll/dsi_pll.h
parentdrm/msm/dsi: Update generated headers for 10nm PLL/PHY (diff)
downloadkernel-qcow2-linux-973e02db35c2c4036693e32ed6f250eefd8c322c.tar.gz
kernel-qcow2-linux-973e02db35c2c4036693e32ed6f250eefd8c322c.tar.xz
kernel-qcow2-linux-973e02db35c2c4036693e32ed6f250eefd8c322c.zip
drm/msm/dsi: Add skeleton 10nm PHY/PLL code
Add new 10nm DSI PLL/PHY files that will be used on SDM845. Just populate empty pll/phy funcs for now. These will be filled up later. Signed-off-by: Archit Taneja <architt@codeaurora.org> Signed-off-by: Rob Clark <robdclark@gmail.com>
Diffstat (limited to 'drivers/gpu/drm/msm/dsi/pll/dsi_pll.h')
-rw-r--r--drivers/gpu/drm/msm/dsi/pll/dsi_pll.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/gpu/drm/msm/dsi/pll/dsi_pll.h b/drivers/gpu/drm/msm/dsi/pll/dsi_pll.h
index f63e7ada74a8..8b32271cbc24 100644
--- a/drivers/gpu/drm/msm/dsi/pll/dsi_pll.h
+++ b/drivers/gpu/drm/msm/dsi/pll/dsi_pll.h
@@ -115,5 +115,14 @@ msm_dsi_pll_14nm_init(struct platform_device *pdev, int id)
return ERR_PTR(-ENODEV);
}
#endif
+#ifdef CONFIG_DRM_MSM_DSI_10NM_PHY
+struct msm_dsi_pll *msm_dsi_pll_10nm_init(struct platform_device *pdev, int id);
+#else
+static inline struct msm_dsi_pll *
+msm_dsi_pll_10nm_init(struct platform_device *pdev, int id)
+{
+ return ERR_PTR(-ENODEV);
+}
+#endif
#endif /* __DSI_PLL_H__ */