disp: msm: dsi: add DSI PLL support for 10nm-LPU

This change adds DSI pll support for 10nm architecture.

Change-Id: I3819dd828dbcc168b115bd718c5d656ea9fd12c8
Signed-off-by: Rajeev Nandan <rajeevny@codeaurora.org>
This commit is contained in:
Rajeev Nandan
2020-07-03 19:54:28 +05:30
committed by Gerrit - the friendly Code Review server
parent 6fd5a637c2
commit 7cf728f3a6
4 changed files with 2085 additions and 1 deletions

View File

@@ -54,6 +54,7 @@ struct lpfr_cfg {
enum {
DSI_PLL_5NM,
DSI_PLL_10NM,
DSI_UNKNOWN_PLL,
};
@@ -228,6 +229,9 @@ static inline struct dsi_pll_vco_clk *to_vco_clk_hw(struct clk_hw *hw)
int dsi_pll_clock_register_5nm(struct platform_device *pdev,
struct dsi_pll_resource *pll_res);
int dsi_pll_clock_register_10nm(struct platform_device *pdev,
struct dsi_pll_resource *pll_res);
int dsi_pll_init(struct platform_device *pdev,
struct dsi_pll_resource **pll_res);
#endif