drm/amdgpu: check if we need to reset at init time (v2)
authorAlex Deucher <alexander.deucher@amd.com>
Thu, 1 Nov 2018 05:02:01 +0000 (00:02 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 14 Jan 2019 20:04:57 +0000 (15:04 -0500)
To deal with situations like kexec or GPU VM passthrough
where the device may have been used previously without a
proper GPU reset between.

v2: rebase

bug: https://bugs.freedesktop.org/show_bug.cgi?id=108585
bug: https://bugs.freedesktop.org/show_bug.cgi?id=108754
Reviewed-by: Evan Quan <evan.quan@amd.com>
Reviewed-by: Felix Kuehling <Felix.Kuehling@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_device.c

index 1a558dc41ba66ce795f563fb50a4a93a6dfb6401..8a61764e64cf8747136df976ce104b57fde89bf5 100644 (file)
@@ -2550,6 +2550,17 @@ int amdgpu_device_init(struct amdgpu_device *adev,
        /* detect if we are with an SRIOV vbios */
        amdgpu_device_detect_sriov_bios(adev);
 
+       /* check if we need to reset the asic
+        *  E.g., driver was not cleanly unloaded previously, etc.
+        */
+       if (amdgpu_asic_need_reset_on_init(adev)) {
+               r = amdgpu_asic_reset(adev);
+               if (r) {
+                       dev_err(adev->dev, "asic reset on init failed\n");
+                       goto failed;
+               }
+       }
+
        /* Post card if necessary */
        if (amdgpu_device_need_post(adev)) {
                if (!adev->bios) {