drm/amdgpu: enable swiotlb for gmc 10.0 (V2)
authorAaron Liu <aaron.liu@amd.com>
Tue, 19 Apr 2022 06:17:05 +0000 (14:17 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 25 Jul 2022 21:14:19 +0000 (17:14 -0400)
Enable swiotlb for gmc 10.0.
v2: include drm_cache.h to use the function ‘drm_need_swiotlb’

Signed-off-by: Aaron Liu <aaron.liu@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Reviewed-by: Huang Rui <ray.huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/gmc_v10_0.c

index 1772f00..9ae8cda 100644 (file)
@@ -22,6 +22,9 @@
  */
 #include <linux/firmware.h>
 #include <linux/pci.h>
+
+#include <drm/drm_cache.h>
+
 #include "amdgpu.h"
 #include "amdgpu_atomfirmware.h"
 #include "gmc_v10_0.h"
@@ -980,6 +983,8 @@ static int gmc_v10_0_sw_init(void *handle)
                return r;
        }
 
+       adev->need_swiotlb = drm_need_swiotlb(44);
+
        r = gmc_v10_0_mc_init(adev);
        if (r)
                return r;