diff options
author | Roman Li <Roman.Li@amd.com> | 2019-08-08 16:26:44 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2019-08-29 15:52:34 -0500 |
commit | e1c14c43395c54c213a6bd415ba2db50fe503598 (patch) | |
tree | 0b4b1fa5fc867406b257ebf2b4c14d54e8f16a27 /drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | |
parent | 542816ff168d8a3159dedfd10a5579e7d04f2130 (diff) | |
download | linux-e1c14c43395c54c213a6bd415ba2db50fe503598.tar.bz2 |
drm/amdgpu: Enable DC on Renoir
Enable DC support for renoir.
Acked-by: Harry Wentland <harry.wentland@amd.com>
Signed-off-by: Roman Li <Roman.Li@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_device.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c index b8c33df3f4c0..4ac9604acc6f 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c @@ -2519,6 +2519,9 @@ bool amdgpu_device_asic_has_dc_support(enum amd_asic_type asic_type) case CHIP_NAVI14: case CHIP_NAVI12: #endif +#if defined(CONFIG_DRM_AMD_DC_DCN2_1) + case CHIP_RENOIR: +#endif return amdgpu_dc != 0; #endif default: |