Skip to content

Commit 7d32463

Browse files
diandersmmind
authored andcommitted
drm/rockchip: dw_hdmi: Set cur_ctr to 0 always
Jitter was improved by lowering the MPLL bandwidth to account for high frequency noise in the rk3288 PLL. In each case MPLL bandwidth was lowered only enough to get us a comfortable margin. We believe that lowering the bandwidth like this is safe given sufficient testing. Signed-off-by: Douglas Anderson <[email protected]> Signed-off-by: Yakir Yang <[email protected]> Signed-off-by: Jonas Karlman <[email protected]> Signed-off-by: Heiko Stuebner <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
1 parent b60c86d commit 7d32463

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

drivers/gpu/drm/rockchip/dw_hdmi-rockchip.c

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -179,23 +179,9 @@ static const struct dw_hdmi_mpll_config rockchip_mpll_cfg[] = {
179179
static const struct dw_hdmi_curr_ctrl rockchip_cur_ctr[] = {
180180
/* pixelclk bpp8 bpp10 bpp12 */
181181
{
182-
40000000, { 0x0018, 0x0018, 0x0018 },
183-
}, {
184-
65000000, { 0x0028, 0x0028, 0x0028 },
185-
}, {
186-
66000000, { 0x0038, 0x0038, 0x0038 },
187-
}, {
188-
74250000, { 0x0028, 0x0038, 0x0038 },
189-
}, {
190-
83500000, { 0x0028, 0x0038, 0x0038 },
191-
}, {
192-
146250000, { 0x0038, 0x0038, 0x0038 },
193-
}, {
194-
148500000, { 0x0000, 0x0038, 0x0038 },
195-
}, {
196182
600000000, { 0x0000, 0x0000, 0x0000 },
197183
}, {
198-
~0UL, { 0x0000, 0x0000, 0x0000},
184+
~0UL, { 0x0000, 0x0000, 0x0000 },
199185
}
200186
};
201187

0 commit comments

Comments
 (0)