Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions drivers/gpu/drm/stm/ltdc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1134,6 +1134,14 @@ static void ltdc_encoder_enable(struct drm_encoder *encoder)

DRM_DEBUG_DRIVER("\n");

/*
* Set to default state the pinctrl only with DPI type.
* Others types like DSI, don't need pinctrl due to
* internal bridge (the signals do not come out of the chipset).
*/
if (encoder->encoder_type == DRM_MODE_ENCODER_DPI)
pinctrl_pm_select_default_state(ddev->dev);

/* Enable LTDC */
reg_set(ldev->regs, LTDC_GCR, GCR_LTDCEN);
}
Expand All @@ -1146,11 +1154,7 @@ static void ltdc_encoder_mode_set(struct drm_encoder *encoder,

DRM_DEBUG_DRIVER("\n");

/*
* Set to default state the pinctrl only with DPI type.
* Others types like DSI, don't need pinctrl due to
* internal bridge (the signals do not come out of the chipset).
*/
/* Set pinctrl to default as soon as possible */
if (encoder->encoder_type == DRM_MODE_ENCODER_DPI)
pinctrl_pm_select_default_state(ddev->dev);
}
Expand Down