diff options
| author | Yihan Zhu <[email protected]> | 2023-10-19 14:23:17 -0400 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2023-11-07 11:17:24 -0500 |
| commit | 85de32cd7b383f5d84195aed0c53e920e6786005 (patch) | |
| tree | 073b26e85541eb71d77d81dbf6e768820ba14766 | |
| parent | 81df7271688cf04a502e3bbd19d0395a986a89e1 (diff) | |
drm/amd/display: DCN35 Disable cm power optimization
[WHY & HOW]
Enabling SCE after boot up will cause color distortion.
Reviewed-by: Ovidiu Bunea <[email protected]>
Acked-by: Hersen Wu <[email protected]>
Signed-off-by: Yihan Zhu <[email protected]>
Tested-by: Daniel Wheeler <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
| -rw-r--r-- | drivers/gpu/drm/amd/display/dc/dcn35/dcn35_resource.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/dcn35/dcn35_resource.c b/drivers/gpu/drm/amd/display/dc/dcn35/dcn35_resource.c index 9699adf52e15..e35d4c028d01 100644 --- a/drivers/gpu/drm/amd/display/dc/dcn35/dcn35_resource.c +++ b/drivers/gpu/drm/amd/display/dc/dcn35/dcn35_resource.c @@ -708,7 +708,7 @@ static const struct dc_debug_options debug_defaults_drv = { .i2c = true, .dmcu = false, // This is previously known to cause hang on S3 cycles if enabled .dscl = true, - .cm = true, + .cm = false, .mpc = true, .optc = true, .vpg = true, |