Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f7ea4189 authored by Alex Deucher's avatar Alex Deucher
Browse files

drm/radeon: use PCI_D3hot for PX systems without dGPU power control



On PX systems without dGPU power control, use PCI_D3hot.

Reviewed-by: default avatarHawking Zhang <Hawking.Zhang@amd.com>
Acked-by: default avatarChristian König <christian.koenig@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent e1052b35
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -407,7 +407,10 @@ static int radeon_pmops_runtime_suspend(struct device *dev)
	pci_save_state(pdev);
	pci_disable_device(pdev);
	pci_ignore_hotplug(pdev);
	if (radeon_has_atpx_dgpu_power_cntl())
		pci_set_power_state(pdev, PCI_D3cold);
	else
		pci_set_power_state(pdev, PCI_D3hot);
	drm_dev->switch_power_state = DRM_SWITCH_POWER_DYNAMIC_OFF;

	return 0;