aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWyatt Wood <[email protected]>2020-02-28 10:45:39 -0500
committerAlex Deucher <[email protected]>2020-03-19 00:03:04 -0400
commit8defa1a3f7c6a7f4628396ec15f10950ef0ce790 (patch)
tree4fc250bf933f8c8b5fa4314b067b35368a1b6fee
parentf0a574c9dfcbeb3d7f1be7cd07ff46192cedf1fb (diff)
drm/amd/display: Fallback to dmcub for psr when dmcu is disabled
[Why] We want to be able to enable/disable psr on dmcub and fallback to dmcu when necessary. [How] Use dc config option to do so. Signed-off-by: Wyatt Wood <[email protected]> Reviewed-by: Nicholas Kazlauskas <[email protected]> Acked-by: Rodrigo Siqueira <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
-rw-r--r--drivers/gpu/drm/amd/display/dc/dcn21/dcn21_resource.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/dcn21/dcn21_resource.c b/drivers/gpu/drm/amd/display/dc/dcn21/dcn21_resource.c
index 37f9a71eb4c1..51b5910cd05f 100644
--- a/drivers/gpu/drm/amd/display/dc/dcn21/dcn21_resource.c
+++ b/drivers/gpu/drm/amd/display/dc/dcn21/dcn21_resource.c
@@ -1864,7 +1864,7 @@ static bool dcn21_resource_construct(
goto create_fail;
}
- if (dc->config.psr_on_dmub) {
+ if (dc->debug.disable_dmcu) {
pool->base.psr = dmub_psr_create(ctx);
if (pool->base.psr == NULL) {