blob: 75f22e5e999fc455565f9bad0a7e2c2322199a9f [file] [log] [blame]
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001/*
2 * Copyright 2008 Jerome Glisse.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 *
24 * Authors:
25 * Jerome Glisse <glisse@freedesktop.org>
26 */
Marek Olšák43304412014-03-02 00:56:20 +010027#include <linux/list_sort.h>
David Howells760285e2012-10-02 18:01:07 +010028#include <drm/drmP.h>
29#include <drm/radeon_drm.h>
Jerome Glisse771fe6b2009-06-05 14:42:42 +020030#include "radeon_reg.h"
31#include "radeon.h"
Christian König860024e2013-09-07 18:29:01 +020032#include "radeon_trace.h"
Jerome Glisse771fe6b2009-06-05 14:42:42 +020033
Marek Olšákc9b76542014-03-02 00:56:21 +010034#define RADEON_CS_MAX_PRIORITY 32u
35#define RADEON_CS_NUM_BUCKETS (RADEON_CS_MAX_PRIORITY + 1)
36
37/* This is based on the bucket sort with O(n) time complexity.
38 * An item with priority "i" is added to bucket[i]. The lists are then
39 * concatenated in descending order.
40 */
41struct radeon_cs_buckets {
42 struct list_head bucket[RADEON_CS_NUM_BUCKETS];
43};
44
45static void radeon_cs_buckets_init(struct radeon_cs_buckets *b)
46{
47 unsigned i;
48
49 for (i = 0; i < RADEON_CS_NUM_BUCKETS; i++)
50 INIT_LIST_HEAD(&b->bucket[i]);
51}
52
53static void radeon_cs_buckets_add(struct radeon_cs_buckets *b,
54 struct list_head *item, unsigned priority)
55{
56 /* Since buffers which appear sooner in the relocation list are
57 * likely to be used more often than buffers which appear later
58 * in the list, the sort mustn't change the ordering of buffers
59 * with the same priority, i.e. it must be stable.
60 */
61 list_add_tail(item, &b->bucket[min(priority, RADEON_CS_MAX_PRIORITY)]);
62}
63
64static void radeon_cs_buckets_get_list(struct radeon_cs_buckets *b,
65 struct list_head *out_list)
66{
67 unsigned i;
68
69 /* Connect the sorted buckets in the output list. */
70 for (i = 0; i < RADEON_CS_NUM_BUCKETS; i++) {
71 list_splice(&b->bucket[i], out_list);
72 }
73}
74
Lauri Kasanen1109ca02012-08-31 13:43:50 -040075static int radeon_cs_parser_relocs(struct radeon_cs_parser *p)
Jerome Glisse771fe6b2009-06-05 14:42:42 +020076{
77 struct drm_device *ddev = p->rdev->ddev;
78 struct radeon_cs_chunk *chunk;
Marek Olšákc9b76542014-03-02 00:56:21 +010079 struct radeon_cs_buckets buckets;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020080 unsigned i, j;
Christian Königf72a113a2014-08-07 09:36:00 +020081 bool duplicate, need_mmap_lock = false;
82 int r;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020083
84 if (p->chunk_relocs_idx == -1) {
85 return 0;
86 }
87 chunk = &p->chunks[p->chunk_relocs_idx];
Alex Deuchercf4ccd02011-11-18 10:19:47 -050088 p->dma_reloc_idx = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020089 /* FIXME: we assume that each relocs use 4 dwords */
90 p->nrelocs = chunk->length_dw / 4;
91 p->relocs_ptr = kcalloc(p->nrelocs, sizeof(void *), GFP_KERNEL);
92 if (p->relocs_ptr == NULL) {
93 return -ENOMEM;
94 }
95 p->relocs = kcalloc(p->nrelocs, sizeof(struct radeon_cs_reloc), GFP_KERNEL);
96 if (p->relocs == NULL) {
97 return -ENOMEM;
98 }
Marek Olšákc9b76542014-03-02 00:56:21 +010099
100 radeon_cs_buckets_init(&buckets);
101
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200102 for (i = 0; i < p->nrelocs; i++) {
103 struct drm_radeon_cs_reloc *r;
Marek Olšákc9b76542014-03-02 00:56:21 +0100104 unsigned priority;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200105
106 duplicate = false;
107 r = (struct drm_radeon_cs_reloc *)&chunk->kdata[i*4];
Christian König16557f12011-10-24 14:59:17 +0200108 for (j = 0; j < i; j++) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200109 if (r->handle == p->relocs[j].handle) {
110 p->relocs_ptr[i] = &p->relocs[j];
111 duplicate = true;
112 break;
113 }
114 }
Christian König4474f3a2013-04-08 12:41:28 +0200115 if (duplicate) {
Christian König16557f12011-10-24 14:59:17 +0200116 p->relocs[i].handle = 0;
Christian König4474f3a2013-04-08 12:41:28 +0200117 continue;
118 }
119
120 p->relocs[i].gobj = drm_gem_object_lookup(ddev, p->filp,
121 r->handle);
122 if (p->relocs[i].gobj == NULL) {
123 DRM_ERROR("gem object lookup failed 0x%x\n",
124 r->handle);
125 return -ENOENT;
126 }
127 p->relocs_ptr[i] = &p->relocs[i];
128 p->relocs[i].robj = gem_to_radeon_bo(p->relocs[i].gobj);
Marek Olšákc9b76542014-03-02 00:56:21 +0100129
130 /* The userspace buffer priorities are from 0 to 15. A higher
131 * number means the buffer is more important.
132 * Also, the buffers used for write have a higher priority than
133 * the buffers used for read only, which doubles the range
134 * to 0 to 31. 32 is reserved for the kernel driver.
135 */
Christian König701e1e72014-08-15 11:52:53 +0200136 priority = (r->flags & RADEON_RELOC_PRIO_MASK) * 2
137 + !!r->write_domain;
Christian König4474f3a2013-04-08 12:41:28 +0200138
Christian König4f66c592013-09-15 13:31:28 +0200139 /* the first reloc of an UVD job is the msg and that must be in
Christian Königb6a7eee2013-04-16 15:41:25 +0200140 VRAM, also but everything into VRAM on AGP cards and older
141 IGP chips to avoid image corruptions */
Christian König4f66c592013-09-15 13:31:28 +0200142 if (p->ring == R600_RING_TYPE_UVD_INDEX &&
Christian Königb6a7eee2013-04-16 15:41:25 +0200143 (i == 0 || drm_pci_device_is_agp(p->rdev->ddev) ||
144 p->rdev->family == CHIP_RS780 ||
145 p->rdev->family == CHIP_RS880)) {
146
Christian Königbcf6f1e2013-10-15 20:12:03 +0200147 /* TODO: is this still needed for NI+ ? */
Christian Königce6758c2014-06-02 17:33:07 +0200148 p->relocs[i].prefered_domains =
Christian Königf2ba57b2013-04-08 12:41:29 +0200149 RADEON_GEM_DOMAIN_VRAM;
150
Christian Königce6758c2014-06-02 17:33:07 +0200151 p->relocs[i].allowed_domains =
Christian Königf2ba57b2013-04-08 12:41:29 +0200152 RADEON_GEM_DOMAIN_VRAM;
153
Marek Olšákc9b76542014-03-02 00:56:21 +0100154 /* prioritize this over any other relocation */
155 priority = RADEON_CS_MAX_PRIORITY;
Christian Königf2ba57b2013-04-08 12:41:29 +0200156 } else {
157 uint32_t domain = r->write_domain ?
158 r->write_domain : r->read_domains;
159
Marek Olšákec65da32014-05-27 02:56:36 +0200160 if (domain & RADEON_GEM_DOMAIN_CPU) {
161 DRM_ERROR("RADEON_GEM_DOMAIN_CPU is not valid "
162 "for command submission\n");
163 return -EINVAL;
164 }
165
Christian Königce6758c2014-06-02 17:33:07 +0200166 p->relocs[i].prefered_domains = domain;
Christian Königf2ba57b2013-04-08 12:41:29 +0200167 if (domain == RADEON_GEM_DOMAIN_VRAM)
168 domain |= RADEON_GEM_DOMAIN_GTT;
Christian Königce6758c2014-06-02 17:33:07 +0200169 p->relocs[i].allowed_domains = domain;
Christian Königf2ba57b2013-04-08 12:41:29 +0200170 }
Christian König4474f3a2013-04-08 12:41:28 +0200171
Christian Königf72a113a2014-08-07 09:36:00 +0200172 if (radeon_ttm_tt_has_userptr(p->relocs[i].robj->tbo.ttm)) {
173 uint32_t domain = p->relocs[i].prefered_domains;
174 if (!(domain & RADEON_GEM_DOMAIN_GTT)) {
175 DRM_ERROR("Only RADEON_GEM_DOMAIN_GTT is "
176 "allowed for userptr BOs\n");
177 return -EINVAL;
178 }
179 need_mmap_lock = true;
180 domain = RADEON_GEM_DOMAIN_GTT;
181 p->relocs[i].prefered_domains = domain;
182 p->relocs[i].allowed_domains = domain;
183 }
184
Christian Königdf0af442014-03-03 12:38:08 +0100185 p->relocs[i].tv.bo = &p->relocs[i].robj->tbo;
Christian König298593b2014-09-04 20:01:54 +0200186 p->relocs[i].tv.shared = !r->write_domain;
Christian König4474f3a2013-04-08 12:41:28 +0200187 p->relocs[i].handle = r->handle;
188
Christian Königdf0af442014-03-03 12:38:08 +0100189 radeon_cs_buckets_add(&buckets, &p->relocs[i].tv.head,
Marek Olšákc9b76542014-03-02 00:56:21 +0100190 priority);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200191 }
Marek Olšákc9b76542014-03-02 00:56:21 +0100192
193 radeon_cs_buckets_get_list(&buckets, &p->validated);
194
Christian König6d2f2942014-02-20 13:42:17 +0100195 if (p->cs_flags & RADEON_CS_USE_VM)
196 p->vm_bos = radeon_vm_get_bos(p->rdev, p->ib.vm,
197 &p->validated);
Christian Königf72a113a2014-08-07 09:36:00 +0200198 if (need_mmap_lock)
199 down_read(&current->mm->mmap_sem);
Christian König6d2f2942014-02-20 13:42:17 +0100200
Christian Königf72a113a2014-08-07 09:36:00 +0200201 r = radeon_bo_list_validate(p->rdev, &p->ticket, &p->validated, p->ring);
202
203 if (need_mmap_lock)
204 up_read(&current->mm->mmap_sem);
205
206 return r;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200207}
208
Jerome Glisse721604a2012-01-05 22:11:05 -0500209static int radeon_cs_get_ring(struct radeon_cs_parser *p, u32 ring, s32 priority)
210{
211 p->priority = priority;
212
213 switch (ring) {
214 default:
215 DRM_ERROR("unknown ring id: %d\n", ring);
216 return -EINVAL;
217 case RADEON_CS_RING_GFX:
218 p->ring = RADEON_RING_TYPE_GFX_INDEX;
219 break;
220 case RADEON_CS_RING_COMPUTE:
Alex Deucher963e81f2013-06-26 17:37:11 -0400221 if (p->rdev->family >= CHIP_TAHITI) {
Alex Deucher8d5ef7b2012-03-20 17:18:24 -0400222 if (p->priority > 0)
223 p->ring = CAYMAN_RING_TYPE_CP1_INDEX;
224 else
225 p->ring = CAYMAN_RING_TYPE_CP2_INDEX;
226 } else
227 p->ring = RADEON_RING_TYPE_GFX_INDEX;
Jerome Glisse721604a2012-01-05 22:11:05 -0500228 break;
Alex Deucher278a3342012-12-13 12:27:28 -0500229 case RADEON_CS_RING_DMA:
230 if (p->rdev->family >= CHIP_CAYMAN) {
231 if (p->priority > 0)
232 p->ring = R600_RING_TYPE_DMA_INDEX;
233 else
234 p->ring = CAYMAN_RING_TYPE_DMA1_INDEX;
Alex Deucherb9ace362014-01-27 10:59:51 -0500235 } else if (p->rdev->family >= CHIP_RV770) {
Alex Deucher278a3342012-12-13 12:27:28 -0500236 p->ring = R600_RING_TYPE_DMA_INDEX;
237 } else {
238 return -EINVAL;
239 }
240 break;
Christian Königf2ba57b2013-04-08 12:41:29 +0200241 case RADEON_CS_RING_UVD:
242 p->ring = R600_RING_TYPE_UVD_INDEX;
243 break;
Christian Königd93f7932013-05-23 12:10:04 +0200244 case RADEON_CS_RING_VCE:
245 /* TODO: only use the low priority ring for now */
246 p->ring = TN_RING_TYPE_VCE1_INDEX;
247 break;
Jerome Glisse721604a2012-01-05 22:11:05 -0500248 }
249 return 0;
250}
251
Maarten Lankhorst392a2502014-09-25 12:39:38 +0200252static int radeon_cs_sync_rings(struct radeon_cs_parser *p)
Christian König93504fc2012-01-05 22:11:06 -0500253{
Maarten Lankhorst392a2502014-09-25 12:39:38 +0200254 int i, r = 0;
Christian König93504fc2012-01-05 22:11:06 -0500255
Christian Königcdac5502012-02-23 15:18:42 +0100256 for (i = 0; i < p->nrelocs; i++) {
Maarten Lankhorstf2c24b82014-04-02 17:14:48 +0200257 struct reservation_object *resv;
Maarten Lankhorstf2c24b82014-04-02 17:14:48 +0200258
Christian Königf82cbdd2012-08-09 16:35:36 +0200259 if (!p->relocs[i].robj)
Christian Königcdac5502012-02-23 15:18:42 +0100260 continue;
261
Maarten Lankhorstf2c24b82014-04-02 17:14:48 +0200262 resv = p->relocs[i].robj->tbo.resv;
Christian König975700d22014-11-19 14:01:22 +0100263 r = radeon_sync_resv(p->rdev, &p->ib.sync, resv,
264 p->relocs[i].tv.shared);
Maarten Lankhorst392a2502014-09-25 12:39:38 +0200265
266 if (r)
267 break;
Christian Königcdac5502012-02-23 15:18:42 +0100268 }
Maarten Lankhorst392a2502014-09-25 12:39:38 +0200269 return r;
Christian König93504fc2012-01-05 22:11:06 -0500270}
271
Alex Deucher9b001472012-05-30 10:09:30 -0400272/* XXX: note that this is called from the legacy UMS CS ioctl as well */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200273int radeon_cs_parser_init(struct radeon_cs_parser *p, void *data)
274{
275 struct drm_radeon_cs *cs = data;
276 uint64_t *chunk_array_ptr;
Jerome Glisse721604a2012-01-05 22:11:05 -0500277 unsigned size, i;
278 u32 ring = RADEON_CS_RING_GFX;
279 s32 priority = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200280
281 if (!cs->num_chunks) {
282 return 0;
283 }
284 /* get chunks */
285 INIT_LIST_HEAD(&p->validated);
286 p->idx = 0;
Jerome Glissef2e39222012-05-09 15:35:02 +0200287 p->ib.sa_bo = NULL;
Jerome Glissef2e39222012-05-09 15:35:02 +0200288 p->const_ib.sa_bo = NULL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200289 p->chunk_ib_idx = -1;
290 p->chunk_relocs_idx = -1;
Jerome Glisse721604a2012-01-05 22:11:05 -0500291 p->chunk_flags_idx = -1;
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400292 p->chunk_const_ib_idx = -1;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200293 p->chunks_array = kcalloc(cs->num_chunks, sizeof(uint64_t), GFP_KERNEL);
294 if (p->chunks_array == NULL) {
295 return -ENOMEM;
296 }
297 chunk_array_ptr = (uint64_t *)(unsigned long)(cs->chunks);
Daniel Vetter1d6ac182013-12-11 11:34:44 +0100298 if (copy_from_user(p->chunks_array, chunk_array_ptr,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200299 sizeof(uint64_t)*cs->num_chunks)) {
300 return -EFAULT;
301 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500302 p->cs_flags = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200303 p->nchunks = cs->num_chunks;
304 p->chunks = kcalloc(p->nchunks, sizeof(struct radeon_cs_chunk), GFP_KERNEL);
305 if (p->chunks == NULL) {
306 return -ENOMEM;
307 }
308 for (i = 0; i < p->nchunks; i++) {
309 struct drm_radeon_cs_chunk __user **chunk_ptr = NULL;
310 struct drm_radeon_cs_chunk user_chunk;
311 uint32_t __user *cdata;
312
313 chunk_ptr = (void __user*)(unsigned long)p->chunks_array[i];
Daniel Vetter1d6ac182013-12-11 11:34:44 +0100314 if (copy_from_user(&user_chunk, chunk_ptr,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200315 sizeof(struct drm_radeon_cs_chunk))) {
316 return -EFAULT;
317 }
Dave Airlie5176fdc2009-06-30 11:47:14 +1000318 p->chunks[i].length_dw = user_chunk.length_dw;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200319 p->chunks[i].chunk_id = user_chunk.chunk_id;
320 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_RELOCS) {
321 p->chunk_relocs_idx = i;
322 }
323 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_IB) {
324 p->chunk_ib_idx = i;
Dave Airlie5176fdc2009-06-30 11:47:14 +1000325 /* zero length IB isn't useful */
326 if (p->chunks[i].length_dw == 0)
327 return -EINVAL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200328 }
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400329 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_CONST_IB) {
330 p->chunk_const_ib_idx = i;
331 /* zero length CONST IB isn't useful */
332 if (p->chunks[i].length_dw == 0)
333 return -EINVAL;
334 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500335 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_FLAGS) {
336 p->chunk_flags_idx = i;
337 /* zero length flags aren't useful */
338 if (p->chunks[i].length_dw == 0)
339 return -EINVAL;
Marek Olšáke70f2242011-10-25 01:38:45 +0200340 }
Dave Airlie5176fdc2009-06-30 11:47:14 +1000341
Maarten Lankhorst28a326c2013-10-09 14:36:57 +0200342 size = p->chunks[i].length_dw;
343 cdata = (void __user *)(unsigned long)user_chunk.chunk_data;
344 p->chunks[i].user_ptr = cdata;
345 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_CONST_IB)
346 continue;
347
348 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_IB) {
349 if (!p->rdev || !(p->rdev->flags & RADEON_IS_AGP))
350 continue;
351 }
352
353 p->chunks[i].kdata = drm_malloc_ab(size, sizeof(uint32_t));
354 size *= sizeof(uint32_t);
355 if (p->chunks[i].kdata == NULL) {
356 return -ENOMEM;
357 }
Daniel Vetter1d6ac182013-12-11 11:34:44 +0100358 if (copy_from_user(p->chunks[i].kdata, cdata, size)) {
Maarten Lankhorst28a326c2013-10-09 14:36:57 +0200359 return -EFAULT;
360 }
361 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_FLAGS) {
362 p->cs_flags = p->chunks[i].kdata[0];
363 if (p->chunks[i].length_dw > 1)
364 ring = p->chunks[i].kdata[1];
365 if (p->chunks[i].length_dw > 2)
366 priority = (s32)p->chunks[i].kdata[2];
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200367 }
368 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500369
Alex Deucher9b001472012-05-30 10:09:30 -0400370 /* these are KMS only */
371 if (p->rdev) {
372 if ((p->cs_flags & RADEON_CS_USE_VM) &&
373 !p->rdev->vm_manager.enabled) {
374 DRM_ERROR("VM not active on asic!\n");
375 return -EINVAL;
376 }
377
Alex Deucher9b001472012-05-30 10:09:30 -0400378 if (radeon_cs_get_ring(p, ring, priority))
379 return -EINVAL;
Christian König57449042013-04-08 12:41:27 +0200380
381 /* we only support VM on some SI+ rings */
Christian König60a44542014-05-21 17:43:59 +0200382 if ((p->cs_flags & RADEON_CS_USE_VM) == 0) {
383 if (p->rdev->asic->ring[p->ring]->cs_parse == NULL) {
384 DRM_ERROR("Ring %d requires VM!\n", p->ring);
385 return -EINVAL;
386 }
387 } else {
388 if (p->rdev->asic->ring[p->ring]->ib_parse == NULL) {
389 DRM_ERROR("VM not supported on ring %d!\n",
390 p->ring);
391 return -EINVAL;
392 }
Christian König57449042013-04-08 12:41:27 +0200393 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200394 }
Marek Olšáke70f2242011-10-25 01:38:45 +0200395
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200396 return 0;
397}
398
Marek Olšák43304412014-03-02 00:56:20 +0100399static int cmp_size_smaller_first(void *priv, struct list_head *a,
400 struct list_head *b)
401{
Christian Königdf0af442014-03-03 12:38:08 +0100402 struct radeon_cs_reloc *la = list_entry(a, struct radeon_cs_reloc, tv.head);
403 struct radeon_cs_reloc *lb = list_entry(b, struct radeon_cs_reloc, tv.head);
Marek Olšák43304412014-03-02 00:56:20 +0100404
405 /* Sort A before B if A is smaller. */
Christian Königdf0af442014-03-03 12:38:08 +0100406 return (int)la->robj->tbo.num_pages - (int)lb->robj->tbo.num_pages;
Marek Olšák43304412014-03-02 00:56:20 +0100407}
408
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200409/**
410 * cs_parser_fini() - clean parser states
411 * @parser: parser structure holding parsing context.
412 * @error: error number
413 *
414 * If error is set than unvalidate buffer, otherwise just free memory
415 * used by parsing context.
416 **/
Maarten Lankhorstecff6652013-06-27 13:48:17 +0200417static void radeon_cs_parser_fini(struct radeon_cs_parser *parser, int error, bool backoff)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200418{
419 unsigned i;
420
Jerome Glissee43b5ec2012-08-06 12:32:21 -0400421 if (!error) {
Marek Olšák43304412014-03-02 00:56:20 +0100422 /* Sort the buffer list from the smallest to largest buffer,
423 * which affects the order of buffers in the LRU list.
424 * This assures that the smallest buffers are added first
425 * to the LRU list, so they are likely to be later evicted
426 * first, instead of large buffers whose eviction is more
427 * expensive.
428 *
429 * This slightly lowers the number of bytes moved by TTM
430 * per frame under memory pressure.
431 */
432 list_sort(NULL, &parser->validated, cmp_size_smaller_first);
433
Maarten Lankhorstecff6652013-06-27 13:48:17 +0200434 ttm_eu_fence_buffer_objects(&parser->ticket,
435 &parser->validated,
Maarten Lankhorstf2c24b82014-04-02 17:14:48 +0200436 &parser->ib.fence->base);
Maarten Lankhorstecff6652013-06-27 13:48:17 +0200437 } else if (backoff) {
438 ttm_eu_backoff_reservation(&parser->ticket,
439 &parser->validated);
Jerome Glissee43b5ec2012-08-06 12:32:21 -0400440 }
Thomas Hellstrom147666f2010-11-17 12:38:32 +0000441
Pauli Nieminenfcbc4512010-03-19 07:44:33 +0000442 if (parser->relocs != NULL) {
443 for (i = 0; i < parser->nrelocs; i++) {
444 if (parser->relocs[i].gobj)
445 drm_gem_object_unreference_unlocked(parser->relocs[i].gobj);
446 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200447 }
Michel Dänzer48e113e2009-09-15 17:09:32 +0200448 kfree(parser->track);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200449 kfree(parser->relocs);
450 kfree(parser->relocs_ptr);
Michel Dänzere5a5fd4d2014-10-20 18:40:54 +0900451 drm_free_large(parser->vm_bos);
Maarten Lankhorst28a326c2013-10-09 14:36:57 +0200452 for (i = 0; i < parser->nchunks; i++)
453 drm_free_large(parser->chunks[i].kdata);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200454 kfree(parser->chunks);
455 kfree(parser->chunks_array);
456 radeon_ib_free(parser->rdev, &parser->ib);
Jerome Glissef2e39222012-05-09 15:35:02 +0200457 radeon_ib_free(parser->rdev, &parser->const_ib);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200458}
459
Jerome Glisse721604a2012-01-05 22:11:05 -0500460static int radeon_cs_ib_chunk(struct radeon_device *rdev,
461 struct radeon_cs_parser *parser)
462{
Jerome Glisse721604a2012-01-05 22:11:05 -0500463 int r;
464
465 if (parser->chunk_ib_idx == -1)
466 return 0;
467
468 if (parser->cs_flags & RADEON_CS_USE_VM)
469 return 0;
470
Christian Königeb0c19c2012-02-23 15:18:44 +0100471 r = radeon_cs_parse(rdev, parser->ring, parser);
Jerome Glisse721604a2012-01-05 22:11:05 -0500472 if (r || parser->parser_error) {
473 DRM_ERROR("Invalid command stream !\n");
474 return r;
475 }
Alex Deucherce3537d2013-07-24 12:12:49 -0400476
Maarten Lankhorst392a2502014-09-25 12:39:38 +0200477 r = radeon_cs_sync_rings(parser);
478 if (r) {
479 if (r != -ERESTARTSYS)
480 DRM_ERROR("Failed to sync rings: %i\n", r);
481 return r;
482 }
483
Alex Deucherce3537d2013-07-24 12:12:49 -0400484 if (parser->ring == R600_RING_TYPE_UVD_INDEX)
485 radeon_uvd_note_usage(rdev);
Alex Deucher03afe6f2013-08-23 11:56:26 -0400486 else if ((parser->ring == TN_RING_TYPE_VCE1_INDEX) ||
487 (parser->ring == TN_RING_TYPE_VCE2_INDEX))
488 radeon_vce_note_usage(rdev);
Alex Deucherce3537d2013-07-24 12:12:49 -0400489
Michel Dänzer1538a9e2014-08-18 17:34:55 +0900490 r = radeon_ib_schedule(rdev, &parser->ib, NULL, true);
Jerome Glisse721604a2012-01-05 22:11:05 -0500491 if (r) {
492 DRM_ERROR("Failed to schedule IB !\n");
493 }
Christian König93bf8882012-07-03 14:05:41 +0200494 return r;
Jerome Glisse721604a2012-01-05 22:11:05 -0500495}
496
Christian König6d2f2942014-02-20 13:42:17 +0100497static int radeon_bo_vm_update_pte(struct radeon_cs_parser *p,
Jerome Glisse721604a2012-01-05 22:11:05 -0500498 struct radeon_vm *vm)
499{
Christian König6d2f2942014-02-20 13:42:17 +0100500 struct radeon_device *rdev = p->rdev;
Christian König036bf462014-07-18 08:56:40 +0200501 struct radeon_bo_va *bo_va;
Christian König6d2f2942014-02-20 13:42:17 +0100502 int i, r;
Jerome Glisse721604a2012-01-05 22:11:05 -0500503
Christian König6d2f2942014-02-20 13:42:17 +0100504 r = radeon_vm_update_page_directory(rdev, vm);
505 if (r)
Jerome Glisse3e8970f2012-08-13 12:07:33 -0400506 return r;
Christian König6d2f2942014-02-20 13:42:17 +0100507
Christian König94214632014-11-19 14:01:26 +0100508 radeon_sync_resv(p->rdev, &p->ib.sync, vm->page_directory->tbo.resv,
509 true);
510
Christian König036bf462014-07-18 08:56:40 +0200511 r = radeon_vm_clear_freed(rdev, vm);
512 if (r)
513 return r;
514
Christian Königcc9e67e2014-07-18 13:48:10 +0200515 if (vm->ib_bo_va == NULL) {
Christian König036bf462014-07-18 08:56:40 +0200516 DRM_ERROR("Tmp BO not in VM!\n");
517 return -EINVAL;
518 }
519
Christian Königcc9e67e2014-07-18 13:48:10 +0200520 r = radeon_vm_bo_update(rdev, vm->ib_bo_va,
521 &rdev->ring_tmp_bo.bo->tbo.mem);
Christian König6d2f2942014-02-20 13:42:17 +0100522 if (r)
523 return r;
524
525 for (i = 0; i < p->nrelocs; i++) {
526 struct radeon_bo *bo;
527
528 /* ignore duplicates */
529 if (p->relocs_ptr[i] != &p->relocs[i])
530 continue;
531
532 bo = p->relocs[i].robj;
Christian König036bf462014-07-18 08:56:40 +0200533 bo_va = radeon_vm_bo_find(vm, bo);
534 if (bo_va == NULL) {
535 dev_err(rdev->dev, "bo %p not in vm %p\n", bo, vm);
536 return -EINVAL;
537 }
538
539 r = radeon_vm_bo_update(rdev, bo_va, &bo->tbo.mem);
Christian König6d2f2942014-02-20 13:42:17 +0100540 if (r)
Jerome Glisse721604a2012-01-05 22:11:05 -0500541 return r;
Christian König94214632014-11-19 14:01:26 +0100542
543 radeon_sync_fence(&p->ib.sync, bo_va->last_pt_update);
Jerome Glisse721604a2012-01-05 22:11:05 -0500544 }
Christian Könige31ad962014-07-18 09:24:53 +0200545
546 return radeon_vm_clear_invalids(rdev, vm);
Jerome Glisse721604a2012-01-05 22:11:05 -0500547}
548
549static int radeon_cs_ib_vm_chunk(struct radeon_device *rdev,
550 struct radeon_cs_parser *parser)
551{
Jerome Glisse721604a2012-01-05 22:11:05 -0500552 struct radeon_fpriv *fpriv = parser->filp->driver_priv;
553 struct radeon_vm *vm = &fpriv->vm;
554 int r;
555
556 if (parser->chunk_ib_idx == -1)
557 return 0;
Jerome Glisse721604a2012-01-05 22:11:05 -0500558 if ((parser->cs_flags & RADEON_CS_USE_VM) == 0)
559 return 0;
560
Maarten Lankhorst28a326c2013-10-09 14:36:57 +0200561 if (parser->const_ib.length_dw) {
Jerome Glissef2e39222012-05-09 15:35:02 +0200562 r = radeon_ring_ib_parse(rdev, parser->ring, &parser->const_ib);
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400563 if (r) {
564 return r;
565 }
566 }
567
Jerome Glissef2e39222012-05-09 15:35:02 +0200568 r = radeon_ring_ib_parse(rdev, parser->ring, &parser->ib);
Jerome Glisse721604a2012-01-05 22:11:05 -0500569 if (r) {
570 return r;
571 }
572
Alex Deucherce3537d2013-07-24 12:12:49 -0400573 if (parser->ring == R600_RING_TYPE_UVD_INDEX)
574 radeon_uvd_note_usage(rdev);
575
Jerome Glisse721604a2012-01-05 22:11:05 -0500576 mutex_lock(&vm->mutex);
Jerome Glisse721604a2012-01-05 22:11:05 -0500577 r = radeon_bo_vm_update_pte(parser, vm);
578 if (r) {
579 goto out;
580 }
Maarten Lankhorst392a2502014-09-25 12:39:38 +0200581
582 r = radeon_cs_sync_rings(parser);
583 if (r) {
584 if (r != -ERESTARTSYS)
585 DRM_ERROR("Failed to sync rings: %i\n", r);
586 goto out;
587 }
Christian König4ef72562012-07-13 13:06:00 +0200588
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400589 if ((rdev->family >= CHIP_TAHITI) &&
590 (parser->chunk_const_ib_idx != -1)) {
Michel Dänzer1538a9e2014-08-18 17:34:55 +0900591 r = radeon_ib_schedule(rdev, &parser->ib, &parser->const_ib, true);
Christian König4ef72562012-07-13 13:06:00 +0200592 } else {
Michel Dänzer1538a9e2014-08-18 17:34:55 +0900593 r = radeon_ib_schedule(rdev, &parser->ib, NULL, true);
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400594 }
595
Christian Königee60e292012-08-09 16:21:08 +0200596out:
Christian König36ff39c2012-05-09 10:07:08 +0200597 mutex_unlock(&vm->mutex);
Jerome Glisse721604a2012-01-05 22:11:05 -0500598 return r;
599}
600
Christian König6c6f4782012-05-02 15:11:19 +0200601static int radeon_cs_handle_lockup(struct radeon_device *rdev, int r)
602{
603 if (r == -EDEADLK) {
604 r = radeon_gpu_reset(rdev);
605 if (!r)
606 r = -EAGAIN;
607 }
608 return r;
609}
610
Maarten Lankhorst28a326c2013-10-09 14:36:57 +0200611static int radeon_cs_ib_fill(struct radeon_device *rdev, struct radeon_cs_parser *parser)
612{
613 struct radeon_cs_chunk *ib_chunk;
614 struct radeon_vm *vm = NULL;
615 int r;
616
617 if (parser->chunk_ib_idx == -1)
618 return 0;
619
620 if (parser->cs_flags & RADEON_CS_USE_VM) {
621 struct radeon_fpriv *fpriv = parser->filp->driver_priv;
622 vm = &fpriv->vm;
623
624 if ((rdev->family >= CHIP_TAHITI) &&
625 (parser->chunk_const_ib_idx != -1)) {
626 ib_chunk = &parser->chunks[parser->chunk_const_ib_idx];
627 if (ib_chunk->length_dw > RADEON_IB_VM_MAX_SIZE) {
628 DRM_ERROR("cs IB CONST too big: %d\n", ib_chunk->length_dw);
629 return -EINVAL;
630 }
631 r = radeon_ib_get(rdev, parser->ring, &parser->const_ib,
632 vm, ib_chunk->length_dw * 4);
633 if (r) {
634 DRM_ERROR("Failed to get const ib !\n");
635 return r;
636 }
637 parser->const_ib.is_const_ib = true;
638 parser->const_ib.length_dw = ib_chunk->length_dw;
Daniel Vetter1d6ac182013-12-11 11:34:44 +0100639 if (copy_from_user(parser->const_ib.ptr,
Maarten Lankhorst28a326c2013-10-09 14:36:57 +0200640 ib_chunk->user_ptr,
641 ib_chunk->length_dw * 4))
642 return -EFAULT;
643 }
644
645 ib_chunk = &parser->chunks[parser->chunk_ib_idx];
646 if (ib_chunk->length_dw > RADEON_IB_VM_MAX_SIZE) {
647 DRM_ERROR("cs IB too big: %d\n", ib_chunk->length_dw);
648 return -EINVAL;
649 }
650 }
651 ib_chunk = &parser->chunks[parser->chunk_ib_idx];
652
653 r = radeon_ib_get(rdev, parser->ring, &parser->ib,
654 vm, ib_chunk->length_dw * 4);
655 if (r) {
656 DRM_ERROR("Failed to get ib !\n");
657 return r;
658 }
659 parser->ib.length_dw = ib_chunk->length_dw;
660 if (ib_chunk->kdata)
661 memcpy(parser->ib.ptr, ib_chunk->kdata, ib_chunk->length_dw * 4);
Daniel Vetter1d6ac182013-12-11 11:34:44 +0100662 else if (copy_from_user(parser->ib.ptr, ib_chunk->user_ptr, ib_chunk->length_dw * 4))
Maarten Lankhorst28a326c2013-10-09 14:36:57 +0200663 return -EFAULT;
664 return 0;
665}
666
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200667int radeon_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
668{
669 struct radeon_device *rdev = dev->dev_private;
670 struct radeon_cs_parser parser;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200671 int r;
672
Jerome Glissedee53e72012-07-02 12:45:19 -0400673 down_read(&rdev->exclusive_lock);
Jerome Glisse6b7746e2012-02-20 17:57:20 -0500674 if (!rdev->accel_working) {
Jerome Glissedee53e72012-07-02 12:45:19 -0400675 up_read(&rdev->exclusive_lock);
Jerome Glisse6b7746e2012-02-20 17:57:20 -0500676 return -EBUSY;
677 }
Maarten Lankhorst9bb39ff2014-08-27 16:45:18 -0400678 if (rdev->in_reset) {
679 up_read(&rdev->exclusive_lock);
680 r = radeon_gpu_reset(rdev);
681 if (!r)
682 r = -EAGAIN;
683 return r;
684 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200685 /* initialize parser */
686 memset(&parser, 0, sizeof(struct radeon_cs_parser));
687 parser.filp = filp;
688 parser.rdev = rdev;
Jerome Glissec8c15ff2010-01-18 13:01:36 +0100689 parser.dev = rdev->dev;
Dave Airlie428c6e32011-06-08 19:58:29 +1000690 parser.family = rdev->family;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200691 r = radeon_cs_parser_init(&parser, data);
692 if (r) {
693 DRM_ERROR("Failed to initialize parser !\n");
Maarten Lankhorstecff6652013-06-27 13:48:17 +0200694 radeon_cs_parser_fini(&parser, r, false);
Jerome Glissedee53e72012-07-02 12:45:19 -0400695 up_read(&rdev->exclusive_lock);
Christian König6c6f4782012-05-02 15:11:19 +0200696 r = radeon_cs_handle_lockup(rdev, r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200697 return r;
698 }
Maarten Lankhorst28a326c2013-10-09 14:36:57 +0200699
700 r = radeon_cs_ib_fill(rdev, &parser);
701 if (!r) {
702 r = radeon_cs_parser_relocs(&parser);
703 if (r && r != -ERESTARTSYS)
Dave Airlie97f23b32010-03-19 10:33:44 +1000704 DRM_ERROR("Failed to parse relocation %d!\n", r);
Maarten Lankhorst28a326c2013-10-09 14:36:57 +0200705 }
706
707 if (r) {
Maarten Lankhorstecff6652013-06-27 13:48:17 +0200708 radeon_cs_parser_fini(&parser, r, false);
Jerome Glissedee53e72012-07-02 12:45:19 -0400709 up_read(&rdev->exclusive_lock);
Christian König6c6f4782012-05-02 15:11:19 +0200710 r = radeon_cs_handle_lockup(rdev, r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200711 return r;
712 }
Christian König55b51c82013-04-18 15:25:59 +0200713
Christian König860024e2013-09-07 18:29:01 +0200714 trace_radeon_cs(&parser);
715
Jerome Glisse721604a2012-01-05 22:11:05 -0500716 r = radeon_cs_ib_chunk(rdev, &parser);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200717 if (r) {
Jerome Glisse721604a2012-01-05 22:11:05 -0500718 goto out;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200719 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500720 r = radeon_cs_ib_vm_chunk(rdev, &parser);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200721 if (r) {
Jerome Glisse721604a2012-01-05 22:11:05 -0500722 goto out;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200723 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500724out:
Maarten Lankhorstecff6652013-06-27 13:48:17 +0200725 radeon_cs_parser_fini(&parser, r, true);
Jerome Glissedee53e72012-07-02 12:45:19 -0400726 up_read(&rdev->exclusive_lock);
Christian König6c6f4782012-05-02 15:11:19 +0200727 r = radeon_cs_handle_lockup(rdev, r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200728 return r;
729}
Dave Airlie513bcb42009-09-23 16:56:27 +1000730
Ilija Hadzic4db01312013-01-02 18:27:40 -0500731/**
732 * radeon_cs_packet_parse() - parse cp packet and point ib index to next packet
733 * @parser: parser structure holding parsing context.
734 * @pkt: where to store packet information
735 *
736 * Assume that chunk_ib_index is properly set. Will return -EINVAL
737 * if packet is bigger than remaining ib size. or if packets is unknown.
738 **/
739int radeon_cs_packet_parse(struct radeon_cs_parser *p,
740 struct radeon_cs_packet *pkt,
741 unsigned idx)
742{
743 struct radeon_cs_chunk *ib_chunk = &p->chunks[p->chunk_ib_idx];
744 struct radeon_device *rdev = p->rdev;
745 uint32_t header;
746
747 if (idx >= ib_chunk->length_dw) {
748 DRM_ERROR("Can not parse packet at %d after CS end %d !\n",
749 idx, ib_chunk->length_dw);
750 return -EINVAL;
751 }
752 header = radeon_get_ib_value(p, idx);
753 pkt->idx = idx;
754 pkt->type = RADEON_CP_PACKET_GET_TYPE(header);
755 pkt->count = RADEON_CP_PACKET_GET_COUNT(header);
756 pkt->one_reg_wr = 0;
757 switch (pkt->type) {
758 case RADEON_PACKET_TYPE0:
759 if (rdev->family < CHIP_R600) {
760 pkt->reg = R100_CP_PACKET0_GET_REG(header);
761 pkt->one_reg_wr =
762 RADEON_CP_PACKET0_GET_ONE_REG_WR(header);
763 } else
764 pkt->reg = R600_CP_PACKET0_GET_REG(header);
765 break;
766 case RADEON_PACKET_TYPE3:
767 pkt->opcode = RADEON_CP_PACKET3_GET_OPCODE(header);
768 break;
769 case RADEON_PACKET_TYPE2:
770 pkt->count = -1;
771 break;
772 default:
773 DRM_ERROR("Unknown packet type %d at %d !\n", pkt->type, idx);
774 return -EINVAL;
775 }
776 if ((pkt->count + 1 + pkt->idx) >= ib_chunk->length_dw) {
777 DRM_ERROR("Packet (%d:%d:%d) end after CS buffer (%d) !\n",
778 pkt->idx, pkt->type, pkt->count, ib_chunk->length_dw);
779 return -EINVAL;
780 }
781 return 0;
782}
Ilija Hadzic9ffb7a62013-01-02 18:27:42 -0500783
784/**
785 * radeon_cs_packet_next_is_pkt3_nop() - test if the next packet is P3 NOP
786 * @p: structure holding the parser context.
787 *
788 * Check if the next packet is NOP relocation packet3.
789 **/
790bool radeon_cs_packet_next_is_pkt3_nop(struct radeon_cs_parser *p)
791{
792 struct radeon_cs_packet p3reloc;
793 int r;
794
795 r = radeon_cs_packet_parse(p, &p3reloc, p->idx);
796 if (r)
797 return false;
798 if (p3reloc.type != RADEON_PACKET_TYPE3)
799 return false;
800 if (p3reloc.opcode != RADEON_PACKET3_NOP)
801 return false;
802 return true;
803}
Ilija Hadzicc3ad63a2013-01-02 18:27:45 -0500804
805/**
806 * radeon_cs_dump_packet() - dump raw packet context
807 * @p: structure holding the parser context.
808 * @pkt: structure holding the packet.
809 *
810 * Used mostly for debugging and error reporting.
811 **/
812void radeon_cs_dump_packet(struct radeon_cs_parser *p,
813 struct radeon_cs_packet *pkt)
814{
815 volatile uint32_t *ib;
816 unsigned i;
817 unsigned idx;
818
819 ib = p->ib.ptr;
820 idx = pkt->idx;
821 for (i = 0; i <= (pkt->count + 1); i++, idx++)
822 DRM_INFO("ib[%d]=0x%08X\n", idx, ib[idx]);
823}
824
Ilija Hadzice9716992013-01-02 18:27:46 -0500825/**
826 * radeon_cs_packet_next_reloc() - parse next (should be reloc) packet
827 * @parser: parser structure holding parsing context.
828 * @data: pointer to relocation data
829 * @offset_start: starting offset
830 * @offset_mask: offset mask (to align start offset on)
831 * @reloc: reloc informations
832 *
833 * Check if next packet is relocation packet3, do bo validation and compute
834 * GPU offset using the provided start.
835 **/
836int radeon_cs_packet_next_reloc(struct radeon_cs_parser *p,
837 struct radeon_cs_reloc **cs_reloc,
838 int nomm)
839{
840 struct radeon_cs_chunk *relocs_chunk;
841 struct radeon_cs_packet p3reloc;
842 unsigned idx;
843 int r;
844
845 if (p->chunk_relocs_idx == -1) {
846 DRM_ERROR("No relocation chunk !\n");
847 return -EINVAL;
848 }
849 *cs_reloc = NULL;
850 relocs_chunk = &p->chunks[p->chunk_relocs_idx];
851 r = radeon_cs_packet_parse(p, &p3reloc, p->idx);
852 if (r)
853 return r;
854 p->idx += p3reloc.count + 2;
855 if (p3reloc.type != RADEON_PACKET_TYPE3 ||
856 p3reloc.opcode != RADEON_PACKET3_NOP) {
857 DRM_ERROR("No packet3 for relocation for packet at %d.\n",
858 p3reloc.idx);
859 radeon_cs_dump_packet(p, &p3reloc);
860 return -EINVAL;
861 }
862 idx = radeon_get_ib_value(p, p3reloc.idx + 1);
863 if (idx >= relocs_chunk->length_dw) {
864 DRM_ERROR("Relocs at %d after relocations chunk end %d !\n",
865 idx, relocs_chunk->length_dw);
866 radeon_cs_dump_packet(p, &p3reloc);
867 return -EINVAL;
868 }
869 /* FIXME: we assume reloc size is 4 dwords */
870 if (nomm) {
871 *cs_reloc = p->relocs;
Christian Königdf0af442014-03-03 12:38:08 +0100872 (*cs_reloc)->gpu_offset =
Ilija Hadzice9716992013-01-02 18:27:46 -0500873 (u64)relocs_chunk->kdata[idx + 3] << 32;
Christian Königdf0af442014-03-03 12:38:08 +0100874 (*cs_reloc)->gpu_offset |= relocs_chunk->kdata[idx + 0];
Ilija Hadzice9716992013-01-02 18:27:46 -0500875 } else
876 *cs_reloc = p->relocs_ptr[(idx / 4)];
877 return 0;
878}