blob: 3c4d7574d704ea5915d0195043715676a33a3a04 [file] [log] [blame]
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001/*
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 */
31static 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önig6f02a692017-07-07 11:56:59 +020036 uint64_t gart_addr, vram_addr;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040037 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önig6f02a692017-07-07 11:56:59 +020045 n = adev->mc.gart_size - AMDGPU_IB_POOL_SIZE*64*1024;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040046 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önig72d76682015-09-03 17:34:59 +020062 r = amdgpu_bo_create(adev, size, PAGE_SIZE, true,
63 AMDGPU_GEM_DOMAIN_VRAM, 0,
64 NULL, NULL, &vram_obj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -040065 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önig6f02a692017-07-07 11:56:59 +020079 void **gart_start, **gart_end;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040080 void **vram_start, **vram_end;
Chris Wilsonf54d1862016-10-25 13:00:45 +010081 struct dma_fence *fence = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040082
83 r = amdgpu_bo_create(adev, size, PAGE_SIZE, true,
Christian König72d76682015-09-03 17:34:59 +020084 AMDGPU_GEM_DOMAIN_GTT, 0, NULL,
85 NULL, gtt_obj + i);
Alex Deucherd38ceaf2015-04-20 16:55:21 -040086 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önig6f02a692017-07-07 11:56:59 +020094 r = amdgpu_bo_pin(gtt_obj[i], AMDGPU_GEM_DOMAIN_GTT, &gart_addr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -040095 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], &gtt_map);
101 if (r) {
102 DRM_ERROR("Failed to map GTT object %d\n", i);
103 goto out_lclean_unpin;
104 }
105
Christian König6f02a692017-07-07 11:56:59 +0200106 for (gart_start = gtt_map, gart_end = gtt_map + size;
107 gart_start < gart_end;
108 gart_start++)
109 *gart_start = gart_start;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400110
111 amdgpu_bo_kunmap(gtt_obj[i]);
112
Christian König6f02a692017-07-07 11:56:59 +0200113 r = amdgpu_copy_buffer(ring, gart_addr, vram_addr,
Christian Königfc9c8f52017-06-29 11:46:15 +0200114 size, NULL, &fence, false, false);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400115
116 if (r) {
117 DRM_ERROR("Failed GTT->VRAM copy %d\n", i);
118 goto out_lclean_unpin;
119 }
120
Chris Wilsonf54d1862016-10-25 13:00:45 +0100121 r = dma_fence_wait(fence, false);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400122 if (r) {
123 DRM_ERROR("Failed to wait for GTT->VRAM fence %d\n", i);
124 goto out_lclean_unpin;
125 }
126
Chris Wilsonf54d1862016-10-25 13:00:45 +0100127 dma_fence_put(fence);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400128
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önig6f02a692017-07-07 11:56:59 +0200135 for (gart_start = gtt_map, gart_end = gtt_map + size,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400136 vram_start = vram_map, vram_end = vram_map + size;
137 vram_start < vram_end;
Christian König6f02a692017-07-07 11:56:59 +0200138 gart_start++, vram_start++) {
139 if (*vram_start != gart_start) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400140 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önig6f02a692017-07-07 11:56:59 +0200143 i, *vram_start, gart_start,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400144 (unsigned long long)
Christian König6f02a692017-07-07 11:56:59 +0200145 (gart_addr - adev->mc.gart_start +
146 (void*)gart_start - gtt_map),
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400147 (unsigned long long)
148 (vram_addr - adev->mc.vram_start +
Christian König6f02a692017-07-07 11:56:59 +0200149 (void*)gart_start - gtt_map));
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400150 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önig6f02a692017-07-07 11:56:59 +0200158 r = amdgpu_copy_buffer(ring, vram_addr, gart_addr,
Christian Königfc9c8f52017-06-29 11:46:15 +0200159 size, NULL, &fence, false, false);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400160
161 if (r) {
162 DRM_ERROR("Failed VRAM->GTT copy %d\n", i);
163 goto out_lclean_unpin;
164 }
165
Chris Wilsonf54d1862016-10-25 13:00:45 +0100166 r = dma_fence_wait(fence, false);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400167 if (r) {
168 DRM_ERROR("Failed to wait for VRAM->GTT fence %d\n", i);
169 goto out_lclean_unpin;
170 }
171
Chris Wilsonf54d1862016-10-25 13:00:45 +0100172 dma_fence_put(fence);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400173
174 r = amdgpu_bo_kmap(gtt_obj[i], &gtt_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önig6f02a692017-07-07 11:56:59 +0200180 for (gart_start = gtt_map, gart_end = gtt_map + size,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400181 vram_start = vram_map, vram_end = vram_map + size;
Christian König6f02a692017-07-07 11:56:59 +0200182 gart_start < gart_end;
183 gart_start++, vram_start++) {
184 if (*gart_start != vram_start) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400185 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önig6f02a692017-07-07 11:56:59 +0200188 i, *gart_start, vram_start,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400189 (unsigned long long)
190 (vram_addr - adev->mc.vram_start +
191 (void*)vram_start - vram_map),
192 (unsigned long long)
Christian König6f02a692017-07-07 11:56:59 +0200193 (gart_addr - adev->mc.gart_start +
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400194 (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önig6f02a692017-07-07 11:56:59 +0200203 gart_addr - adev->mc.gart_start);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400204 continue;
205
206out_lclean_unpin:
207 amdgpu_bo_unpin(gtt_obj[i]);
208out_lclean_unres:
209 amdgpu_bo_unreserve(gtt_obj[i]);
210out_lclean_unref:
211 amdgpu_bo_unref(&gtt_obj[i]);
212out_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(&gtt_obj[i]);
217 }
218 if (fence)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100219 dma_fence_put(fence);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400220 break;
221 }
222
223 amdgpu_bo_unpin(vram_obj);
224out_unres:
225 amdgpu_bo_unreserve(vram_obj);
226out_unref:
227 amdgpu_bo_unref(&vram_obj);
228out_cleanup:
229 kfree(gtt_obj);
230 if (r) {
Joe Perches7ca85292017-02-28 04:55:52 -0800231 pr_warn("Error while testing BO move\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400232 }
233}
234
235void amdgpu_test_moves(struct amdgpu_device *adev)
236{
237 if (adev->mman.buffer_funcs)
238 amdgpu_do_test_moves(adev);
239}