mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-07 23:28:55 +00:00
drm/msm/dsi: Specify bitmask to set source PLL
The bit position to configure source PLL will change on new types of PHYs. The caller should pass down this information. Signed-off-by: Hai Li <hali@codeaurora.org> Signed-off-by: Rob Clark <robdclark@gmail.com>
This commit is contained in:
parent
29f034d776
commit
fae11c1106
1 changed files with 11 additions and 5 deletions
|
@ -157,17 +157,21 @@ fail:
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void dsi_phy_set_src_pll(struct msm_dsi_phy *phy, int pll_id, u32 reg)
|
static void dsi_phy_set_src_pll(struct msm_dsi_phy *phy, int pll_id, u32 reg,
|
||||||
|
u32 bit_mask)
|
||||||
{
|
{
|
||||||
int phy_id = phy->id;
|
int phy_id = phy->id;
|
||||||
|
u32 val;
|
||||||
|
|
||||||
if ((phy_id >= DSI_MAX) || (pll_id >= DSI_MAX))
|
if ((phy_id >= DSI_MAX) || (pll_id >= DSI_MAX))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
val = dsi_phy_read(phy->base + reg);
|
||||||
|
|
||||||
if (phy->cfg->src_pll_truthtable[phy_id][pll_id])
|
if (phy->cfg->src_pll_truthtable[phy_id][pll_id])
|
||||||
dsi_phy_write(phy->base + reg, 0x01);
|
dsi_phy_write(phy->base + reg, val | bit_mask);
|
||||||
else
|
else
|
||||||
dsi_phy_write(phy->base + reg, 0x00);
|
dsi_phy_write(phy->base + reg, val & (~bit_mask));
|
||||||
}
|
}
|
||||||
|
|
||||||
#define S_DIV_ROUND_UP(n, d) \
|
#define S_DIV_ROUND_UP(n, d) \
|
||||||
|
@ -389,7 +393,8 @@ static int dsi_28nm_phy_enable(struct msm_dsi_phy *phy, int src_pll_id,
|
||||||
|
|
||||||
dsi_phy_write(base + REG_DSI_28nm_PHY_CTRL_0, 0x5f);
|
dsi_phy_write(base + REG_DSI_28nm_PHY_CTRL_0, 0x5f);
|
||||||
|
|
||||||
dsi_phy_set_src_pll(phy, src_pll_id, REG_DSI_28nm_PHY_GLBL_TEST_CTRL);
|
dsi_phy_set_src_pll(phy, src_pll_id, REG_DSI_28nm_PHY_GLBL_TEST_CTRL,
|
||||||
|
DSI_28nm_PHY_GLBL_TEST_CTRL_BITCLK_HS_SEL);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -451,7 +456,8 @@ static int dsi_20nm_phy_enable(struct msm_dsi_phy *phy, int src_pll_id,
|
||||||
|
|
||||||
dsi_phy_write(base + REG_DSI_20nm_PHY_STRENGTH_0, 0xff);
|
dsi_phy_write(base + REG_DSI_20nm_PHY_STRENGTH_0, 0xff);
|
||||||
|
|
||||||
dsi_phy_set_src_pll(phy, src_pll_id, REG_DSI_20nm_PHY_GLBL_TEST_CTRL);
|
dsi_phy_set_src_pll(phy, src_pll_id, REG_DSI_20nm_PHY_GLBL_TEST_CTRL,
|
||||||
|
DSI_20nm_PHY_GLBL_TEST_CTRL_BITCLK_HS_SEL);
|
||||||
|
|
||||||
for (i = 0; i < 4; i++) {
|
for (i = 0; i < 4; i++) {
|
||||||
dsi_phy_write(base + REG_DSI_20nm_PHY_LN_CFG_3(i),
|
dsi_phy_write(base + REG_DSI_20nm_PHY_LN_CFG_3(i),
|
||||||
|
|
Loading…
Add table
Reference in a new issue