phy/rockchip: samsung-hdptx: correct SDC_N

According to the datasheet rev1.05 Table 5-1:
SDC_N is 1 for HBR/HBR2.

However datasheet wasn't correct.

Signed-off-by: Wyon Bi <bivvy.bi@rock-chips.com>
Change-Id: I1cf6d573a6e886a32999dbf1b0e2ad43c5cdc30c
This commit is contained in:
Wyon Bi
2022-09-03 14:35:32 +00:00
parent c440ebcbb8
commit 843fd2249d

View File

@@ -830,8 +830,8 @@ static void rockchip_hdptx_phy_dp_pll_init(struct rockchip_hdptx_phy *hdptx)
FIELD_PREP(ROPLL_SDC_N_RBR, 0x2));
regmap_update_bits(hdptx->regmap, 0x01a8,
ROPLL_SDC_N_HBR | ROPLL_SDC_N_HBR2,
FIELD_PREP(ROPLL_SDC_N_HBR, 0x1) |
FIELD_PREP(ROPLL_SDC_N_HBR2, 0x1));
FIELD_PREP(ROPLL_SDC_N_HBR, 0x2) |
FIELD_PREP(ROPLL_SDC_N_HBR2, 0x2));
regmap_write(hdptx->regmap, 0x01b0,
FIELD_PREP(ROPLL_SDC_NUMERATOR, 0x3));