drm/radeon: fix htile buffer size computation for command stream checker
[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 */
760285e7
DH
27#include <drm/drmP.h>
28#include <drm/radeon_drm.h>
771fe6b9
JG
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
1109ca09 35static int radeon_cs_parser_relocs(struct radeon_cs_parser *p)
771fe6b9
JG
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
289/**
290 * cs_parser_fini() - clean parser states
291 * @parser: parser structure holding parsing context.
292 * @error: error number
293 *
294 * If error is set than unvalidate buffer, otherwise just free memory
295 * used by parsing context.
296 **/
297static void radeon_cs_parser_fini(struct radeon_cs_parser *parser, int error)
298{
299 unsigned i;
300
e43b5ec0 301 if (!error) {
147666fb 302 ttm_eu_fence_buffer_objects(&parser->validated,
f2e39221 303 parser->ib.fence);
e43b5ec0 304 } else {
147666fb 305 ttm_eu_backoff_reservation(&parser->validated);
e43b5ec0 306 }
147666fb 307
fcbc451b
PN
308 if (parser->relocs != NULL) {
309 for (i = 0; i < parser->nrelocs; i++) {
310 if (parser->relocs[i].gobj)
311 drm_gem_object_unreference_unlocked(parser->relocs[i].gobj);
312 }
771fe6b9 313 }
48e113e5 314 kfree(parser->track);
771fe6b9
JG
315 kfree(parser->relocs);
316 kfree(parser->relocs_ptr);
317 for (i = 0; i < parser->nchunks; i++) {
318 kfree(parser->chunks[i].kdata);
6a7068b4
DA
319 if ((parser->rdev->flags & RADEON_IS_AGP)) {
320 kfree(parser->chunks[i].kpage[0]);
321 kfree(parser->chunks[i].kpage[1]);
322 }
771fe6b9
JG
323 }
324 kfree(parser->chunks);
325 kfree(parser->chunks_array);
326 radeon_ib_free(parser->rdev, &parser->ib);
f2e39221 327 radeon_ib_free(parser->rdev, &parser->const_ib);
771fe6b9
JG
328}
329
721604a1
JG
330static int radeon_cs_ib_chunk(struct radeon_device *rdev,
331 struct radeon_cs_parser *parser)
332{
333 struct radeon_cs_chunk *ib_chunk;
334 int r;
335
336 if (parser->chunk_ib_idx == -1)
337 return 0;
338
339 if (parser->cs_flags & RADEON_CS_USE_VM)
340 return 0;
341
342 ib_chunk = &parser->chunks[parser->chunk_ib_idx];
343 /* Copy the packet into the IB, the parser will read from the
344 * input memory (cached) and write to the IB (which can be
345 * uncached).
346 */
347 r = radeon_ib_get(rdev, parser->ring, &parser->ib,
4bf3dd92 348 NULL, ib_chunk->length_dw * 4);
721604a1
JG
349 if (r) {
350 DRM_ERROR("Failed to get ib !\n");
351 return r;
352 }
f2e39221 353 parser->ib.length_dw = ib_chunk->length_dw;
eb0c19c5 354 r = radeon_cs_parse(rdev, parser->ring, parser);
721604a1
JG
355 if (r || parser->parser_error) {
356 DRM_ERROR("Invalid command stream !\n");
357 return r;
358 }
359 r = radeon_cs_finish_pages(parser);
360 if (r) {
361 DRM_ERROR("Invalid command stream !\n");
362 return r;
363 }
220907d9 364 radeon_cs_sync_rings(parser);
4ef72566 365 r = radeon_ib_schedule(rdev, &parser->ib, NULL);
721604a1
JG
366 if (r) {
367 DRM_ERROR("Failed to schedule IB !\n");
368 }
93bf888c 369 return r;
721604a1
JG
370}
371
372static int radeon_bo_vm_update_pte(struct radeon_cs_parser *parser,
373 struct radeon_vm *vm)
374{
3e8970f9 375 struct radeon_device *rdev = parser->rdev;
721604a1
JG
376 struct radeon_bo_list *lobj;
377 struct radeon_bo *bo;
378 int r;
379
3e8970f9
JG
380 r = radeon_vm_bo_update_pte(rdev, vm, rdev->ring_tmp_bo.bo, &rdev->ring_tmp_bo.bo->tbo.mem);
381 if (r) {
382 return r;
383 }
721604a1
JG
384 list_for_each_entry(lobj, &parser->validated, tv.head) {
385 bo = lobj->bo;
386 r = radeon_vm_bo_update_pte(parser->rdev, vm, bo, &bo->tbo.mem);
387 if (r) {
388 return r;
389 }
390 }
391 return 0;
392}
393
394static int radeon_cs_ib_vm_chunk(struct radeon_device *rdev,
395 struct radeon_cs_parser *parser)
396{
397 struct radeon_cs_chunk *ib_chunk;
398 struct radeon_fpriv *fpriv = parser->filp->driver_priv;
399 struct radeon_vm *vm = &fpriv->vm;
400 int r;
401
402 if (parser->chunk_ib_idx == -1)
403 return 0;
721604a1
JG
404 if ((parser->cs_flags & RADEON_CS_USE_VM) == 0)
405 return 0;
406
dfcf5f36
AD
407 if ((rdev->family >= CHIP_TAHITI) &&
408 (parser->chunk_const_ib_idx != -1)) {
409 ib_chunk = &parser->chunks[parser->chunk_const_ib_idx];
410 if (ib_chunk->length_dw > RADEON_IB_VM_MAX_SIZE) {
411 DRM_ERROR("cs IB CONST too big: %d\n", ib_chunk->length_dw);
412 return -EINVAL;
413 }
414 r = radeon_ib_get(rdev, parser->ring, &parser->const_ib,
4bf3dd92 415 vm, ib_chunk->length_dw * 4);
dfcf5f36
AD
416 if (r) {
417 DRM_ERROR("Failed to get const ib !\n");
418 return r;
419 }
f2e39221
JG
420 parser->const_ib.is_const_ib = true;
421 parser->const_ib.length_dw = ib_chunk->length_dw;
dfcf5f36 422 /* Copy the packet into the IB */
f2e39221 423 if (DRM_COPY_FROM_USER(parser->const_ib.ptr, ib_chunk->user_ptr,
dfcf5f36
AD
424 ib_chunk->length_dw * 4)) {
425 return -EFAULT;
426 }
f2e39221 427 r = radeon_ring_ib_parse(rdev, parser->ring, &parser->const_ib);
dfcf5f36
AD
428 if (r) {
429 return r;
430 }
431 }
432
721604a1
JG
433 ib_chunk = &parser->chunks[parser->chunk_ib_idx];
434 if (ib_chunk->length_dw > RADEON_IB_VM_MAX_SIZE) {
435 DRM_ERROR("cs IB too big: %d\n", ib_chunk->length_dw);
436 return -EINVAL;
437 }
438 r = radeon_ib_get(rdev, parser->ring, &parser->ib,
4bf3dd92 439 vm, ib_chunk->length_dw * 4);
721604a1
JG
440 if (r) {
441 DRM_ERROR("Failed to get ib !\n");
442 return r;
443 }
f2e39221 444 parser->ib.length_dw = ib_chunk->length_dw;
721604a1 445 /* Copy the packet into the IB */
f2e39221 446 if (DRM_COPY_FROM_USER(parser->ib.ptr, ib_chunk->user_ptr,
721604a1
JG
447 ib_chunk->length_dw * 4)) {
448 return -EFAULT;
449 }
f2e39221 450 r = radeon_ring_ib_parse(rdev, parser->ring, &parser->ib);
721604a1
JG
451 if (r) {
452 return r;
453 }
454
36ff39c4 455 mutex_lock(&rdev->vm_manager.lock);
721604a1 456 mutex_lock(&vm->mutex);
ddf03f5c 457 r = radeon_vm_alloc_pt(rdev, vm);
721604a1
JG
458 if (r) {
459 goto out;
460 }
461 r = radeon_bo_vm_update_pte(parser, vm);
462 if (r) {
463 goto out;
464 }
220907d9 465 radeon_cs_sync_rings(parser);
1678dbc2 466 radeon_cs_sync_to(parser, vm->fence);
ee60e29f 467 radeon_cs_sync_to(parser, radeon_vm_grab_id(rdev, vm, parser->ring));
4ef72566 468
dfcf5f36
AD
469 if ((rdev->family >= CHIP_TAHITI) &&
470 (parser->chunk_const_ib_idx != -1)) {
4ef72566
CK
471 r = radeon_ib_schedule(rdev, &parser->ib, &parser->const_ib);
472 } else {
473 r = radeon_ib_schedule(rdev, &parser->ib, NULL);
dfcf5f36
AD
474 }
475
721604a1 476 if (!r) {
ee60e29f 477 radeon_vm_fence(rdev, vm, parser->ib.fence);
721604a1 478 }
ee60e29f
CK
479
480out:
13e55c38 481 radeon_vm_add_to_lru(rdev, vm);
36ff39c4
CK
482 mutex_unlock(&vm->mutex);
483 mutex_unlock(&rdev->vm_manager.lock);
721604a1
JG
484 return r;
485}
486
6c6f4783
CK
487static int radeon_cs_handle_lockup(struct radeon_device *rdev, int r)
488{
489 if (r == -EDEADLK) {
490 r = radeon_gpu_reset(rdev);
491 if (!r)
492 r = -EAGAIN;
493 }
494 return r;
495}
496
771fe6b9
JG
497int radeon_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
498{
499 struct radeon_device *rdev = dev->dev_private;
500 struct radeon_cs_parser parser;
771fe6b9
JG
501 int r;
502
dee53e7f 503 down_read(&rdev->exclusive_lock);
6b7746e8 504 if (!rdev->accel_working) {
dee53e7f 505 up_read(&rdev->exclusive_lock);
6b7746e8
JG
506 return -EBUSY;
507 }
771fe6b9
JG
508 /* initialize parser */
509 memset(&parser, 0, sizeof(struct radeon_cs_parser));
510 parser.filp = filp;
511 parser.rdev = rdev;
c8c15ff1 512 parser.dev = rdev->dev;
428c6e36 513 parser.family = rdev->family;
771fe6b9
JG
514 r = radeon_cs_parser_init(&parser, data);
515 if (r) {
516 DRM_ERROR("Failed to initialize parser !\n");
517 radeon_cs_parser_fini(&parser, r);
dee53e7f 518 up_read(&rdev->exclusive_lock);
6c6f4783 519 r = radeon_cs_handle_lockup(rdev, r);
771fe6b9
JG
520 return r;
521 }
771fe6b9
JG
522 r = radeon_cs_parser_relocs(&parser);
523 if (r) {
97f23b3d
DA
524 if (r != -ERESTARTSYS)
525 DRM_ERROR("Failed to parse relocation %d!\n", r);
771fe6b9 526 radeon_cs_parser_fini(&parser, r);
dee53e7f 527 up_read(&rdev->exclusive_lock);
6c6f4783 528 r = radeon_cs_handle_lockup(rdev, r);
771fe6b9
JG
529 return r;
530 }
721604a1 531 r = radeon_cs_ib_chunk(rdev, &parser);
771fe6b9 532 if (r) {
721604a1 533 goto out;
771fe6b9 534 }
721604a1 535 r = radeon_cs_ib_vm_chunk(rdev, &parser);
771fe6b9 536 if (r) {
721604a1 537 goto out;
771fe6b9 538 }
721604a1 539out:
771fe6b9 540 radeon_cs_parser_fini(&parser, r);
dee53e7f 541 up_read(&rdev->exclusive_lock);
6c6f4783 542 r = radeon_cs_handle_lockup(rdev, r);
771fe6b9
JG
543 return r;
544}
513bcb46
DA
545
546int radeon_cs_finish_pages(struct radeon_cs_parser *p)
547{
548 struct radeon_cs_chunk *ibc = &p->chunks[p->chunk_ib_idx];
549 int i;
550 int size = PAGE_SIZE;
551
552 for (i = ibc->last_copied_page + 1; i <= ibc->last_page_index; i++) {
553 if (i == ibc->last_page_index) {
554 size = (ibc->length_dw * 4) % PAGE_SIZE;
555 if (size == 0)
556 size = PAGE_SIZE;
557 }
558
f2e39221 559 if (DRM_COPY_FROM_USER(p->ib.ptr + (i * (PAGE_SIZE/4)),
513bcb46
DA
560 ibc->user_ptr + (i * PAGE_SIZE),
561 size))
562 return -EFAULT;
563 }
564 return 0;
565}
566
c4c7f314 567static int radeon_cs_update_pages(struct radeon_cs_parser *p, int pg_idx)
513bcb46
DA
568{
569 int new_page;
513bcb46
DA
570 struct radeon_cs_chunk *ibc = &p->chunks[p->chunk_ib_idx];
571 int i;
572 int size = PAGE_SIZE;
6a7068b4 573 bool copy1 = (p->rdev->flags & RADEON_IS_AGP) ? false : true;
513bcb46 574
c5e617e2 575 for (i = ibc->last_copied_page + 1; i < pg_idx; i++) {
f2e39221 576 if (DRM_COPY_FROM_USER(p->ib.ptr + (i * (PAGE_SIZE/4)),
513bcb46
DA
577 ibc->user_ptr + (i * PAGE_SIZE),
578 PAGE_SIZE)) {
579 p->parser_error = -EFAULT;
580 return 0;
581 }
582 }
583
513bcb46
DA
584 if (pg_idx == ibc->last_page_index) {
585 size = (ibc->length_dw * 4) % PAGE_SIZE;
6a7068b4
DA
586 if (size == 0)
587 size = PAGE_SIZE;
513bcb46
DA
588 }
589
6a7068b4
DA
590 new_page = ibc->kpage_idx[0] < ibc->kpage_idx[1] ? 0 : 1;
591 if (copy1)
f2e39221 592 ibc->kpage[new_page] = p->ib.ptr + (pg_idx * (PAGE_SIZE / 4));
6a7068b4 593
513bcb46
DA
594 if (DRM_COPY_FROM_USER(ibc->kpage[new_page],
595 ibc->user_ptr + (pg_idx * PAGE_SIZE),
596 size)) {
597 p->parser_error = -EFAULT;
598 return 0;
599 }
600
6a7068b4
DA
601 /* copy to IB for non single case */
602 if (!copy1)
f2e39221 603 memcpy((void *)(p->ib.ptr+(pg_idx*(PAGE_SIZE/4))), ibc->kpage[new_page], size);
513bcb46
DA
604
605 ibc->last_copied_page = pg_idx;
606 ibc->kpage_idx[new_page] = pg_idx;
607
608 return new_page;
609}
c4c7f314
DA
610
611u32 radeon_get_ib_value(struct radeon_cs_parser *p, int idx)
612{
613 struct radeon_cs_chunk *ibc = &p->chunks[p->chunk_ib_idx];
614 u32 pg_idx, pg_offset;
615 u32 idx_value = 0;
616 int new_page;
617
618 pg_idx = (idx * 4) / PAGE_SIZE;
619 pg_offset = (idx * 4) % PAGE_SIZE;
620
621 if (ibc->kpage_idx[0] == pg_idx)
622 return ibc->kpage[0][pg_offset/4];
623 if (ibc->kpage_idx[1] == pg_idx)
624 return ibc->kpage[1][pg_offset/4];
625
626 new_page = radeon_cs_update_pages(p, pg_idx);
627 if (new_page < 0) {
628 p->parser_error = new_page;
629 return 0;
630 }
631
632 idx_value = ibc->kpage[new_page][pg_offset/4];
633 return idx_value;
634}
This page took 0.254581 seconds and 5 git commands to generate.