aboutsummaryrefslogtreecommitdiffstats
path: root/common/recipes-kernel/linux/linux-yocto-4.14.71/5231-drm-amdgpu-remove-amdgpu_bo_gpu_accessible.patch
diff options
context:
space:
mode:
Diffstat (limited to 'common/recipes-kernel/linux/linux-yocto-4.14.71/5231-drm-amdgpu-remove-amdgpu_bo_gpu_accessible.patch')
-rw-r--r--common/recipes-kernel/linux/linux-yocto-4.14.71/5231-drm-amdgpu-remove-amdgpu_bo_gpu_accessible.patch52
1 files changed, 52 insertions, 0 deletions
diff --git a/common/recipes-kernel/linux/linux-yocto-4.14.71/5231-drm-amdgpu-remove-amdgpu_bo_gpu_accessible.patch b/common/recipes-kernel/linux/linux-yocto-4.14.71/5231-drm-amdgpu-remove-amdgpu_bo_gpu_accessible.patch
new file mode 100644
index 00000000..ce342e3f
--- /dev/null
+++ b/common/recipes-kernel/linux/linux-yocto-4.14.71/5231-drm-amdgpu-remove-amdgpu_bo_gpu_accessible.patch
@@ -0,0 +1,52 @@
+From 1067db605e056a9cf494cb57c4ebc9387c897cab Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Christian=20K=C3=B6nig?= <christian.koenig@amd.com>
+Date: Tue, 28 Aug 2018 13:44:32 +0200
+Subject: [PATCH 5231/5725] drm/amdgpu: remove amdgpu_bo_gpu_accessible
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Not used any more.
+
+Change-Id: I7330fe09c523fccad0668eade97a4a51b796b825
+Signed-off-by: Christian König <christian.koenig@amd.com>
+Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
+Reviewed-by: Felix Kuehling <Felix.Kuehling@amd.com>
+Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
+Signed-off-by: Raveendra Talabattula <raveendra.talabattula@amd.com>
+---
+ drivers/gpu/drm/amd/amdgpu/amdgpu_object.h | 18 ------------------
+ 1 file changed, 18 deletions(-)
+
+diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.h
+index ae4d06c..bd953bf 100755
+--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.h
++++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.h
+@@ -197,24 +197,6 @@ static inline u64 amdgpu_bo_mmap_offset(struct amdgpu_bo *bo)
+ }
+
+ /**
+- * amdgpu_bo_gpu_accessible - return whether the bo is currently in memory that
+- * is accessible to the GPU.
+- */
+-static inline bool amdgpu_bo_gpu_accessible(struct amdgpu_bo *bo)
+-{
+- switch (bo->tbo.mem.mem_type) {
+- case TTM_PL_TT: return amdgpu_gtt_mgr_has_gart_addr(&bo->tbo.mem);
+-
+- case TTM_PL_VRAM:
+- case AMDGPU_PL_DGMA:
+- case AMDGPU_PL_DGMA_IMPORT:
+- return true;
+-
+- default: return false;
+- }
+-}
+-
+-/**
+ * amdgpu_bo_in_cpu_visible_vram - check if BO is (partly) in visible VRAM
+ */
+ static inline bool amdgpu_bo_in_cpu_visible_vram(struct amdgpu_bo *bo)
+--
+2.7.4
+