Skip to content

Commit aefb64c

Browse files
alexdeucherallenlon
authored andcommitted
drm/amdgpu: don't enable runtime pm on navi12
BACO for power savings is not supported on navi12. Change-Id: I04a86cc4680ef5cc695cc49e7ebc3ed7d73f7a9d Signed-off-by: Alex Deucher <alexander.deucher@amd.com> Tested-by: Gang Long <gang.long@amd.com> Reviewed-by: Feifei Xu <Feifei.Xu@amd.com>
1 parent 4c3ea36 commit aefb64c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,8 @@ int amdgpu_driver_load_kms(struct drm_device *dev, unsigned long flags)
187187
(amdgpu_runtime_pm != 0) &&
188188
(adev->asic_type >= CHIP_TOPAZ) &&
189189
(adev->asic_type != CHIP_VEGA20) &&
190-
(adev->asic_type != CHIP_ARCTURUS)) /* enable runpm on VI+ */
190+
(adev->asic_type != CHIP_ARCTURUS) &&
191+
(adev->asic_type != CHIP_NAVI12)) /* enable runpm on VI+ */
191192
adev->runpm = true;
192193
else if (amdgpu_device_supports_baco(dev) &&
193194
(amdgpu_runtime_pm > 0)) /* enable runpm if runpm=1 on CI */

0 commit comments

Comments
 (0)