提交 416062d0 编写于 作者: J Jani Nikula

drm/i915/dsi: run backlight on/off sequences in panel enable/disable hooks

Based on the documentation alone, it's anyone's guess when exactly we
should be running these sequences. Add them where it feels logical. The
drm panel hooks don't currently offer us more granularity anyway.
Reviewed-by: NVille Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: NJani Nikula <jani.nikula@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/267c4a2bde2076af18e9b8335c0bef2e26ea3112.1474286487.git.jani.nikula@intel.com
上级 b1cb1bd2
...@@ -477,12 +477,14 @@ static int vbt_panel_unprepare(struct drm_panel *panel) ...@@ -477,12 +477,14 @@ static int vbt_panel_unprepare(struct drm_panel *panel)
static int vbt_panel_enable(struct drm_panel *panel) static int vbt_panel_enable(struct drm_panel *panel)
{ {
generic_exec_sequence(panel, MIPI_SEQ_DISPLAY_ON); generic_exec_sequence(panel, MIPI_SEQ_DISPLAY_ON);
generic_exec_sequence(panel, MIPI_SEQ_BACKLIGHT_ON);
return 0; return 0;
} }
static int vbt_panel_disable(struct drm_panel *panel) static int vbt_panel_disable(struct drm_panel *panel)
{ {
generic_exec_sequence(panel, MIPI_SEQ_BACKLIGHT_OFF);
generic_exec_sequence(panel, MIPI_SEQ_DISPLAY_OFF); generic_exec_sequence(panel, MIPI_SEQ_DISPLAY_OFF);
return 0; return 0;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册