[PATCH v3] drm/radeon: Fix EEH during kexec

2019-10-25 Thread KyleMahlkuch
From: Kyle Mahlkuch 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. Enabled only on PPC because this patch causes issues on some other boards. Signed-off-by: Kyle Mahlkuch ---

[PATCH v3] drm/radeon: Fix EEH during kexec

2019-10-10 Thread KyleMahlkuch
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. Enabled only on PPC because this patch causes issues on some other boards. Signed-off-by: Kyle Mahlkuch ---

[PATCH v2] drm/radeon: Fix EEH during kexec

2019-07-31 Thread KyleMahlkuch
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: Kyle Mahlkuch --- drivers/gpu/drm/radeon/radeon_drv.c | 8 1 file changed, 8 insertions(+) diff --git

[PATCH] drm/radeon: Fix EEH during kexec

2019-07-16 Thread KyleMahlkuch
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. Since radeon.h is now included in radeon_drv.c radeon_init() needs a new name. I chose radeon_initl(). This can be changed if there is

[PATCH] Fix EEH during kexec

2019-07-05 Thread KyleMahlkuch
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. Since radeon.h is now included in radeon_drv.c radeon_init() needs a new name. I chose radeon_initl(). This can be changed if there is