diff options
author | Mario Limonciello <mario.limonciello@amd.com> | 2022-01-26 06:35:09 +0300 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2022-02-03 02:26:30 +0300 |
commit | 18b66ace6b3acb01b645d2fbbd571f66b2705c71 (patch) | |
tree | e33edff0411b1cae5ea94279750f516782512a45 /drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c | |
parent | f588a1bbfce781042196e68f8e200f08b3d9e8c4 (diff) | |
download | linux-18b66ace6b3acb01b645d2fbbd571f66b2705c71.tar.xz |
drm/amd: add support to check whether the system is set to s3
This will be used to help make decisions on what to do in
misconfigured systems.
v2: squash in semicolon fix from Stephen Rothwell
Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c index b19d40751802..0e12315fa0cb 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c @@ -1033,6 +1033,19 @@ void amdgpu_acpi_detect(void) #if IS_ENABLED(CONFIG_SUSPEND) /** + * amdgpu_acpi_is_s3_active + * + * @adev: amdgpu_device_pointer + * + * returns true if supported, false if not. + */ +bool amdgpu_acpi_is_s3_active(struct amdgpu_device *adev) +{ + return !(adev->flags & AMD_IS_APU) || + (pm_suspend_target_state == PM_SUSPEND_MEM); +} + +/** * amdgpu_acpi_is_s0ix_active * * @adev: amdgpu_device_pointer |