aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
diff options
context:
space:
mode:
authorChristian König <christian.koenig@amd.com>2018-02-19 08:47:55 -0500
committerAlex Deucher <alexander.deucher@amd.com>2018-03-07 16:10:12 -0500
commit87e90c76e0d7b644edd096eb4879f1b376d7274f (patch)
tree68148820c6c980d03d37bf5e8f108b5b1b5b77f6 /drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
parent37a94791a0977500e4309fc03e4b2513384eaa6d (diff)
drm/amdgpu: add amdgpu_evict_gtt debugfs entry
Allow evicting all BOs from the GTT domain. Signed-off-by: Christian König <christian.koenig@amd.com> Reviewed-by: Alex Deucher <alexdeucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
index ee76b468774a..369beb5041a2 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
@@ -767,10 +767,21 @@ static int amdgpu_debugfs_evict_vram(struct seq_file *m, void *data)
767 return 0; 767 return 0;
768} 768}
769 769
770static int amdgpu_debugfs_evict_gtt(struct seq_file *m, void *data)
771{
772 struct drm_info_node *node = (struct drm_info_node *)m->private;
773 struct drm_device *dev = node->minor->dev;
774 struct amdgpu_device *adev = dev->dev_private;
775
776 seq_printf(m, "(%d)\n", ttm_bo_evict_mm(&adev->mman.bdev, TTM_PL_TT));
777 return 0;
778}
779
770static const struct drm_info_list amdgpu_debugfs_list[] = { 780static const struct drm_info_list amdgpu_debugfs_list[] = {
771 {"amdgpu_vbios", amdgpu_debugfs_get_vbios_dump}, 781 {"amdgpu_vbios", amdgpu_debugfs_get_vbios_dump},
772 {"amdgpu_test_ib", &amdgpu_debugfs_test_ib}, 782 {"amdgpu_test_ib", &amdgpu_debugfs_test_ib},
773 {"amdgpu_evict_vram", &amdgpu_debugfs_evict_vram} 783 {"amdgpu_evict_vram", &amdgpu_debugfs_evict_vram},
784 {"amdgpu_evict_gtt", &amdgpu_debugfs_evict_gtt},
774}; 785};
775 786
776int amdgpu_debugfs_init(struct amdgpu_device *adev) 787int amdgpu_debugfs_init(struct amdgpu_device *adev)