1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30#include <drm/drm_debugfs.h>
31#include <drm/drm_file.h>
32
33#include "radeon.h"
34
35
36
37
38
39
40
41
42
43
44static int radeon_debugfs_sa_init(struct radeon_device *rdev);
45
46
47
48
49
50
51
52
53
54
55
56
57
58int radeon_ib_get(struct radeon_device *rdev, int ring,
59 struct radeon_ib *ib, struct radeon_vm *vm,
60 unsigned size)
61{
62 int r;
63
64 r = radeon_sa_bo_new(rdev, &rdev->ring_tmp_bo, &ib->sa_bo, size, 256);
65 if (r) {
66 dev_err(rdev->dev, "failed to get a new IB (%d)\n", r);
67 return r;
68 }
69
70 radeon_sync_create(&ib->sync);
71
72 ib->ring = ring;
73 ib->fence = NULL;
74 ib->ptr = radeon_sa_bo_cpu_addr(ib->sa_bo);
75 ib->vm = vm;
76 if (vm) {
77
78
79
80 ib->gpu_addr = ib->sa_bo->soffset + RADEON_VA_IB_OFFSET;
81 } else {
82 ib->gpu_addr = radeon_sa_bo_gpu_addr(ib->sa_bo);
83 }
84 ib->is_const_ib = false;
85
86 return 0;
87}
88
89
90
91
92
93
94
95
96
97void radeon_ib_free(struct radeon_device *rdev, struct radeon_ib *ib)
98{
99 radeon_sync_free(rdev, &ib->sync, ib->fence);
100 radeon_sa_bo_free(rdev, &ib->sa_bo, ib->fence);
101 radeon_fence_unref(&ib->fence);
102}
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125int radeon_ib_schedule(struct radeon_device *rdev, struct radeon_ib *ib,
126 struct radeon_ib *const_ib, bool hdp_flush)
127{
128 struct radeon_ring *ring = &rdev->ring[ib->ring];
129 int r = 0;
130
131 if (!ib->length_dw || !ring->ready) {
132
133 dev_err(rdev->dev, "couldn't schedule ib\n");
134 return -EINVAL;
135 }
136
137
138 r = radeon_ring_lock(rdev, ring, 64 + RADEON_NUM_SYNCS * 8);
139 if (r) {
140 dev_err(rdev->dev, "scheduling IB failed (%d).\n", r);
141 return r;
142 }
143
144
145 if (ib->vm) {
146 struct radeon_fence *vm_id_fence;
147 vm_id_fence = radeon_vm_grab_id(rdev, ib->vm, ib->ring);
148 radeon_sync_fence(&ib->sync, vm_id_fence);
149 }
150
151
152 r = radeon_sync_rings(rdev, &ib->sync, ib->ring);
153 if (r) {
154 dev_err(rdev->dev, "failed to sync rings (%d)\n", r);
155 radeon_ring_unlock_undo(rdev, ring);
156 return r;
157 }
158
159 if (ib->vm)
160 radeon_vm_flush(rdev, ib->vm, ib->ring,
161 ib->sync.last_vm_update);
162
163 if (const_ib) {
164 radeon_ring_ib_execute(rdev, const_ib->ring, const_ib);
165 radeon_sync_free(rdev, &const_ib->sync, NULL);
166 }
167 radeon_ring_ib_execute(rdev, ib->ring, ib);
168 r = radeon_fence_emit(rdev, &ib->fence, ib->ring);
169 if (r) {
170 dev_err(rdev->dev, "failed to emit fence for new IB (%d)\n", r);
171 radeon_ring_unlock_undo(rdev, ring);
172 return r;
173 }
174 if (const_ib) {
175 const_ib->fence = radeon_fence_ref(ib->fence);
176 }
177
178 if (ib->vm)
179 radeon_vm_fence(rdev, ib->vm, ib->fence);
180
181 radeon_ring_unlock_commit(rdev, ring, hdp_flush);
182 return 0;
183}
184
185
186
187
188
189
190
191
192
193
194int radeon_ib_pool_init(struct radeon_device *rdev)
195{
196 int r;
197
198 if (rdev->ib_pool_ready) {
199 return 0;
200 }
201
202 if (rdev->family >= CHIP_BONAIRE) {
203 r = radeon_sa_bo_manager_init(rdev, &rdev->ring_tmp_bo,
204 RADEON_IB_POOL_SIZE*64*1024,
205 RADEON_GPU_PAGE_SIZE,
206 RADEON_GEM_DOMAIN_GTT,
207 RADEON_GEM_GTT_WC);
208 } else {
209
210
211
212 r = radeon_sa_bo_manager_init(rdev, &rdev->ring_tmp_bo,
213 RADEON_IB_POOL_SIZE*64*1024,
214 RADEON_GPU_PAGE_SIZE,
215 RADEON_GEM_DOMAIN_GTT, 0);
216 }
217 if (r) {
218 return r;
219 }
220
221 r = radeon_sa_bo_manager_start(rdev, &rdev->ring_tmp_bo);
222 if (r) {
223 return r;
224 }
225
226 rdev->ib_pool_ready = true;
227 if (radeon_debugfs_sa_init(rdev)) {
228 dev_err(rdev->dev, "failed to register debugfs file for SA\n");
229 }
230 return 0;
231}
232
233
234
235
236
237
238
239
240
241void radeon_ib_pool_fini(struct radeon_device *rdev)
242{
243 if (rdev->ib_pool_ready) {
244 radeon_sa_bo_manager_suspend(rdev, &rdev->ring_tmp_bo);
245 radeon_sa_bo_manager_fini(rdev, &rdev->ring_tmp_bo);
246 rdev->ib_pool_ready = false;
247 }
248}
249
250
251
252
253
254
255
256
257
258
259
260int radeon_ib_ring_tests(struct radeon_device *rdev)
261{
262 unsigned i;
263 int r;
264
265 for (i = 0; i < RADEON_NUM_RINGS; ++i) {
266 struct radeon_ring *ring = &rdev->ring[i];
267
268 if (!ring->ready)
269 continue;
270
271 r = radeon_ib_test(rdev, i, ring);
272 if (r) {
273 radeon_fence_driver_force_completion(rdev, i);
274 ring->ready = false;
275 rdev->needs_reset = false;
276
277 if (i == RADEON_RING_TYPE_GFX_INDEX) {
278
279 DRM_ERROR("radeon: failed testing IB on GFX ring (%d).\n", r);
280 rdev->accel_working = false;
281 return r;
282
283 } else {
284
285 DRM_ERROR("radeon: failed testing IB on ring %d (%d).\n", i, r);
286 }
287 }
288 }
289 return 0;
290}
291
292
293
294
295#if defined(CONFIG_DEBUG_FS)
296
297static int radeon_debugfs_sa_info(struct seq_file *m, void *data)
298{
299 struct drm_info_node *node = (struct drm_info_node *) m->private;
300 struct drm_device *dev = node->minor->dev;
301 struct radeon_device *rdev = dev->dev_private;
302
303 radeon_sa_bo_dump_debug_info(&rdev->ring_tmp_bo, m);
304
305 return 0;
306
307}
308
309static struct drm_info_list radeon_debugfs_sa_list[] = {
310 {"radeon_sa_info", &radeon_debugfs_sa_info, 0, NULL},
311};
312
313#endif
314
315static int radeon_debugfs_sa_init(struct radeon_device *rdev)
316{
317#if defined(CONFIG_DEBUG_FS)
318 return radeon_debugfs_add_files(rdev, radeon_debugfs_sa_list, 1);
319#else
320 return 0;
321#endif
322}
323