drm/radeon: make VM flushs a ring operation
[deliverable/linux.git] / drivers / gpu / drm / radeon / radeon_cs.c
CommitLineData
771fe6b9
JG
1/*
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 */
27#include "drmP.h"
28#include "radeon_drm.h"
29#include "radeon_reg.h"
30#include "radeon.h"
31
32void r100_cs_dump_packet(struct radeon_cs_parser *p,
33 struct radeon_cs_packet *pkt);
34
35int radeon_cs_parser_relocs(struct radeon_cs_parser *p)
36{
37 struct drm_device *ddev = p->rdev->ddev;
38 struct radeon_cs_chunk *chunk;
39 unsigned i, j;
40 bool duplicate;
41
42 if (p->chunk_relocs_idx == -1) {
43 return 0;
44 }
45 chunk = &p->chunks[p->chunk_relocs_idx];
46 /* FIXME: we assume that each relocs use 4 dwords */
47 p->nrelocs = chunk->length_dw / 4;
48 p->relocs_ptr = kcalloc(p->nrelocs, sizeof(void *), GFP_KERNEL);
49 if (p->relocs_ptr == NULL) {
50 return -ENOMEM;
51 }
52 p->relocs = kcalloc(p->nrelocs, sizeof(struct radeon_cs_reloc), GFP_KERNEL);
53 if (p->relocs == NULL) {
54 return -ENOMEM;
55 }
56 for (i = 0; i < p->nrelocs; i++) {
57 struct drm_radeon_cs_reloc *r;
58
59 duplicate = false;
60 r = (struct drm_radeon_cs_reloc *)&chunk->kdata[i*4];
16557f1e 61 for (j = 0; j < i; j++) {
771fe6b9
JG
62 if (r->handle == p->relocs[j].handle) {
63 p->relocs_ptr[i] = &p->relocs[j];
64 duplicate = true;
65 break;
66 }
67 }
68 if (!duplicate) {
69 p->relocs[i].gobj = drm_gem_object_lookup(ddev,
70 p->filp,
71 r->handle);
72 if (p->relocs[i].gobj == NULL) {
73 DRM_ERROR("gem object lookup failed 0x%x\n",
74 r->handle);
bf79cb91 75 return -ENOENT;
771fe6b9
JG
76 }
77 p->relocs_ptr[i] = &p->relocs[i];
7e4d15d9 78 p->relocs[i].robj = gem_to_radeon_bo(p->relocs[i].gobj);
4c788679 79 p->relocs[i].lobj.bo = p->relocs[i].robj;
771fe6b9 80 p->relocs[i].lobj.wdomain = r->write_domain;
147666fb
TH
81 p->relocs[i].lobj.rdomain = r->read_domains;
82 p->relocs[i].lobj.tv.bo = &p->relocs[i].robj->tbo;
771fe6b9
JG
83 p->relocs[i].handle = r->handle;
84 p->relocs[i].flags = r->flags;
4c788679 85 radeon_bo_list_add_object(&p->relocs[i].lobj,
147666fb 86 &p->validated);
93504fce 87
16557f1e
CK
88 } else
89 p->relocs[i].handle = 0;
771fe6b9 90 }
94429bb6 91 return radeon_bo_list_validate(&p->validated);
771fe6b9
JG
92}
93
721604a1
JG
94static int radeon_cs_get_ring(struct radeon_cs_parser *p, u32 ring, s32 priority)
95{
96 p->priority = priority;
97
98 switch (ring) {
99 default:
100 DRM_ERROR("unknown ring id: %d\n", ring);
101 return -EINVAL;
102 case RADEON_CS_RING_GFX:
103 p->ring = RADEON_RING_TYPE_GFX_INDEX;
104 break;
105 case RADEON_CS_RING_COMPUTE:
8d5ef7b1
AD
106 if (p->rdev->family >= CHIP_TAHITI) {
107 if (p->priority > 0)
108 p->ring = CAYMAN_RING_TYPE_CP1_INDEX;
109 else
110 p->ring = CAYMAN_RING_TYPE_CP2_INDEX;
111 } else
112 p->ring = RADEON_RING_TYPE_GFX_INDEX;
721604a1
JG
113 break;
114 }
115 return 0;
116}
117
f82cbddd
CK
118static void radeon_cs_sync_to(struct radeon_cs_parser *p,
119 struct radeon_fence *fence)
120{
121 struct radeon_fence *other;
122
123 if (!fence)
124 return;
125
126 other = p->ib.sync_to[fence->ring];
127 p->ib.sync_to[fence->ring] = radeon_fence_later(fence, other);
128}
129
220907d9 130static void radeon_cs_sync_rings(struct radeon_cs_parser *p)
93504fce 131{
220907d9 132 int i;
93504fce 133
cdac5504 134 for (i = 0; i < p->nrelocs; i++) {
f82cbddd 135 if (!p->relocs[i].robj)
cdac5504
CK
136 continue;
137
f82cbddd 138 radeon_cs_sync_to(p, p->relocs[i].robj->tbo.sync_obj);
8f676c4c 139 }
93504fce
CK
140}
141
9b00147d 142/* XXX: note that this is called from the legacy UMS CS ioctl as well */
771fe6b9
JG
143int radeon_cs_parser_init(struct radeon_cs_parser *p, void *data)
144{
145 struct drm_radeon_cs *cs = data;
146 uint64_t *chunk_array_ptr;
721604a1
JG
147 unsigned size, i;
148 u32 ring = RADEON_CS_RING_GFX;
149 s32 priority = 0;
771fe6b9
JG
150
151 if (!cs->num_chunks) {
152 return 0;
153 }
154 /* get chunks */
155 INIT_LIST_HEAD(&p->validated);
156 p->idx = 0;
f2e39221
JG
157 p->ib.sa_bo = NULL;
158 p->ib.semaphore = NULL;
159 p->const_ib.sa_bo = NULL;
160 p->const_ib.semaphore = NULL;
771fe6b9
JG
161 p->chunk_ib_idx = -1;
162 p->chunk_relocs_idx = -1;
721604a1 163 p->chunk_flags_idx = -1;
dfcf5f36 164 p->chunk_const_ib_idx = -1;
771fe6b9
JG
165 p->chunks_array = kcalloc(cs->num_chunks, sizeof(uint64_t), GFP_KERNEL);
166 if (p->chunks_array == NULL) {
167 return -ENOMEM;
168 }
169 chunk_array_ptr = (uint64_t *)(unsigned long)(cs->chunks);
170 if (DRM_COPY_FROM_USER(p->chunks_array, chunk_array_ptr,
171 sizeof(uint64_t)*cs->num_chunks)) {
172 return -EFAULT;
173 }
721604a1 174 p->cs_flags = 0;
771fe6b9
JG
175 p->nchunks = cs->num_chunks;
176 p->chunks = kcalloc(p->nchunks, sizeof(struct radeon_cs_chunk), GFP_KERNEL);
177 if (p->chunks == NULL) {
178 return -ENOMEM;
179 }
180 for (i = 0; i < p->nchunks; i++) {
181 struct drm_radeon_cs_chunk __user **chunk_ptr = NULL;
182 struct drm_radeon_cs_chunk user_chunk;
183 uint32_t __user *cdata;
184
185 chunk_ptr = (void __user*)(unsigned long)p->chunks_array[i];
186 if (DRM_COPY_FROM_USER(&user_chunk, chunk_ptr,
187 sizeof(struct drm_radeon_cs_chunk))) {
188 return -EFAULT;
189 }
5176fdc4
DA
190 p->chunks[i].length_dw = user_chunk.length_dw;
191 p->chunks[i].kdata = NULL;
771fe6b9 192 p->chunks[i].chunk_id = user_chunk.chunk_id;
5176fdc4 193
771fe6b9
JG
194 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_RELOCS) {
195 p->chunk_relocs_idx = i;
196 }
197 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_IB) {
198 p->chunk_ib_idx = i;
5176fdc4
DA
199 /* zero length IB isn't useful */
200 if (p->chunks[i].length_dw == 0)
201 return -EINVAL;
771fe6b9 202 }
dfcf5f36
AD
203 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_CONST_IB) {
204 p->chunk_const_ib_idx = i;
205 /* zero length CONST IB isn't useful */
206 if (p->chunks[i].length_dw == 0)
207 return -EINVAL;
208 }
721604a1
JG
209 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_FLAGS) {
210 p->chunk_flags_idx = i;
211 /* zero length flags aren't useful */
212 if (p->chunks[i].length_dw == 0)
213 return -EINVAL;
e70f224c 214 }
5176fdc4 215
771fe6b9 216 p->chunks[i].length_dw = user_chunk.length_dw;
513bcb46 217 p->chunks[i].user_ptr = (void __user *)(unsigned long)user_chunk.chunk_data;
771fe6b9 218
513bcb46 219 cdata = (uint32_t *)(unsigned long)user_chunk.chunk_data;
721604a1
JG
220 if ((p->chunks[i].chunk_id == RADEON_CHUNK_ID_RELOCS) ||
221 (p->chunks[i].chunk_id == RADEON_CHUNK_ID_FLAGS)) {
513bcb46
DA
222 size = p->chunks[i].length_dw * sizeof(uint32_t);
223 p->chunks[i].kdata = kmalloc(size, GFP_KERNEL);
224 if (p->chunks[i].kdata == NULL) {
225 return -ENOMEM;
226 }
227 if (DRM_COPY_FROM_USER(p->chunks[i].kdata,
228 p->chunks[i].user_ptr, size)) {
229 return -EFAULT;
230 }
e70f224c 231 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_FLAGS) {
721604a1
JG
232 p->cs_flags = p->chunks[i].kdata[0];
233 if (p->chunks[i].length_dw > 1)
234 ring = p->chunks[i].kdata[1];
235 if (p->chunks[i].length_dw > 2)
236 priority = (s32)p->chunks[i].kdata[2];
e70f224c 237 }
771fe6b9
JG
238 }
239 }
721604a1 240
9b00147d
AD
241 /* these are KMS only */
242 if (p->rdev) {
243 if ((p->cs_flags & RADEON_CS_USE_VM) &&
244 !p->rdev->vm_manager.enabled) {
245 DRM_ERROR("VM not active on asic!\n");
246 return -EINVAL;
247 }
1b5475db 248
9b00147d
AD
249 /* we only support VM on SI+ */
250 if ((p->rdev->family >= CHIP_TAHITI) &&
251 ((p->cs_flags & RADEON_CS_USE_VM) == 0)) {
252 DRM_ERROR("VM required on SI+!\n");
253 return -EINVAL;
254 }
721604a1 255
9b00147d
AD
256 if (radeon_cs_get_ring(p, ring, priority))
257 return -EINVAL;
258 }
721604a1
JG
259
260 /* deal with non-vm */
261 if ((p->chunk_ib_idx != -1) &&
262 ((p->cs_flags & RADEON_CS_USE_VM) == 0) &&
263 (p->chunks[p->chunk_ib_idx].chunk_id == RADEON_CHUNK_ID_IB)) {
264 if (p->chunks[p->chunk_ib_idx].length_dw > (16 * 1024)) {
265 DRM_ERROR("cs IB too big: %d\n",
266 p->chunks[p->chunk_ib_idx].length_dw);
267 return -EINVAL;
268 }
6a7068b4
DA
269 if ((p->rdev->flags & RADEON_IS_AGP)) {
270 p->chunks[p->chunk_ib_idx].kpage[0] = kmalloc(PAGE_SIZE, GFP_KERNEL);
271 p->chunks[p->chunk_ib_idx].kpage[1] = kmalloc(PAGE_SIZE, GFP_KERNEL);
272 if (p->chunks[p->chunk_ib_idx].kpage[0] == NULL ||
273 p->chunks[p->chunk_ib_idx].kpage[1] == NULL) {
274 kfree(p->chunks[i].kpage[0]);
275 kfree(p->chunks[i].kpage[1]);
276 return -ENOMEM;
277 }
278 }
721604a1
JG
279 p->chunks[p->chunk_ib_idx].kpage_idx[0] = -1;
280 p->chunks[p->chunk_ib_idx].kpage_idx[1] = -1;
281 p->chunks[p->chunk_ib_idx].last_copied_page = -1;
282 p->chunks[p->chunk_ib_idx].last_page_index =
283 ((p->chunks[p->chunk_ib_idx].length_dw * 4) - 1) / PAGE_SIZE;
284 }
285
771fe6b9
JG
286 return 0;
287}
288
e43b5ec0
JG
289static void radeon_bo_vm_fence_va(struct radeon_cs_parser *parser,
290 struct radeon_fence *fence)
291{
292 struct radeon_fpriv *fpriv = parser->filp->driver_priv;
293 struct radeon_vm *vm = &fpriv->vm;
294 struct radeon_bo_list *lobj;
295
296 if (parser->chunk_ib_idx == -1) {
297 return;
298 }
299 if ((parser->cs_flags & RADEON_CS_USE_VM) == 0) {
300 return;
301 }
302
303 list_for_each_entry(lobj, &parser->validated, tv.head) {
304 struct radeon_bo_va *bo_va;
305 struct radeon_bo *rbo = lobj->bo;
306
307 bo_va = radeon_bo_va(rbo, vm);
308 radeon_fence_unref(&bo_va->fence);
309 bo_va->fence = radeon_fence_ref(fence);
310 }
311}
312
771fe6b9
JG
313/**
314 * cs_parser_fini() - clean parser states
315 * @parser: parser structure holding parsing context.
316 * @error: error number
317 *
318 * If error is set than unvalidate buffer, otherwise just free memory
319 * used by parsing context.
320 **/
321static void radeon_cs_parser_fini(struct radeon_cs_parser *parser, int error)
322{
323 unsigned i;
324
e43b5ec0
JG
325 if (!error) {
326 /* fence all bo va before ttm_eu_fence_buffer_objects so bo are still reserved */
327 radeon_bo_vm_fence_va(parser, parser->ib.fence);
147666fb 328 ttm_eu_fence_buffer_objects(&parser->validated,
f2e39221 329 parser->ib.fence);
e43b5ec0 330 } else {
147666fb 331 ttm_eu_backoff_reservation(&parser->validated);
e43b5ec0 332 }
147666fb 333
fcbc451b
PN
334 if (parser->relocs != NULL) {
335 for (i = 0; i < parser->nrelocs; i++) {
336 if (parser->relocs[i].gobj)
337 drm_gem_object_unreference_unlocked(parser->relocs[i].gobj);
338 }
771fe6b9 339 }
48e113e5 340 kfree(parser->track);
771fe6b9
JG
341 kfree(parser->relocs);
342 kfree(parser->relocs_ptr);
343 for (i = 0; i < parser->nchunks; i++) {
344 kfree(parser->chunks[i].kdata);
6a7068b4
DA
345 if ((parser->rdev->flags & RADEON_IS_AGP)) {
346 kfree(parser->chunks[i].kpage[0]);
347 kfree(parser->chunks[i].kpage[1]);
348 }
771fe6b9
JG
349 }
350 kfree(parser->chunks);
351 kfree(parser->chunks_array);
352 radeon_ib_free(parser->rdev, &parser->ib);
f2e39221 353 radeon_ib_free(parser->rdev, &parser->const_ib);
771fe6b9
JG
354}
355
721604a1
JG
356static int radeon_cs_ib_chunk(struct radeon_device *rdev,
357 struct radeon_cs_parser *parser)
358{
359 struct radeon_cs_chunk *ib_chunk;
360 int r;
361
362 if (parser->chunk_ib_idx == -1)
363 return 0;
364
365 if (parser->cs_flags & RADEON_CS_USE_VM)
366 return 0;
367
368 ib_chunk = &parser->chunks[parser->chunk_ib_idx];
369 /* Copy the packet into the IB, the parser will read from the
370 * input memory (cached) and write to the IB (which can be
371 * uncached).
372 */
373 r = radeon_ib_get(rdev, parser->ring, &parser->ib,
4bf3dd92 374 NULL, ib_chunk->length_dw * 4);
721604a1
JG
375 if (r) {
376 DRM_ERROR("Failed to get ib !\n");
377 return r;
378 }
f2e39221 379 parser->ib.length_dw = ib_chunk->length_dw;
eb0c19c5 380 r = radeon_cs_parse(rdev, parser->ring, parser);
721604a1
JG
381 if (r || parser->parser_error) {
382 DRM_ERROR("Invalid command stream !\n");
383 return r;
384 }
385 r = radeon_cs_finish_pages(parser);
386 if (r) {
387 DRM_ERROR("Invalid command stream !\n");
388 return r;
389 }
220907d9 390 radeon_cs_sync_rings(parser);
4ef72566 391 r = radeon_ib_schedule(rdev, &parser->ib, NULL);
721604a1
JG
392 if (r) {
393 DRM_ERROR("Failed to schedule IB !\n");
394 }
93bf888c 395 return r;
721604a1
JG
396}
397
398static int radeon_bo_vm_update_pte(struct radeon_cs_parser *parser,
399 struct radeon_vm *vm)
400{
401 struct radeon_bo_list *lobj;
402 struct radeon_bo *bo;
403 int r;
404
405 list_for_each_entry(lobj, &parser->validated, tv.head) {
406 bo = lobj->bo;
407 r = radeon_vm_bo_update_pte(parser->rdev, vm, bo, &bo->tbo.mem);
408 if (r) {
409 return r;
410 }
411 }
412 return 0;
413}
414
415static int radeon_cs_ib_vm_chunk(struct radeon_device *rdev,
416 struct radeon_cs_parser *parser)
417{
418 struct radeon_cs_chunk *ib_chunk;
419 struct radeon_fpriv *fpriv = parser->filp->driver_priv;
420 struct radeon_vm *vm = &fpriv->vm;
421 int r;
422
423 if (parser->chunk_ib_idx == -1)
424 return 0;
721604a1
JG
425 if ((parser->cs_flags & RADEON_CS_USE_VM) == 0)
426 return 0;
427
dfcf5f36
AD
428 if ((rdev->family >= CHIP_TAHITI) &&
429 (parser->chunk_const_ib_idx != -1)) {
430 ib_chunk = &parser->chunks[parser->chunk_const_ib_idx];
431 if (ib_chunk->length_dw > RADEON_IB_VM_MAX_SIZE) {
432 DRM_ERROR("cs IB CONST too big: %d\n", ib_chunk->length_dw);
433 return -EINVAL;
434 }
435 r = radeon_ib_get(rdev, parser->ring, &parser->const_ib,
4bf3dd92 436 vm, ib_chunk->length_dw * 4);
dfcf5f36
AD
437 if (r) {
438 DRM_ERROR("Failed to get const ib !\n");
439 return r;
440 }
f2e39221
JG
441 parser->const_ib.is_const_ib = true;
442 parser->const_ib.length_dw = ib_chunk->length_dw;
dfcf5f36 443 /* Copy the packet into the IB */
f2e39221 444 if (DRM_COPY_FROM_USER(parser->const_ib.ptr, ib_chunk->user_ptr,
dfcf5f36
AD
445 ib_chunk->length_dw * 4)) {
446 return -EFAULT;
447 }
f2e39221 448 r = radeon_ring_ib_parse(rdev, parser->ring, &parser->const_ib);
dfcf5f36
AD
449 if (r) {
450 return r;
451 }
452 }
453
721604a1
JG
454 ib_chunk = &parser->chunks[parser->chunk_ib_idx];
455 if (ib_chunk->length_dw > RADEON_IB_VM_MAX_SIZE) {
456 DRM_ERROR("cs IB too big: %d\n", ib_chunk->length_dw);
457 return -EINVAL;
458 }
459 r = radeon_ib_get(rdev, parser->ring, &parser->ib,
4bf3dd92 460 vm, ib_chunk->length_dw * 4);
721604a1
JG
461 if (r) {
462 DRM_ERROR("Failed to get ib !\n");
463 return r;
464 }
f2e39221 465 parser->ib.length_dw = ib_chunk->length_dw;
721604a1 466 /* Copy the packet into the IB */
f2e39221 467 if (DRM_COPY_FROM_USER(parser->ib.ptr, ib_chunk->user_ptr,
721604a1
JG
468 ib_chunk->length_dw * 4)) {
469 return -EFAULT;
470 }
f2e39221 471 r = radeon_ring_ib_parse(rdev, parser->ring, &parser->ib);
721604a1
JG
472 if (r) {
473 return r;
474 }
475
36ff39c4 476 mutex_lock(&rdev->vm_manager.lock);
721604a1
JG
477 mutex_lock(&vm->mutex);
478 r = radeon_vm_bind(rdev, vm);
479 if (r) {
480 goto out;
481 }
482 r = radeon_bo_vm_update_pte(parser, vm);
483 if (r) {
484 goto out;
485 }
220907d9 486 radeon_cs_sync_rings(parser);
9b40e5d8 487 radeon_cs_sync_to(parser, vm->last_flush);
dfcf5f36
AD
488
489 if ((rdev->family >= CHIP_TAHITI) &&
490 (parser->chunk_const_ib_idx != -1)) {
4ef72566
CK
491 r = radeon_ib_schedule(rdev, &parser->ib, &parser->const_ib);
492 } else {
493 r = radeon_ib_schedule(rdev, &parser->ib, NULL);
dfcf5f36
AD
494 }
495
721604a1
JG
496out:
497 if (!r) {
498 if (vm->fence) {
499 radeon_fence_unref(&vm->fence);
500 }
f2e39221 501 vm->fence = radeon_fence_ref(parser->ib.fence);
721604a1 502 }
36ff39c4
CK
503 mutex_unlock(&vm->mutex);
504 mutex_unlock(&rdev->vm_manager.lock);
721604a1
JG
505 return r;
506}
507
6c6f4783
CK
508static int radeon_cs_handle_lockup(struct radeon_device *rdev, int r)
509{
510 if (r == -EDEADLK) {
511 r = radeon_gpu_reset(rdev);
512 if (!r)
513 r = -EAGAIN;
514 }
515 return r;
516}
517
771fe6b9
JG
518int radeon_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
519{
520 struct radeon_device *rdev = dev->dev_private;
521 struct radeon_cs_parser parser;
771fe6b9
JG
522 int r;
523
dee53e7f 524 down_read(&rdev->exclusive_lock);
6b7746e8 525 if (!rdev->accel_working) {
dee53e7f 526 up_read(&rdev->exclusive_lock);
6b7746e8
JG
527 return -EBUSY;
528 }
771fe6b9
JG
529 /* initialize parser */
530 memset(&parser, 0, sizeof(struct radeon_cs_parser));
531 parser.filp = filp;
532 parser.rdev = rdev;
c8c15ff1 533 parser.dev = rdev->dev;
428c6e36 534 parser.family = rdev->family;
771fe6b9
JG
535 r = radeon_cs_parser_init(&parser, data);
536 if (r) {
537 DRM_ERROR("Failed to initialize parser !\n");
538 radeon_cs_parser_fini(&parser, r);
dee53e7f 539 up_read(&rdev->exclusive_lock);
6c6f4783 540 r = radeon_cs_handle_lockup(rdev, r);
771fe6b9
JG
541 return r;
542 }
771fe6b9
JG
543 r = radeon_cs_parser_relocs(&parser);
544 if (r) {
97f23b3d
DA
545 if (r != -ERESTARTSYS)
546 DRM_ERROR("Failed to parse relocation %d!\n", r);
771fe6b9 547 radeon_cs_parser_fini(&parser, r);
dee53e7f 548 up_read(&rdev->exclusive_lock);
6c6f4783 549 r = radeon_cs_handle_lockup(rdev, r);
771fe6b9
JG
550 return r;
551 }
721604a1 552 r = radeon_cs_ib_chunk(rdev, &parser);
771fe6b9 553 if (r) {
721604a1 554 goto out;
771fe6b9 555 }
721604a1 556 r = radeon_cs_ib_vm_chunk(rdev, &parser);
771fe6b9 557 if (r) {
721604a1 558 goto out;
771fe6b9 559 }
721604a1 560out:
771fe6b9 561 radeon_cs_parser_fini(&parser, r);
dee53e7f 562 up_read(&rdev->exclusive_lock);
6c6f4783 563 r = radeon_cs_handle_lockup(rdev, r);
771fe6b9
JG
564 return r;
565}
513bcb46
DA
566
567int radeon_cs_finish_pages(struct radeon_cs_parser *p)
568{
569 struct radeon_cs_chunk *ibc = &p->chunks[p->chunk_ib_idx];
570 int i;
571 int size = PAGE_SIZE;
572
573 for (i = ibc->last_copied_page + 1; i <= ibc->last_page_index; i++) {
574 if (i == ibc->last_page_index) {
575 size = (ibc->length_dw * 4) % PAGE_SIZE;
576 if (size == 0)
577 size = PAGE_SIZE;
578 }
579
f2e39221 580 if (DRM_COPY_FROM_USER(p->ib.ptr + (i * (PAGE_SIZE/4)),
513bcb46
DA
581 ibc->user_ptr + (i * PAGE_SIZE),
582 size))
583 return -EFAULT;
584 }
585 return 0;
586}
587
c4c7f314 588static int radeon_cs_update_pages(struct radeon_cs_parser *p, int pg_idx)
513bcb46
DA
589{
590 int new_page;
513bcb46
DA
591 struct radeon_cs_chunk *ibc = &p->chunks[p->chunk_ib_idx];
592 int i;
593 int size = PAGE_SIZE;
6a7068b4 594 bool copy1 = (p->rdev->flags & RADEON_IS_AGP) ? false : true;
513bcb46 595
c5e617e2 596 for (i = ibc->last_copied_page + 1; i < pg_idx; i++) {
f2e39221 597 if (DRM_COPY_FROM_USER(p->ib.ptr + (i * (PAGE_SIZE/4)),
513bcb46
DA
598 ibc->user_ptr + (i * PAGE_SIZE),
599 PAGE_SIZE)) {
600 p->parser_error = -EFAULT;
601 return 0;
602 }
603 }
604
513bcb46
DA
605 if (pg_idx == ibc->last_page_index) {
606 size = (ibc->length_dw * 4) % PAGE_SIZE;
6a7068b4
DA
607 if (size == 0)
608 size = PAGE_SIZE;
513bcb46
DA
609 }
610
6a7068b4
DA
611 new_page = ibc->kpage_idx[0] < ibc->kpage_idx[1] ? 0 : 1;
612 if (copy1)
f2e39221 613 ibc->kpage[new_page] = p->ib.ptr + (pg_idx * (PAGE_SIZE / 4));
6a7068b4 614
513bcb46
DA
615 if (DRM_COPY_FROM_USER(ibc->kpage[new_page],
616 ibc->user_ptr + (pg_idx * PAGE_SIZE),
617 size)) {
618 p->parser_error = -EFAULT;
619 return 0;
620 }
621
6a7068b4
DA
622 /* copy to IB for non single case */
623 if (!copy1)
f2e39221 624 memcpy((void *)(p->ib.ptr+(pg_idx*(PAGE_SIZE/4))), ibc->kpage[new_page], size);
513bcb46
DA
625
626 ibc->last_copied_page = pg_idx;
627 ibc->kpage_idx[new_page] = pg_idx;
628
629 return new_page;
630}
c4c7f314
DA
631
632u32 radeon_get_ib_value(struct radeon_cs_parser *p, int idx)
633{
634 struct radeon_cs_chunk *ibc = &p->chunks[p->chunk_ib_idx];
635 u32 pg_idx, pg_offset;
636 u32 idx_value = 0;
637 int new_page;
638
639 pg_idx = (idx * 4) / PAGE_SIZE;
640 pg_offset = (idx * 4) % PAGE_SIZE;
641
642 if (ibc->kpage_idx[0] == pg_idx)
643 return ibc->kpage[0][pg_offset/4];
644 if (ibc->kpage_idx[1] == pg_idx)
645 return ibc->kpage[1][pg_offset/4];
646
647 new_page = radeon_cs_update_pages(p, pg_idx);
648 if (new_page < 0) {
649 p->parser_error = new_page;
650 return 0;
651 }
652
653 idx_value = ibc->kpage[new_page][pg_offset/4];
654 return idx_value;
655}
This page took 0.24556 seconds and 5 git commands to generate.