disp: msm: sde: fix intf mux configuration
While programming intf block Mux configuration with binding ping pong, avoid clearing split select field as clearing this field would enable split by default. Change-Id: Iad2fa81969bc59abba4467f29661e62c63ba19c0 Signed-off-by: Prabhanjan Kandula <pkandula@codeaurora.org>
这个提交包含在:
@@ -478,10 +478,9 @@ static void sde_hw_intf_bind_pingpong_blk(
|
||||
|
||||
c = &intf->hw;
|
||||
|
||||
mux_cfg = SDE_REG_READ(c, INTF_MUX);
|
||||
mux_cfg &= ~0xf000f;
|
||||
|
||||
if (enable) {
|
||||
mux_cfg = SDE_REG_READ(c, INTF_MUX);
|
||||
mux_cfg &= ~0x0f;
|
||||
mux_cfg |= (pp - PINGPONG_0) & 0x7;
|
||||
/* Splitlink case, pp0->sublink0, pp1->sublink1 */
|
||||
if (intf->cfg.split_link_en)
|
||||
|
在新工单中引用
屏蔽一个用户