blob: 0a9d1eb719cf96f72b0cdb844f486d3e19ebbfda [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 */
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];
Christian König16557f12011-10-24 14:59:17 +020061 for (j = 0; j < i; j++) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +020062 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);
Chris Wilsonbf79cb92010-08-04 14:19:46 +010075 return -ENOENT;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020076 }
77 p->relocs_ptr[i] = &p->relocs[i];
Daniel Vetter7e4d15d2011-02-18 17:59:17 +010078 p->relocs[i].robj = gem_to_radeon_bo(p->relocs[i].gobj);
Jerome Glisse4c788672009-11-20 14:29:23 +010079 p->relocs[i].lobj.bo = p->relocs[i].robj;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020080 p->relocs[i].lobj.wdomain = r->write_domain;
Thomas Hellstrom147666f2010-11-17 12:38:32 +000081 p->relocs[i].lobj.rdomain = r->read_domains;
82 p->relocs[i].lobj.tv.bo = &p->relocs[i].robj->tbo;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020083 p->relocs[i].handle = r->handle;
84 p->relocs[i].flags = r->flags;
Jerome Glisse4c788672009-11-20 14:29:23 +010085 radeon_bo_list_add_object(&p->relocs[i].lobj,
Thomas Hellstrom147666f2010-11-17 12:38:32 +000086 &p->validated);
Christian König93504fc2012-01-05 22:11:06 -050087
Christian König16557f12011-10-24 14:59:17 +020088 } else
89 p->relocs[i].handle = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020090 }
Jerome Glisse94429bb2010-02-15 21:36:33 +010091 return radeon_bo_list_validate(&p->validated);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020092}
93
Jerome Glisse721604a2012-01-05 22:11:05 -050094static 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:
Alex Deucher8d5ef7b2012-03-20 17:18:24 -0400106 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;
Jerome Glisse721604a2012-01-05 22:11:05 -0500113 break;
114 }
115 return 0;
116}
117
Christian König220907d2012-05-10 16:46:43 +0200118static void radeon_cs_sync_rings(struct radeon_cs_parser *p)
Christian König93504fc2012-01-05 22:11:06 -0500119{
Christian König220907d2012-05-10 16:46:43 +0200120 int i;
Christian König93504fc2012-01-05 22:11:06 -0500121
Christian Königcdac5502012-02-23 15:18:42 +0100122 for (i = 0; i < p->nrelocs; i++) {
Christian König220907d2012-05-10 16:46:43 +0200123 struct radeon_fence *a, *b;
Jerome Glisse133f4cb2012-05-09 15:34:44 +0200124
Christian Königcdac5502012-02-23 15:18:42 +0100125 if (!p->relocs[i].robj || !p->relocs[i].robj->tbo.sync_obj)
126 continue;
127
Christian König220907d2012-05-10 16:46:43 +0200128 a = p->relocs[i].robj->tbo.sync_obj;
129 b = p->ib.sync_to[a->ring];
130 p->ib.sync_to[a->ring] = radeon_fence_later(a, b);
Christian Königcdac5502012-02-23 15:18:42 +0100131 }
Christian König93504fc2012-01-05 22:11:06 -0500132}
133
Alex Deucher9b001472012-05-30 10:09:30 -0400134/* XXX: note that this is called from the legacy UMS CS ioctl as well */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200135int radeon_cs_parser_init(struct radeon_cs_parser *p, void *data)
136{
137 struct drm_radeon_cs *cs = data;
138 uint64_t *chunk_array_ptr;
Jerome Glisse721604a2012-01-05 22:11:05 -0500139 unsigned size, i;
140 u32 ring = RADEON_CS_RING_GFX;
141 s32 priority = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200142
143 if (!cs->num_chunks) {
144 return 0;
145 }
146 /* get chunks */
147 INIT_LIST_HEAD(&p->validated);
148 p->idx = 0;
Jerome Glissef2e39222012-05-09 15:35:02 +0200149 p->ib.sa_bo = NULL;
150 p->ib.semaphore = NULL;
151 p->const_ib.sa_bo = NULL;
152 p->const_ib.semaphore = NULL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200153 p->chunk_ib_idx = -1;
154 p->chunk_relocs_idx = -1;
Jerome Glisse721604a2012-01-05 22:11:05 -0500155 p->chunk_flags_idx = -1;
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400156 p->chunk_const_ib_idx = -1;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200157 p->chunks_array = kcalloc(cs->num_chunks, sizeof(uint64_t), GFP_KERNEL);
158 if (p->chunks_array == NULL) {
159 return -ENOMEM;
160 }
161 chunk_array_ptr = (uint64_t *)(unsigned long)(cs->chunks);
162 if (DRM_COPY_FROM_USER(p->chunks_array, chunk_array_ptr,
163 sizeof(uint64_t)*cs->num_chunks)) {
164 return -EFAULT;
165 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500166 p->cs_flags = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200167 p->nchunks = cs->num_chunks;
168 p->chunks = kcalloc(p->nchunks, sizeof(struct radeon_cs_chunk), GFP_KERNEL);
169 if (p->chunks == NULL) {
170 return -ENOMEM;
171 }
172 for (i = 0; i < p->nchunks; i++) {
173 struct drm_radeon_cs_chunk __user **chunk_ptr = NULL;
174 struct drm_radeon_cs_chunk user_chunk;
175 uint32_t __user *cdata;
176
177 chunk_ptr = (void __user*)(unsigned long)p->chunks_array[i];
178 if (DRM_COPY_FROM_USER(&user_chunk, chunk_ptr,
179 sizeof(struct drm_radeon_cs_chunk))) {
180 return -EFAULT;
181 }
Dave Airlie5176fdc2009-06-30 11:47:14 +1000182 p->chunks[i].length_dw = user_chunk.length_dw;
183 p->chunks[i].kdata = NULL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200184 p->chunks[i].chunk_id = user_chunk.chunk_id;
Dave Airlie5176fdc2009-06-30 11:47:14 +1000185
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200186 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_RELOCS) {
187 p->chunk_relocs_idx = i;
188 }
189 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_IB) {
190 p->chunk_ib_idx = i;
Dave Airlie5176fdc2009-06-30 11:47:14 +1000191 /* zero length IB isn't useful */
192 if (p->chunks[i].length_dw == 0)
193 return -EINVAL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200194 }
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400195 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_CONST_IB) {
196 p->chunk_const_ib_idx = i;
197 /* zero length CONST IB isn't useful */
198 if (p->chunks[i].length_dw == 0)
199 return -EINVAL;
200 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500201 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_FLAGS) {
202 p->chunk_flags_idx = i;
203 /* zero length flags aren't useful */
204 if (p->chunks[i].length_dw == 0)
205 return -EINVAL;
Marek Olšáke70f2242011-10-25 01:38:45 +0200206 }
Dave Airlie5176fdc2009-06-30 11:47:14 +1000207
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200208 p->chunks[i].length_dw = user_chunk.length_dw;
Dave Airlie513bcb42009-09-23 16:56:27 +1000209 p->chunks[i].user_ptr = (void __user *)(unsigned long)user_chunk.chunk_data;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200210
Dave Airlie513bcb42009-09-23 16:56:27 +1000211 cdata = (uint32_t *)(unsigned long)user_chunk.chunk_data;
Jerome Glisse721604a2012-01-05 22:11:05 -0500212 if ((p->chunks[i].chunk_id == RADEON_CHUNK_ID_RELOCS) ||
213 (p->chunks[i].chunk_id == RADEON_CHUNK_ID_FLAGS)) {
Dave Airlie513bcb42009-09-23 16:56:27 +1000214 size = p->chunks[i].length_dw * sizeof(uint32_t);
215 p->chunks[i].kdata = kmalloc(size, GFP_KERNEL);
216 if (p->chunks[i].kdata == NULL) {
217 return -ENOMEM;
218 }
219 if (DRM_COPY_FROM_USER(p->chunks[i].kdata,
220 p->chunks[i].user_ptr, size)) {
221 return -EFAULT;
222 }
Marek Olšáke70f2242011-10-25 01:38:45 +0200223 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_FLAGS) {
Jerome Glisse721604a2012-01-05 22:11:05 -0500224 p->cs_flags = p->chunks[i].kdata[0];
225 if (p->chunks[i].length_dw > 1)
226 ring = p->chunks[i].kdata[1];
227 if (p->chunks[i].length_dw > 2)
228 priority = (s32)p->chunks[i].kdata[2];
Marek Olšáke70f2242011-10-25 01:38:45 +0200229 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200230 }
231 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500232
Alex Deucher9b001472012-05-30 10:09:30 -0400233 /* these are KMS only */
234 if (p->rdev) {
235 if ((p->cs_flags & RADEON_CS_USE_VM) &&
236 !p->rdev->vm_manager.enabled) {
237 DRM_ERROR("VM not active on asic!\n");
238 return -EINVAL;
239 }
240
241 /* we only support VM on SI+ */
242 if ((p->rdev->family >= CHIP_TAHITI) &&
243 ((p->cs_flags & RADEON_CS_USE_VM) == 0)) {
244 DRM_ERROR("VM required on SI+!\n");
245 return -EINVAL;
246 }
247
248 if (radeon_cs_get_ring(p, ring, priority))
249 return -EINVAL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200250 }
Marek Olšáke70f2242011-10-25 01:38:45 +0200251
Jerome Glisse721604a2012-01-05 22:11:05 -0500252 /* deal with non-vm */
253 if ((p->chunk_ib_idx != -1) &&
254 ((p->cs_flags & RADEON_CS_USE_VM) == 0) &&
255 (p->chunks[p->chunk_ib_idx].chunk_id == RADEON_CHUNK_ID_IB)) {
256 if (p->chunks[p->chunk_ib_idx].length_dw > (16 * 1024)) {
257 DRM_ERROR("cs IB too big: %d\n",
258 p->chunks[p->chunk_ib_idx].length_dw);
259 return -EINVAL;
260 }
Dave Airlie6a7068b2012-04-03 16:23:41 +0100261 if ((p->rdev->flags & RADEON_IS_AGP)) {
262 p->chunks[p->chunk_ib_idx].kpage[0] = kmalloc(PAGE_SIZE, GFP_KERNEL);
263 p->chunks[p->chunk_ib_idx].kpage[1] = kmalloc(PAGE_SIZE, GFP_KERNEL);
264 if (p->chunks[p->chunk_ib_idx].kpage[0] == NULL ||
265 p->chunks[p->chunk_ib_idx].kpage[1] == NULL) {
266 kfree(p->chunks[i].kpage[0]);
267 kfree(p->chunks[i].kpage[1]);
268 return -ENOMEM;
269 }
270 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500271 p->chunks[p->chunk_ib_idx].kpage_idx[0] = -1;
272 p->chunks[p->chunk_ib_idx].kpage_idx[1] = -1;
273 p->chunks[p->chunk_ib_idx].last_copied_page = -1;
274 p->chunks[p->chunk_ib_idx].last_page_index =
275 ((p->chunks[p->chunk_ib_idx].length_dw * 4) - 1) / PAGE_SIZE;
276 }
277
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200278 return 0;
279}
280
Jerome Glissee43b5ec2012-08-06 12:32:21 -0400281static void radeon_bo_vm_fence_va(struct radeon_cs_parser *parser,
282 struct radeon_fence *fence)
283{
284 struct radeon_fpriv *fpriv = parser->filp->driver_priv;
285 struct radeon_vm *vm = &fpriv->vm;
286 struct radeon_bo_list *lobj;
287
288 if (parser->chunk_ib_idx == -1) {
289 return;
290 }
291 if ((parser->cs_flags & RADEON_CS_USE_VM) == 0) {
292 return;
293 }
294
295 list_for_each_entry(lobj, &parser->validated, tv.head) {
296 struct radeon_bo_va *bo_va;
297 struct radeon_bo *rbo = lobj->bo;
298
299 bo_va = radeon_bo_va(rbo, vm);
300 radeon_fence_unref(&bo_va->fence);
301 bo_va->fence = radeon_fence_ref(fence);
302 }
303}
304
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200305/**
306 * cs_parser_fini() - clean parser states
307 * @parser: parser structure holding parsing context.
308 * @error: error number
309 *
310 * If error is set than unvalidate buffer, otherwise just free memory
311 * used by parsing context.
312 **/
313static void radeon_cs_parser_fini(struct radeon_cs_parser *parser, int error)
314{
315 unsigned i;
316
Jerome Glissee43b5ec2012-08-06 12:32:21 -0400317 if (!error) {
318 /* fence all bo va before ttm_eu_fence_buffer_objects so bo are still reserved */
319 radeon_bo_vm_fence_va(parser, parser->ib.fence);
Thomas Hellstrom147666f2010-11-17 12:38:32 +0000320 ttm_eu_fence_buffer_objects(&parser->validated,
Jerome Glissef2e39222012-05-09 15:35:02 +0200321 parser->ib.fence);
Jerome Glissee43b5ec2012-08-06 12:32:21 -0400322 } else {
Thomas Hellstrom147666f2010-11-17 12:38:32 +0000323 ttm_eu_backoff_reservation(&parser->validated);
Jerome Glissee43b5ec2012-08-06 12:32:21 -0400324 }
Thomas Hellstrom147666f2010-11-17 12:38:32 +0000325
Pauli Nieminenfcbc4512010-03-19 07:44:33 +0000326 if (parser->relocs != NULL) {
327 for (i = 0; i < parser->nrelocs; i++) {
328 if (parser->relocs[i].gobj)
329 drm_gem_object_unreference_unlocked(parser->relocs[i].gobj);
330 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200331 }
Michel Dänzer48e113e2009-09-15 17:09:32 +0200332 kfree(parser->track);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200333 kfree(parser->relocs);
334 kfree(parser->relocs_ptr);
335 for (i = 0; i < parser->nchunks; i++) {
336 kfree(parser->chunks[i].kdata);
Dave Airlie6a7068b2012-04-03 16:23:41 +0100337 if ((parser->rdev->flags & RADEON_IS_AGP)) {
338 kfree(parser->chunks[i].kpage[0]);
339 kfree(parser->chunks[i].kpage[1]);
340 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200341 }
342 kfree(parser->chunks);
343 kfree(parser->chunks_array);
344 radeon_ib_free(parser->rdev, &parser->ib);
Jerome Glissef2e39222012-05-09 15:35:02 +0200345 radeon_ib_free(parser->rdev, &parser->const_ib);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200346}
347
Jerome Glisse721604a2012-01-05 22:11:05 -0500348static int radeon_cs_ib_chunk(struct radeon_device *rdev,
349 struct radeon_cs_parser *parser)
350{
351 struct radeon_cs_chunk *ib_chunk;
352 int r;
353
354 if (parser->chunk_ib_idx == -1)
355 return 0;
356
357 if (parser->cs_flags & RADEON_CS_USE_VM)
358 return 0;
359
360 ib_chunk = &parser->chunks[parser->chunk_ib_idx];
361 /* Copy the packet into the IB, the parser will read from the
362 * input memory (cached) and write to the IB (which can be
363 * uncached).
364 */
365 r = radeon_ib_get(rdev, parser->ring, &parser->ib,
Christian König4bf3dd92012-08-06 18:57:44 +0200366 NULL, ib_chunk->length_dw * 4);
Jerome Glisse721604a2012-01-05 22:11:05 -0500367 if (r) {
368 DRM_ERROR("Failed to get ib !\n");
369 return r;
370 }
Jerome Glissef2e39222012-05-09 15:35:02 +0200371 parser->ib.length_dw = ib_chunk->length_dw;
Christian Königeb0c19c2012-02-23 15:18:44 +0100372 r = radeon_cs_parse(rdev, parser->ring, parser);
Jerome Glisse721604a2012-01-05 22:11:05 -0500373 if (r || parser->parser_error) {
374 DRM_ERROR("Invalid command stream !\n");
375 return r;
376 }
377 r = radeon_cs_finish_pages(parser);
378 if (r) {
379 DRM_ERROR("Invalid command stream !\n");
380 return r;
381 }
Christian König220907d2012-05-10 16:46:43 +0200382 radeon_cs_sync_rings(parser);
Christian König4ef72562012-07-13 13:06:00 +0200383 r = radeon_ib_schedule(rdev, &parser->ib, NULL);
Jerome Glisse721604a2012-01-05 22:11:05 -0500384 if (r) {
385 DRM_ERROR("Failed to schedule IB !\n");
386 }
Christian König93bf8882012-07-03 14:05:41 +0200387 return r;
Jerome Glisse721604a2012-01-05 22:11:05 -0500388}
389
390static int radeon_bo_vm_update_pte(struct radeon_cs_parser *parser,
391 struct radeon_vm *vm)
392{
393 struct radeon_bo_list *lobj;
394 struct radeon_bo *bo;
395 int r;
396
397 list_for_each_entry(lobj, &parser->validated, tv.head) {
398 bo = lobj->bo;
399 r = radeon_vm_bo_update_pte(parser->rdev, vm, bo, &bo->tbo.mem);
400 if (r) {
401 return r;
402 }
403 }
404 return 0;
405}
406
407static int radeon_cs_ib_vm_chunk(struct radeon_device *rdev,
408 struct radeon_cs_parser *parser)
409{
410 struct radeon_cs_chunk *ib_chunk;
411 struct radeon_fpriv *fpriv = parser->filp->driver_priv;
412 struct radeon_vm *vm = &fpriv->vm;
413 int r;
414
415 if (parser->chunk_ib_idx == -1)
416 return 0;
Jerome Glisse721604a2012-01-05 22:11:05 -0500417 if ((parser->cs_flags & RADEON_CS_USE_VM) == 0)
418 return 0;
419
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400420 if ((rdev->family >= CHIP_TAHITI) &&
421 (parser->chunk_const_ib_idx != -1)) {
422 ib_chunk = &parser->chunks[parser->chunk_const_ib_idx];
423 if (ib_chunk->length_dw > RADEON_IB_VM_MAX_SIZE) {
424 DRM_ERROR("cs IB CONST too big: %d\n", ib_chunk->length_dw);
425 return -EINVAL;
426 }
427 r = radeon_ib_get(rdev, parser->ring, &parser->const_ib,
Christian König4bf3dd92012-08-06 18:57:44 +0200428 vm, ib_chunk->length_dw * 4);
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400429 if (r) {
430 DRM_ERROR("Failed to get const ib !\n");
431 return r;
432 }
Jerome Glissef2e39222012-05-09 15:35:02 +0200433 parser->const_ib.is_const_ib = true;
434 parser->const_ib.length_dw = ib_chunk->length_dw;
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400435 /* Copy the packet into the IB */
Jerome Glissef2e39222012-05-09 15:35:02 +0200436 if (DRM_COPY_FROM_USER(parser->const_ib.ptr, ib_chunk->user_ptr,
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400437 ib_chunk->length_dw * 4)) {
438 return -EFAULT;
439 }
Jerome Glissef2e39222012-05-09 15:35:02 +0200440 r = radeon_ring_ib_parse(rdev, parser->ring, &parser->const_ib);
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400441 if (r) {
442 return r;
443 }
444 }
445
Jerome Glisse721604a2012-01-05 22:11:05 -0500446 ib_chunk = &parser->chunks[parser->chunk_ib_idx];
447 if (ib_chunk->length_dw > RADEON_IB_VM_MAX_SIZE) {
448 DRM_ERROR("cs IB too big: %d\n", ib_chunk->length_dw);
449 return -EINVAL;
450 }
451 r = radeon_ib_get(rdev, parser->ring, &parser->ib,
Christian König4bf3dd92012-08-06 18:57:44 +0200452 vm, ib_chunk->length_dw * 4);
Jerome Glisse721604a2012-01-05 22:11:05 -0500453 if (r) {
454 DRM_ERROR("Failed to get ib !\n");
455 return r;
456 }
Jerome Glissef2e39222012-05-09 15:35:02 +0200457 parser->ib.length_dw = ib_chunk->length_dw;
Jerome Glisse721604a2012-01-05 22:11:05 -0500458 /* Copy the packet into the IB */
Jerome Glissef2e39222012-05-09 15:35:02 +0200459 if (DRM_COPY_FROM_USER(parser->ib.ptr, ib_chunk->user_ptr,
Jerome Glisse721604a2012-01-05 22:11:05 -0500460 ib_chunk->length_dw * 4)) {
461 return -EFAULT;
462 }
Jerome Glissef2e39222012-05-09 15:35:02 +0200463 r = radeon_ring_ib_parse(rdev, parser->ring, &parser->ib);
Jerome Glisse721604a2012-01-05 22:11:05 -0500464 if (r) {
465 return r;
466 }
467
Christian König36ff39c2012-05-09 10:07:08 +0200468 mutex_lock(&rdev->vm_manager.lock);
Jerome Glisse721604a2012-01-05 22:11:05 -0500469 mutex_lock(&vm->mutex);
470 r = radeon_vm_bind(rdev, vm);
471 if (r) {
472 goto out;
473 }
474 r = radeon_bo_vm_update_pte(parser, vm);
475 if (r) {
476 goto out;
477 }
Christian König220907d2012-05-10 16:46:43 +0200478 radeon_cs_sync_rings(parser);
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400479
480 if ((rdev->family >= CHIP_TAHITI) &&
481 (parser->chunk_const_ib_idx != -1)) {
Christian König4ef72562012-07-13 13:06:00 +0200482 r = radeon_ib_schedule(rdev, &parser->ib, &parser->const_ib);
483 } else {
484 r = radeon_ib_schedule(rdev, &parser->ib, NULL);
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400485 }
486
Jerome Glisse721604a2012-01-05 22:11:05 -0500487out:
488 if (!r) {
489 if (vm->fence) {
490 radeon_fence_unref(&vm->fence);
491 }
Jerome Glissef2e39222012-05-09 15:35:02 +0200492 vm->fence = radeon_fence_ref(parser->ib.fence);
Jerome Glisse721604a2012-01-05 22:11:05 -0500493 }
Christian König36ff39c2012-05-09 10:07:08 +0200494 mutex_unlock(&vm->mutex);
495 mutex_unlock(&rdev->vm_manager.lock);
Jerome Glisse721604a2012-01-05 22:11:05 -0500496 return r;
497}
498
Christian König6c6f4782012-05-02 15:11:19 +0200499static int radeon_cs_handle_lockup(struct radeon_device *rdev, int r)
500{
501 if (r == -EDEADLK) {
502 r = radeon_gpu_reset(rdev);
503 if (!r)
504 r = -EAGAIN;
505 }
506 return r;
507}
508
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200509int radeon_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
510{
511 struct radeon_device *rdev = dev->dev_private;
512 struct radeon_cs_parser parser;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200513 int r;
514
Jerome Glissedee53e72012-07-02 12:45:19 -0400515 down_read(&rdev->exclusive_lock);
Jerome Glisse6b7746e2012-02-20 17:57:20 -0500516 if (!rdev->accel_working) {
Jerome Glissedee53e72012-07-02 12:45:19 -0400517 up_read(&rdev->exclusive_lock);
Jerome Glisse6b7746e2012-02-20 17:57:20 -0500518 return -EBUSY;
519 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200520 /* initialize parser */
521 memset(&parser, 0, sizeof(struct radeon_cs_parser));
522 parser.filp = filp;
523 parser.rdev = rdev;
Jerome Glissec8c15ff2010-01-18 13:01:36 +0100524 parser.dev = rdev->dev;
Dave Airlie428c6e32011-06-08 19:58:29 +1000525 parser.family = rdev->family;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200526 r = radeon_cs_parser_init(&parser, data);
527 if (r) {
528 DRM_ERROR("Failed to initialize parser !\n");
529 radeon_cs_parser_fini(&parser, r);
Jerome Glissedee53e72012-07-02 12:45:19 -0400530 up_read(&rdev->exclusive_lock);
Christian König6c6f4782012-05-02 15:11:19 +0200531 r = radeon_cs_handle_lockup(rdev, r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200532 return r;
533 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200534 r = radeon_cs_parser_relocs(&parser);
535 if (r) {
Dave Airlie97f23b32010-03-19 10:33:44 +1000536 if (r != -ERESTARTSYS)
537 DRM_ERROR("Failed to parse relocation %d!\n", r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200538 radeon_cs_parser_fini(&parser, r);
Jerome Glissedee53e72012-07-02 12:45:19 -0400539 up_read(&rdev->exclusive_lock);
Christian König6c6f4782012-05-02 15:11:19 +0200540 r = radeon_cs_handle_lockup(rdev, r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200541 return r;
542 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500543 r = radeon_cs_ib_chunk(rdev, &parser);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200544 if (r) {
Jerome Glisse721604a2012-01-05 22:11:05 -0500545 goto out;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200546 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500547 r = radeon_cs_ib_vm_chunk(rdev, &parser);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200548 if (r) {
Jerome Glisse721604a2012-01-05 22:11:05 -0500549 goto out;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200550 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500551out:
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200552 radeon_cs_parser_fini(&parser, r);
Jerome Glissedee53e72012-07-02 12:45:19 -0400553 up_read(&rdev->exclusive_lock);
Christian König6c6f4782012-05-02 15:11:19 +0200554 r = radeon_cs_handle_lockup(rdev, r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200555 return r;
556}
Dave Airlie513bcb42009-09-23 16:56:27 +1000557
558int radeon_cs_finish_pages(struct radeon_cs_parser *p)
559{
560 struct radeon_cs_chunk *ibc = &p->chunks[p->chunk_ib_idx];
561 int i;
562 int size = PAGE_SIZE;
563
564 for (i = ibc->last_copied_page + 1; i <= ibc->last_page_index; i++) {
565 if (i == ibc->last_page_index) {
566 size = (ibc->length_dw * 4) % PAGE_SIZE;
567 if (size == 0)
568 size = PAGE_SIZE;
569 }
570
Jerome Glissef2e39222012-05-09 15:35:02 +0200571 if (DRM_COPY_FROM_USER(p->ib.ptr + (i * (PAGE_SIZE/4)),
Dave Airlie513bcb42009-09-23 16:56:27 +1000572 ibc->user_ptr + (i * PAGE_SIZE),
573 size))
574 return -EFAULT;
575 }
576 return 0;
577}
578
Dave Airliec4c7f312012-05-26 17:34:24 +0100579static int radeon_cs_update_pages(struct radeon_cs_parser *p, int pg_idx)
Dave Airlie513bcb42009-09-23 16:56:27 +1000580{
581 int new_page;
Dave Airlie513bcb42009-09-23 16:56:27 +1000582 struct radeon_cs_chunk *ibc = &p->chunks[p->chunk_ib_idx];
583 int i;
584 int size = PAGE_SIZE;
Dave Airlie6a7068b2012-04-03 16:23:41 +0100585 bool copy1 = (p->rdev->flags & RADEON_IS_AGP) ? false : true;
Dave Airlie513bcb42009-09-23 16:56:27 +1000586
Dave Airliec5e617e2009-09-26 09:03:39 +1000587 for (i = ibc->last_copied_page + 1; i < pg_idx; i++) {
Jerome Glissef2e39222012-05-09 15:35:02 +0200588 if (DRM_COPY_FROM_USER(p->ib.ptr + (i * (PAGE_SIZE/4)),
Dave Airlie513bcb42009-09-23 16:56:27 +1000589 ibc->user_ptr + (i * PAGE_SIZE),
590 PAGE_SIZE)) {
591 p->parser_error = -EFAULT;
592 return 0;
593 }
594 }
595
Dave Airlie513bcb42009-09-23 16:56:27 +1000596 if (pg_idx == ibc->last_page_index) {
597 size = (ibc->length_dw * 4) % PAGE_SIZE;
Dave Airlie6a7068b2012-04-03 16:23:41 +0100598 if (size == 0)
599 size = PAGE_SIZE;
Dave Airlie513bcb42009-09-23 16:56:27 +1000600 }
601
Dave Airlie6a7068b2012-04-03 16:23:41 +0100602 new_page = ibc->kpage_idx[0] < ibc->kpage_idx[1] ? 0 : 1;
603 if (copy1)
Jerome Glissef2e39222012-05-09 15:35:02 +0200604 ibc->kpage[new_page] = p->ib.ptr + (pg_idx * (PAGE_SIZE / 4));
Dave Airlie6a7068b2012-04-03 16:23:41 +0100605
Dave Airlie513bcb42009-09-23 16:56:27 +1000606 if (DRM_COPY_FROM_USER(ibc->kpage[new_page],
607 ibc->user_ptr + (pg_idx * PAGE_SIZE),
608 size)) {
609 p->parser_error = -EFAULT;
610 return 0;
611 }
612
Dave Airlie6a7068b2012-04-03 16:23:41 +0100613 /* copy to IB for non single case */
614 if (!copy1)
Jerome Glissef2e39222012-05-09 15:35:02 +0200615 memcpy((void *)(p->ib.ptr+(pg_idx*(PAGE_SIZE/4))), ibc->kpage[new_page], size);
Dave Airlie513bcb42009-09-23 16:56:27 +1000616
617 ibc->last_copied_page = pg_idx;
618 ibc->kpage_idx[new_page] = pg_idx;
619
620 return new_page;
621}
Dave Airliec4c7f312012-05-26 17:34:24 +0100622
623u32 radeon_get_ib_value(struct radeon_cs_parser *p, int idx)
624{
625 struct radeon_cs_chunk *ibc = &p->chunks[p->chunk_ib_idx];
626 u32 pg_idx, pg_offset;
627 u32 idx_value = 0;
628 int new_page;
629
630 pg_idx = (idx * 4) / PAGE_SIZE;
631 pg_offset = (idx * 4) % PAGE_SIZE;
632
633 if (ibc->kpage_idx[0] == pg_idx)
634 return ibc->kpage[0][pg_offset/4];
635 if (ibc->kpage_idx[1] == pg_idx)
636 return ibc->kpage[1][pg_offset/4];
637
638 new_page = radeon_cs_update_pages(p, pg_idx);
639 if (new_page < 0) {
640 p->parser_error = new_page;
641 return 0;
642 }
643
644 idx_value = ibc->kpage[new_page][pg_offset/4];
645 return idx_value;
646}