summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKyleMahlkuch <kmahlkuc@linux.vnet.ibm.com>2019-07-31 17:10:14 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-10-07 18:54:58 +0200
commit09a0e83e032672d80dfc7ade5759712342cc4b63 (patch)
tree1f7f45bd0b897537e8799c4e2e51d467338b562b
parent3ba3b24a8f3d5e425edd58ffb785c77b892b0a04 (diff)
downloadlinux-stable-09a0e83e032672d80dfc7ade5759712342cc4b63.tar.gz
linux-stable-09a0e83e032672d80dfc7ade5759712342cc4b63.tar.bz2
linux-stable-09a0e83e032672d80dfc7ade5759712342cc4b63.zip
drm/radeon: Fix EEH during kexec
[ Upstream commit 6f7fe9a93e6c09bf988c5059403f5f88e17e21e6 ] During kexec some adapters hit an EEH since they are not properly shut down in the radeon_pci_shutdown() function. Adding radeon_suspend_kms() fixes this issue. Signed-off-by: KyleMahlkuch <kmahlkuc@linux.vnet.ibm.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
-rw-r--r--drivers/gpu/drm/radeon/radeon_drv.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_drv.c b/drivers/gpu/drm/radeon/radeon_drv.c
index f4becad0a78c..54d97dd5780a 100644
--- a/drivers/gpu/drm/radeon/radeon_drv.c
+++ b/drivers/gpu/drm/radeon/radeon_drv.c
@@ -368,11 +368,19 @@ radeon_pci_remove(struct pci_dev *pdev)
static void
radeon_pci_shutdown(struct pci_dev *pdev)
{
+ struct drm_device *ddev = pci_get_drvdata(pdev);
+
/* if we are running in a VM, make sure the device
* torn down properly on reboot/shutdown
*/
if (radeon_device_is_virtual())
radeon_pci_remove(pdev);
+
+ /* Some adapters need to be suspended before a
+ * shutdown occurs in order to prevent an error
+ * during kexec.
+ */
+ radeon_suspend_kms(ddev, true, true, false);
}
static int radeon_pmops_suspend(struct device *dev)