Explorar o código

drm/amdgpu: set runtime pm state to active on resume

The sbios always powers up the dGPU on resume.

Acked-by: Michel Dänzer <michel.daenzer@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Alex Deucher %!s(int64=9) %!d(string=hai) anos
pai
achega
85e154c22e
Modificáronse 1 ficheiros con 8 adicións e 0 borrados
  1. 8 0
      drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c

+ 8 - 0
drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c

@@ -482,6 +482,14 @@ static int amdgpu_pmops_resume(struct device *dev)
 {
 	struct pci_dev *pdev = to_pci_dev(dev);
 	struct drm_device *drm_dev = pci_get_drvdata(pdev);
+
+	/* GPU comes up enabled by the bios on resume */
+	if (amdgpu_device_is_px(drm_dev)) {
+		pm_runtime_disable(dev);
+		pm_runtime_set_active(dev);
+		pm_runtime_enable(dev);
+	}
+
 	return amdgpu_device_resume(drm_dev, true, true);
 }