drm/amdgpu: don't set s3 and s0ix at the same time
authorMario Limonciello <mario.limonciello@amd.com>
Wed, 29 Dec 2021 19:56:09 +0000 (13:56 -0600)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 7 Jan 2022 22:20:55 +0000 (17:20 -0500)
This makes it clearer which codepaths are in use specifically in
one state or the other.

Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
Acked-by: Evan Quan <evan.quan@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c

index 04f6da98ee59272cded85d8dc845df46b899b23e..366e475056bd7448a70f1e6d74848f895f9a3852 100644 (file)
@@ -2166,9 +2166,9 @@ static int amdgpu_pmops_suspend(struct device *dev)
 
        if (amdgpu_acpi_is_s0ix_active(adev))
                adev->in_s0ix = true;
-       adev->in_s3 = true;
+       else
+               adev->in_s3 = true;
        r = amdgpu_device_suspend(drm_dev, true);
-       adev->in_s3 = false;
        if (r)
                return r;
        if (!adev->in_s0ix)
@@ -2189,6 +2189,8 @@ static int amdgpu_pmops_resume(struct device *dev)
        r = amdgpu_device_resume(drm_dev, true);
        if (amdgpu_acpi_is_s0ix_active(adev))
                adev->in_s0ix = false;
+       else
+               adev->in_s3 = false;
        return r;
 }