summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/amd/display/dc/dce/dmub_psr.h
diff options
context:
space:
mode:
authorWyatt Wood <wyatt.wood@amd.com>2020-09-11 04:50:52 +0300
committerAlex Deucher <alexander.deucher@amd.com>2020-09-22 19:28:49 +0300
commita9edc81564c92b4d86670b722bbe8906e0dfd934 (patch)
treed5cc66ba1c76bdcc38c1da8efd9ea75bad23e1d9 /drivers/gpu/drm/amd/display/dc/dce/dmub_psr.h
parentb50d55517da2c79cb9045bc175bcbf99098a0e28 (diff)
downloadlinux-a9edc81564c92b4d86670b722bbe8906e0dfd934.tar.xz
drm/amd/display: Implement PSR wait for enable/disable
[Why] For DMUB implementation of PSR, the 'wait' parameter, used to determine if driver should wait for PSR enable/disable, is not implemented correctly. [How] Implement wait for PSR enable/disable. Signed-off-by: Wyatt Wood <wyatt.wood@amd.com> Reviewed-by: Anthony Koo <Anthony.Koo@amd.com> Acked-by: Qingqing Zhuo <qingqing.zhuo@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/display/dc/dce/dmub_psr.h')
-rw-r--r--drivers/gpu/drm/amd/display/dc/dce/dmub_psr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/dce/dmub_psr.h b/drivers/gpu/drm/amd/display/dc/dce/dmub_psr.h
index f404fecd6410..dc121ed92d2e 100644
--- a/drivers/gpu/drm/amd/display/dc/dce/dmub_psr.h
+++ b/drivers/gpu/drm/amd/display/dc/dce/dmub_psr.h
@@ -36,7 +36,7 @@ struct dmub_psr {
struct dmub_psr_funcs {
bool (*psr_copy_settings)(struct dmub_psr *dmub, struct dc_link *link, struct psr_context *psr_context);
- void (*psr_enable)(struct dmub_psr *dmub, bool enable);
+ void (*psr_enable)(struct dmub_psr *dmub, bool enable, bool wait);
void (*psr_get_state)(struct dmub_psr *dmub, uint32_t *psr_state);
void (*psr_set_level)(struct dmub_psr *dmub, uint16_t psr_level);
};