Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2009 VMware, Inc. |
| 3 | * |
| 4 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 5 | * copy of this software and associated documentation files (the "Software"), |
| 6 | * to deal in the Software without restriction, including without limitation |
| 7 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 8 | * and/or sell copies of the Software, and to permit persons to whom the |
| 9 | * Software is furnished to do so, subject to the following conditions: |
| 10 | * |
| 11 | * The above copyright notice and this permission notice shall be included in |
| 12 | * all copies or substantial portions of the Software. |
| 13 | * |
| 14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 15 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 16 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 17 | * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR |
| 18 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
| 19 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
| 20 | * OTHER DEALINGS IN THE SOFTWARE. |
| 21 | * |
| 22 | * Authors: Michel Dänzer |
| 23 | */ |
| 24 | #include <drm/drmP.h> |
| 25 | #include <drm/amdgpu_drm.h> |
| 26 | #include "amdgpu.h" |
| 27 | #include "amdgpu_uvd.h" |
| 28 | #include "amdgpu_vce.h" |
| 29 | |
| 30 | /* Test BO GTT->VRAM and VRAM->GTT GPU copies across the whole GTT aperture */ |
| 31 | static void amdgpu_do_test_moves(struct amdgpu_device *adev) |
| 32 | { |
| 33 | struct amdgpu_ring *ring = adev->mman.buffer_funcs_ring; |
| 34 | struct amdgpu_bo *vram_obj = NULL; |
| 35 | struct amdgpu_bo **gtt_obj = NULL; |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 36 | uint64_t gart_addr, vram_addr; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 37 | unsigned n, size; |
| 38 | int i, r; |
| 39 | |
| 40 | size = 1024 * 1024; |
| 41 | |
| 42 | /* Number of tests = |
| 43 | * (Total GTT - IB pool - writeback page - ring buffers) / test size |
| 44 | */ |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 45 | n = adev->mc.gart_size - AMDGPU_IB_POOL_SIZE*64*1024; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 46 | for (i = 0; i < AMDGPU_MAX_RINGS; ++i) |
| 47 | if (adev->rings[i]) |
| 48 | n -= adev->rings[i]->ring_size; |
| 49 | if (adev->wb.wb_obj) |
| 50 | n -= AMDGPU_GPU_PAGE_SIZE; |
| 51 | if (adev->irq.ih.ring_obj) |
| 52 | n -= adev->irq.ih.ring_size; |
| 53 | n /= size; |
| 54 | |
| 55 | gtt_obj = kzalloc(n * sizeof(*gtt_obj), GFP_KERNEL); |
| 56 | if (!gtt_obj) { |
| 57 | DRM_ERROR("Failed to allocate %d pointers\n", n); |
| 58 | r = 1; |
| 59 | goto out_cleanup; |
| 60 | } |
| 61 | |
Christian König | 72d7668 | 2015-09-03 17:34:59 +0200 | [diff] [blame] | 62 | r = amdgpu_bo_create(adev, size, PAGE_SIZE, true, |
| 63 | AMDGPU_GEM_DOMAIN_VRAM, 0, |
| 64 | NULL, NULL, &vram_obj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 65 | if (r) { |
| 66 | DRM_ERROR("Failed to create VRAM object\n"); |
| 67 | goto out_cleanup; |
| 68 | } |
| 69 | r = amdgpu_bo_reserve(vram_obj, false); |
| 70 | if (unlikely(r != 0)) |
| 71 | goto out_unref; |
| 72 | r = amdgpu_bo_pin(vram_obj, AMDGPU_GEM_DOMAIN_VRAM, &vram_addr); |
| 73 | if (r) { |
| 74 | DRM_ERROR("Failed to pin VRAM object\n"); |
| 75 | goto out_unres; |
| 76 | } |
| 77 | for (i = 0; i < n; i++) { |
| 78 | void *gtt_map, *vram_map; |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 79 | void **gart_start, **gart_end; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 80 | void **vram_start, **vram_end; |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 81 | struct dma_fence *fence = NULL; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 82 | |
| 83 | r = amdgpu_bo_create(adev, size, PAGE_SIZE, true, |
Christian König | 72d7668 | 2015-09-03 17:34:59 +0200 | [diff] [blame] | 84 | AMDGPU_GEM_DOMAIN_GTT, 0, NULL, |
| 85 | NULL, gtt_obj + i); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 86 | if (r) { |
| 87 | DRM_ERROR("Failed to create GTT object %d\n", i); |
| 88 | goto out_lclean; |
| 89 | } |
| 90 | |
| 91 | r = amdgpu_bo_reserve(gtt_obj[i], false); |
| 92 | if (unlikely(r != 0)) |
| 93 | goto out_lclean_unref; |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 94 | r = amdgpu_bo_pin(gtt_obj[i], AMDGPU_GEM_DOMAIN_GTT, &gart_addr); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 95 | if (r) { |
| 96 | DRM_ERROR("Failed to pin GTT object %d\n", i); |
| 97 | goto out_lclean_unres; |
| 98 | } |
| 99 | |
| 100 | r = amdgpu_bo_kmap(gtt_obj[i], >t_map); |
| 101 | if (r) { |
| 102 | DRM_ERROR("Failed to map GTT object %d\n", i); |
| 103 | goto out_lclean_unpin; |
| 104 | } |
| 105 | |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 106 | for (gart_start = gtt_map, gart_end = gtt_map + size; |
| 107 | gart_start < gart_end; |
| 108 | gart_start++) |
| 109 | *gart_start = gart_start; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 110 | |
| 111 | amdgpu_bo_kunmap(gtt_obj[i]); |
| 112 | |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 113 | r = amdgpu_copy_buffer(ring, gart_addr, vram_addr, |
Christian König | fc9c8f5 | 2017-06-29 11:46:15 +0200 | [diff] [blame] | 114 | size, NULL, &fence, false, false); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 115 | |
| 116 | if (r) { |
| 117 | DRM_ERROR("Failed GTT->VRAM copy %d\n", i); |
| 118 | goto out_lclean_unpin; |
| 119 | } |
| 120 | |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 121 | r = dma_fence_wait(fence, false); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 122 | if (r) { |
| 123 | DRM_ERROR("Failed to wait for GTT->VRAM fence %d\n", i); |
| 124 | goto out_lclean_unpin; |
| 125 | } |
| 126 | |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 127 | dma_fence_put(fence); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 128 | |
| 129 | r = amdgpu_bo_kmap(vram_obj, &vram_map); |
| 130 | if (r) { |
| 131 | DRM_ERROR("Failed to map VRAM object after copy %d\n", i); |
| 132 | goto out_lclean_unpin; |
| 133 | } |
| 134 | |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 135 | for (gart_start = gtt_map, gart_end = gtt_map + size, |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 136 | vram_start = vram_map, vram_end = vram_map + size; |
| 137 | vram_start < vram_end; |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 138 | gart_start++, vram_start++) { |
| 139 | if (*vram_start != gart_start) { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 140 | DRM_ERROR("Incorrect GTT->VRAM copy %d: Got 0x%p, " |
| 141 | "expected 0x%p (GTT/VRAM offset " |
| 142 | "0x%16llx/0x%16llx)\n", |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 143 | i, *vram_start, gart_start, |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 144 | (unsigned long long) |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 145 | (gart_addr - adev->mc.gart_start + |
| 146 | (void*)gart_start - gtt_map), |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 147 | (unsigned long long) |
| 148 | (vram_addr - adev->mc.vram_start + |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 149 | (void*)gart_start - gtt_map)); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 150 | amdgpu_bo_kunmap(vram_obj); |
| 151 | goto out_lclean_unpin; |
| 152 | } |
| 153 | *vram_start = vram_start; |
| 154 | } |
| 155 | |
| 156 | amdgpu_bo_kunmap(vram_obj); |
| 157 | |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 158 | r = amdgpu_copy_buffer(ring, vram_addr, gart_addr, |
Christian König | fc9c8f5 | 2017-06-29 11:46:15 +0200 | [diff] [blame] | 159 | size, NULL, &fence, false, false); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 160 | |
| 161 | if (r) { |
| 162 | DRM_ERROR("Failed VRAM->GTT copy %d\n", i); |
| 163 | goto out_lclean_unpin; |
| 164 | } |
| 165 | |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 166 | r = dma_fence_wait(fence, false); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 167 | if (r) { |
| 168 | DRM_ERROR("Failed to wait for VRAM->GTT fence %d\n", i); |
| 169 | goto out_lclean_unpin; |
| 170 | } |
| 171 | |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 172 | dma_fence_put(fence); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 173 | |
| 174 | r = amdgpu_bo_kmap(gtt_obj[i], >t_map); |
| 175 | if (r) { |
| 176 | DRM_ERROR("Failed to map GTT object after copy %d\n", i); |
| 177 | goto out_lclean_unpin; |
| 178 | } |
| 179 | |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 180 | for (gart_start = gtt_map, gart_end = gtt_map + size, |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 181 | vram_start = vram_map, vram_end = vram_map + size; |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 182 | gart_start < gart_end; |
| 183 | gart_start++, vram_start++) { |
| 184 | if (*gart_start != vram_start) { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 185 | DRM_ERROR("Incorrect VRAM->GTT copy %d: Got 0x%p, " |
| 186 | "expected 0x%p (VRAM/GTT offset " |
| 187 | "0x%16llx/0x%16llx)\n", |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 188 | i, *gart_start, vram_start, |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 189 | (unsigned long long) |
| 190 | (vram_addr - adev->mc.vram_start + |
| 191 | (void*)vram_start - vram_map), |
| 192 | (unsigned long long) |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 193 | (gart_addr - adev->mc.gart_start + |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 194 | (void*)vram_start - vram_map)); |
| 195 | amdgpu_bo_kunmap(gtt_obj[i]); |
| 196 | goto out_lclean_unpin; |
| 197 | } |
| 198 | } |
| 199 | |
| 200 | amdgpu_bo_kunmap(gtt_obj[i]); |
| 201 | |
| 202 | DRM_INFO("Tested GTT->VRAM and VRAM->GTT copy for GTT offset 0x%llx\n", |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 203 | gart_addr - adev->mc.gart_start); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 204 | continue; |
| 205 | |
| 206 | out_lclean_unpin: |
| 207 | amdgpu_bo_unpin(gtt_obj[i]); |
| 208 | out_lclean_unres: |
| 209 | amdgpu_bo_unreserve(gtt_obj[i]); |
| 210 | out_lclean_unref: |
| 211 | amdgpu_bo_unref(>t_obj[i]); |
| 212 | out_lclean: |
| 213 | for (--i; i >= 0; --i) { |
| 214 | amdgpu_bo_unpin(gtt_obj[i]); |
| 215 | amdgpu_bo_unreserve(gtt_obj[i]); |
| 216 | amdgpu_bo_unref(>t_obj[i]); |
| 217 | } |
| 218 | if (fence) |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 219 | dma_fence_put(fence); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 220 | break; |
| 221 | } |
| 222 | |
| 223 | amdgpu_bo_unpin(vram_obj); |
| 224 | out_unres: |
| 225 | amdgpu_bo_unreserve(vram_obj); |
| 226 | out_unref: |
| 227 | amdgpu_bo_unref(&vram_obj); |
| 228 | out_cleanup: |
| 229 | kfree(gtt_obj); |
| 230 | if (r) { |
Joe Perches | 7ca8529 | 2017-02-28 04:55:52 -0800 | [diff] [blame] | 231 | pr_warn("Error while testing BO move\n"); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 232 | } |
| 233 | } |
| 234 | |
| 235 | void amdgpu_test_moves(struct amdgpu_device *adev) |
| 236 | { |
| 237 | if (adev->mman.buffer_funcs) |
| 238 | amdgpu_do_test_moves(adev); |
| 239 | } |