disp: msm: dsi: unify dynamic clk support for command mode
Currently the dynamic bit clock switch trigger for command mode is supported via sysfs node. This might lead to unnecessary race conditions, when dsi driver is enabling the dsi bit clock as part of commit and at the same time if bit rate change via sysfs happens. So make the trigger happens via kernel mode set call as done for video mode. Change-Id: I17acb408d2b6dbd6fa41994e56262e31e43d088b Signed-off-by: Ritesh Kumar <riteshk@codeaurora.org> Signed-off-by: Yujun Zhang <yujunzhang@codeaurora.org>
这个提交包含在:
@@ -231,7 +231,8 @@ static void dsi_bridge_enable(struct drm_bridge *bridge)
|
||||
}
|
||||
|
||||
if (c_bridge->dsi_mode.dsi_mode_flags &
|
||||
(DSI_MODE_FLAG_SEAMLESS | DSI_MODE_FLAG_VRR)) {
|
||||
(DSI_MODE_FLAG_SEAMLESS | DSI_MODE_FLAG_VRR |
|
||||
DSI_MODE_FLAG_DYN_CLK)) {
|
||||
pr_debug("[%d] seamless enable\n", c_bridge->id);
|
||||
return;
|
||||
}
|
||||
|
在新工单中引用
屏蔽一个用户