mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-10 01:17:17 +00:00
drm/msm/dsi_pll_10nm: Fix variable usage for pll_lockdet_rate
The PLL_LOCKDET_RATE_1 was being programmed with a hardcoded value directly, but the same value was also being specified in the dsi_pll_regs struct pll_lockdet_rate variable: let's use it! Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@somainline.org> Signed-off-by: Rob Clark <robdclark@chromium.org>
This commit is contained in:
parent
196145eb1a
commit
362cadf34b
@ -304,7 +304,8 @@ static void dsi_pll_commit(struct dsi_pll_10nm *pll)
|
|||||||
reg->frac_div_start_mid);
|
reg->frac_div_start_mid);
|
||||||
pll_write(base + REG_DSI_10nm_PHY_PLL_FRAC_DIV_START_HIGH_1,
|
pll_write(base + REG_DSI_10nm_PHY_PLL_FRAC_DIV_START_HIGH_1,
|
||||||
reg->frac_div_start_high);
|
reg->frac_div_start_high);
|
||||||
pll_write(base + REG_DSI_10nm_PHY_PLL_PLL_LOCKDET_RATE_1, 0x40);
|
pll_write(base + REG_DSI_10nm_PHY_PLL_PLL_LOCKDET_RATE_1,
|
||||||
|
reg->pll_lockdet_rate);
|
||||||
pll_write(base + REG_DSI_10nm_PHY_PLL_PLL_LOCK_DELAY, 0x06);
|
pll_write(base + REG_DSI_10nm_PHY_PLL_PLL_LOCK_DELAY, 0x06);
|
||||||
pll_write(base + REG_DSI_10nm_PHY_PLL_CMODE, 0x10);
|
pll_write(base + REG_DSI_10nm_PHY_PLL_CMODE, 0x10);
|
||||||
pll_write(base + REG_DSI_10nm_PHY_PLL_CLOCK_INVERTERS,
|
pll_write(base + REG_DSI_10nm_PHY_PLL_CLOCK_INVERTERS,
|
||||||
|
Loading…
Reference in New Issue
Block a user