blob: 300fc25d90030ac7be3ae0b6ebb573e587b40d62 [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önigf82cbdd2012-08-09 16:35:36 +0200118static 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
Christian König220907d2012-05-10 16:46:43 +0200130static void radeon_cs_sync_rings(struct radeon_cs_parser *p)
Christian König93504fc2012-01-05 22:11:06 -0500131{
Christian König220907d2012-05-10 16:46:43 +0200132 int i;
Christian König93504fc2012-01-05 22:11:06 -0500133
Christian Königcdac5502012-02-23 15:18:42 +0100134 for (i = 0; i < p->nrelocs; i++) {
Christian Königf82cbdd2012-08-09 16:35:36 +0200135 if (!p->relocs[i].robj)
Christian Königcdac5502012-02-23 15:18:42 +0100136 continue;
137
Christian Königf82cbdd2012-08-09 16:35:36 +0200138 radeon_cs_sync_to(p, p->relocs[i].robj->tbo.sync_obj);
Christian Königcdac5502012-02-23 15:18:42 +0100139 }
Christian König93504fc2012-01-05 22:11:06 -0500140}
141
Alex Deucher9b001472012-05-30 10:09:30 -0400142/* XXX: note that this is called from the legacy UMS CS ioctl as well */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200143int 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;
Jerome Glisse721604a2012-01-05 22:11:05 -0500147 unsigned size, i;
148 u32 ring = RADEON_CS_RING_GFX;
149 s32 priority = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200150
151 if (!cs->num_chunks) {
152 return 0;
153 }
154 /* get chunks */
155 INIT_LIST_HEAD(&p->validated);
156 p->idx = 0;
Jerome Glissef2e39222012-05-09 15:35:02 +0200157 p->ib.sa_bo = NULL;
158 p->ib.semaphore = NULL;
159 p->const_ib.sa_bo = NULL;
160 p->const_ib.semaphore = NULL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200161 p->chunk_ib_idx = -1;
162 p->chunk_relocs_idx = -1;
Jerome Glisse721604a2012-01-05 22:11:05 -0500163 p->chunk_flags_idx = -1;
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400164 p->chunk_const_ib_idx = -1;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200165 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 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500174 p->cs_flags = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200175 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 }
Dave Airlie5176fdc2009-06-30 11:47:14 +1000190 p->chunks[i].length_dw = user_chunk.length_dw;
191 p->chunks[i].kdata = NULL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200192 p->chunks[i].chunk_id = user_chunk.chunk_id;
Dave Airlie5176fdc2009-06-30 11:47:14 +1000193
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200194 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;
Dave Airlie5176fdc2009-06-30 11:47:14 +1000199 /* zero length IB isn't useful */
200 if (p->chunks[i].length_dw == 0)
201 return -EINVAL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200202 }
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400203 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 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500209 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;
Marek Olšáke70f2242011-10-25 01:38:45 +0200214 }
Dave Airlie5176fdc2009-06-30 11:47:14 +1000215
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200216 p->chunks[i].length_dw = user_chunk.length_dw;
Dave Airlie513bcb42009-09-23 16:56:27 +1000217 p->chunks[i].user_ptr = (void __user *)(unsigned long)user_chunk.chunk_data;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200218
Dave Airlie513bcb42009-09-23 16:56:27 +1000219 cdata = (uint32_t *)(unsigned long)user_chunk.chunk_data;
Jerome Glisse721604a2012-01-05 22:11:05 -0500220 if ((p->chunks[i].chunk_id == RADEON_CHUNK_ID_RELOCS) ||
221 (p->chunks[i].chunk_id == RADEON_CHUNK_ID_FLAGS)) {
Dave Airlie513bcb42009-09-23 16:56:27 +1000222 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 }
Marek Olšáke70f2242011-10-25 01:38:45 +0200231 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_FLAGS) {
Jerome Glisse721604a2012-01-05 22:11:05 -0500232 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];
Marek Olšáke70f2242011-10-25 01:38:45 +0200237 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200238 }
239 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500240
Alex Deucher9b001472012-05-30 10:09:30 -0400241 /* 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 }
248
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 }
255
256 if (radeon_cs_get_ring(p, ring, priority))
257 return -EINVAL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200258 }
Marek Olšáke70f2242011-10-25 01:38:45 +0200259
Jerome Glisse721604a2012-01-05 22:11:05 -0500260 /* 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 }
Dave Airlie6a7068b2012-04-03 16:23:41 +0100269 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 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500279 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
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200286 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
Jerome Glissee43b5ec2012-08-06 12:32:21 -0400301 if (!error) {
Thomas Hellstrom147666f2010-11-17 12:38:32 +0000302 ttm_eu_fence_buffer_objects(&parser->validated,
Jerome Glissef2e39222012-05-09 15:35:02 +0200303 parser->ib.fence);
Jerome Glissee43b5ec2012-08-06 12:32:21 -0400304 } else {
Thomas Hellstrom147666f2010-11-17 12:38:32 +0000305 ttm_eu_backoff_reservation(&parser->validated);
Jerome Glissee43b5ec2012-08-06 12:32:21 -0400306 }
Thomas Hellstrom147666f2010-11-17 12:38:32 +0000307
Pauli Nieminenfcbc4512010-03-19 07:44:33 +0000308 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 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200313 }
Michel Dänzer48e113e2009-09-15 17:09:32 +0200314 kfree(parser->track);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200315 kfree(parser->relocs);
316 kfree(parser->relocs_ptr);
317 for (i = 0; i < parser->nchunks; i++) {
318 kfree(parser->chunks[i].kdata);
Dave Airlie6a7068b2012-04-03 16:23:41 +0100319 if ((parser->rdev->flags & RADEON_IS_AGP)) {
320 kfree(parser->chunks[i].kpage[0]);
321 kfree(parser->chunks[i].kpage[1]);
322 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200323 }
324 kfree(parser->chunks);
325 kfree(parser->chunks_array);
326 radeon_ib_free(parser->rdev, &parser->ib);
Jerome Glissef2e39222012-05-09 15:35:02 +0200327 radeon_ib_free(parser->rdev, &parser->const_ib);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200328}
329
Jerome Glisse721604a2012-01-05 22:11:05 -0500330static 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,
Christian König4bf3dd92012-08-06 18:57:44 +0200348 NULL, ib_chunk->length_dw * 4);
Jerome Glisse721604a2012-01-05 22:11:05 -0500349 if (r) {
350 DRM_ERROR("Failed to get ib !\n");
351 return r;
352 }
Jerome Glissef2e39222012-05-09 15:35:02 +0200353 parser->ib.length_dw = ib_chunk->length_dw;
Christian Königeb0c19c2012-02-23 15:18:44 +0100354 r = radeon_cs_parse(rdev, parser->ring, parser);
Jerome Glisse721604a2012-01-05 22:11:05 -0500355 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 }
Christian König220907d2012-05-10 16:46:43 +0200364 radeon_cs_sync_rings(parser);
Christian König4ef72562012-07-13 13:06:00 +0200365 r = radeon_ib_schedule(rdev, &parser->ib, NULL);
Jerome Glisse721604a2012-01-05 22:11:05 -0500366 if (r) {
367 DRM_ERROR("Failed to schedule IB !\n");
368 }
Christian König93bf8882012-07-03 14:05:41 +0200369 return r;
Jerome Glisse721604a2012-01-05 22:11:05 -0500370}
371
372static int radeon_bo_vm_update_pte(struct radeon_cs_parser *parser,
373 struct radeon_vm *vm)
374{
375 struct radeon_bo_list *lobj;
376 struct radeon_bo *bo;
377 int r;
378
379 list_for_each_entry(lobj, &parser->validated, tv.head) {
380 bo = lobj->bo;
381 r = radeon_vm_bo_update_pte(parser->rdev, vm, bo, &bo->tbo.mem);
382 if (r) {
383 return r;
384 }
385 }
386 return 0;
387}
388
389static int radeon_cs_ib_vm_chunk(struct radeon_device *rdev,
390 struct radeon_cs_parser *parser)
391{
392 struct radeon_cs_chunk *ib_chunk;
393 struct radeon_fpriv *fpriv = parser->filp->driver_priv;
394 struct radeon_vm *vm = &fpriv->vm;
395 int r;
396
397 if (parser->chunk_ib_idx == -1)
398 return 0;
Jerome Glisse721604a2012-01-05 22:11:05 -0500399 if ((parser->cs_flags & RADEON_CS_USE_VM) == 0)
400 return 0;
401
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400402 if ((rdev->family >= CHIP_TAHITI) &&
403 (parser->chunk_const_ib_idx != -1)) {
404 ib_chunk = &parser->chunks[parser->chunk_const_ib_idx];
405 if (ib_chunk->length_dw > RADEON_IB_VM_MAX_SIZE) {
406 DRM_ERROR("cs IB CONST too big: %d\n", ib_chunk->length_dw);
407 return -EINVAL;
408 }
409 r = radeon_ib_get(rdev, parser->ring, &parser->const_ib,
Christian König4bf3dd92012-08-06 18:57:44 +0200410 vm, ib_chunk->length_dw * 4);
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400411 if (r) {
412 DRM_ERROR("Failed to get const ib !\n");
413 return r;
414 }
Jerome Glissef2e39222012-05-09 15:35:02 +0200415 parser->const_ib.is_const_ib = true;
416 parser->const_ib.length_dw = ib_chunk->length_dw;
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400417 /* Copy the packet into the IB */
Jerome Glissef2e39222012-05-09 15:35:02 +0200418 if (DRM_COPY_FROM_USER(parser->const_ib.ptr, ib_chunk->user_ptr,
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400419 ib_chunk->length_dw * 4)) {
420 return -EFAULT;
421 }
Jerome Glissef2e39222012-05-09 15:35:02 +0200422 r = radeon_ring_ib_parse(rdev, parser->ring, &parser->const_ib);
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400423 if (r) {
424 return r;
425 }
426 }
427
Jerome Glisse721604a2012-01-05 22:11:05 -0500428 ib_chunk = &parser->chunks[parser->chunk_ib_idx];
429 if (ib_chunk->length_dw > RADEON_IB_VM_MAX_SIZE) {
430 DRM_ERROR("cs IB too big: %d\n", ib_chunk->length_dw);
431 return -EINVAL;
432 }
433 r = radeon_ib_get(rdev, parser->ring, &parser->ib,
Christian König4bf3dd92012-08-06 18:57:44 +0200434 vm, ib_chunk->length_dw * 4);
Jerome Glisse721604a2012-01-05 22:11:05 -0500435 if (r) {
436 DRM_ERROR("Failed to get ib !\n");
437 return r;
438 }
Jerome Glissef2e39222012-05-09 15:35:02 +0200439 parser->ib.length_dw = ib_chunk->length_dw;
Jerome Glisse721604a2012-01-05 22:11:05 -0500440 /* Copy the packet into the IB */
Jerome Glissef2e39222012-05-09 15:35:02 +0200441 if (DRM_COPY_FROM_USER(parser->ib.ptr, ib_chunk->user_ptr,
Jerome Glisse721604a2012-01-05 22:11:05 -0500442 ib_chunk->length_dw * 4)) {
443 return -EFAULT;
444 }
Jerome Glissef2e39222012-05-09 15:35:02 +0200445 r = radeon_ring_ib_parse(rdev, parser->ring, &parser->ib);
Jerome Glisse721604a2012-01-05 22:11:05 -0500446 if (r) {
447 return r;
448 }
449
Christian König36ff39c2012-05-09 10:07:08 +0200450 mutex_lock(&rdev->vm_manager.lock);
Jerome Glisse721604a2012-01-05 22:11:05 -0500451 mutex_lock(&vm->mutex);
Christian Königddf03f52012-08-09 20:02:28 +0200452 r = radeon_vm_alloc_pt(rdev, vm);
Jerome Glisse721604a2012-01-05 22:11:05 -0500453 if (r) {
454 goto out;
455 }
456 r = radeon_bo_vm_update_pte(parser, vm);
457 if (r) {
458 goto out;
459 }
Christian König220907d2012-05-10 16:46:43 +0200460 radeon_cs_sync_rings(parser);
Christian König9b40e5d2012-08-08 12:22:43 +0200461 radeon_cs_sync_to(parser, vm->last_flush);
Christian Königee60e292012-08-09 16:21:08 +0200462 radeon_cs_sync_to(parser, radeon_vm_grab_id(rdev, vm, parser->ring));
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400463
464 if ((rdev->family >= CHIP_TAHITI) &&
465 (parser->chunk_const_ib_idx != -1)) {
Christian König4ef72562012-07-13 13:06:00 +0200466 r = radeon_ib_schedule(rdev, &parser->ib, &parser->const_ib);
467 } else {
468 r = radeon_ib_schedule(rdev, &parser->ib, NULL);
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400469 }
470
Jerome Glisse721604a2012-01-05 22:11:05 -0500471 if (!r) {
Christian Königee60e292012-08-09 16:21:08 +0200472 radeon_vm_fence(rdev, vm, parser->ib.fence);
Jerome Glisse721604a2012-01-05 22:11:05 -0500473 }
Christian Königee60e292012-08-09 16:21:08 +0200474
475out:
Christian König36ff39c2012-05-09 10:07:08 +0200476 mutex_unlock(&vm->mutex);
477 mutex_unlock(&rdev->vm_manager.lock);
Jerome Glisse721604a2012-01-05 22:11:05 -0500478 return r;
479}
480
Christian König6c6f4782012-05-02 15:11:19 +0200481static int radeon_cs_handle_lockup(struct radeon_device *rdev, int r)
482{
483 if (r == -EDEADLK) {
484 r = radeon_gpu_reset(rdev);
485 if (!r)
486 r = -EAGAIN;
487 }
488 return r;
489}
490
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200491int radeon_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
492{
493 struct radeon_device *rdev = dev->dev_private;
494 struct radeon_cs_parser parser;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200495 int r;
496
Jerome Glissedee53e72012-07-02 12:45:19 -0400497 down_read(&rdev->exclusive_lock);
Jerome Glisse6b7746e2012-02-20 17:57:20 -0500498 if (!rdev->accel_working) {
Jerome Glissedee53e72012-07-02 12:45:19 -0400499 up_read(&rdev->exclusive_lock);
Jerome Glisse6b7746e2012-02-20 17:57:20 -0500500 return -EBUSY;
501 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200502 /* initialize parser */
503 memset(&parser, 0, sizeof(struct radeon_cs_parser));
504 parser.filp = filp;
505 parser.rdev = rdev;
Jerome Glissec8c15ff2010-01-18 13:01:36 +0100506 parser.dev = rdev->dev;
Dave Airlie428c6e32011-06-08 19:58:29 +1000507 parser.family = rdev->family;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200508 r = radeon_cs_parser_init(&parser, data);
509 if (r) {
510 DRM_ERROR("Failed to initialize parser !\n");
511 radeon_cs_parser_fini(&parser, r);
Jerome Glissedee53e72012-07-02 12:45:19 -0400512 up_read(&rdev->exclusive_lock);
Christian König6c6f4782012-05-02 15:11:19 +0200513 r = radeon_cs_handle_lockup(rdev, r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200514 return r;
515 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200516 r = radeon_cs_parser_relocs(&parser);
517 if (r) {
Dave Airlie97f23b32010-03-19 10:33:44 +1000518 if (r != -ERESTARTSYS)
519 DRM_ERROR("Failed to parse relocation %d!\n", r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200520 radeon_cs_parser_fini(&parser, r);
Jerome Glissedee53e72012-07-02 12:45:19 -0400521 up_read(&rdev->exclusive_lock);
Christian König6c6f4782012-05-02 15:11:19 +0200522 r = radeon_cs_handle_lockup(rdev, r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200523 return r;
524 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500525 r = radeon_cs_ib_chunk(rdev, &parser);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200526 if (r) {
Jerome Glisse721604a2012-01-05 22:11:05 -0500527 goto out;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200528 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500529 r = radeon_cs_ib_vm_chunk(rdev, &parser);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200530 if (r) {
Jerome Glisse721604a2012-01-05 22:11:05 -0500531 goto out;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200532 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500533out:
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200534 radeon_cs_parser_fini(&parser, r);
Jerome Glissedee53e72012-07-02 12:45:19 -0400535 up_read(&rdev->exclusive_lock);
Christian König6c6f4782012-05-02 15:11:19 +0200536 r = radeon_cs_handle_lockup(rdev, r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200537 return r;
538}
Dave Airlie513bcb42009-09-23 16:56:27 +1000539
540int radeon_cs_finish_pages(struct radeon_cs_parser *p)
541{
542 struct radeon_cs_chunk *ibc = &p->chunks[p->chunk_ib_idx];
543 int i;
544 int size = PAGE_SIZE;
545
546 for (i = ibc->last_copied_page + 1; i <= ibc->last_page_index; i++) {
547 if (i == ibc->last_page_index) {
548 size = (ibc->length_dw * 4) % PAGE_SIZE;
549 if (size == 0)
550 size = PAGE_SIZE;
551 }
552
Jerome Glissef2e39222012-05-09 15:35:02 +0200553 if (DRM_COPY_FROM_USER(p->ib.ptr + (i * (PAGE_SIZE/4)),
Dave Airlie513bcb42009-09-23 16:56:27 +1000554 ibc->user_ptr + (i * PAGE_SIZE),
555 size))
556 return -EFAULT;
557 }
558 return 0;
559}
560
Dave Airliec4c7f312012-05-26 17:34:24 +0100561static int radeon_cs_update_pages(struct radeon_cs_parser *p, int pg_idx)
Dave Airlie513bcb42009-09-23 16:56:27 +1000562{
563 int new_page;
Dave Airlie513bcb42009-09-23 16:56:27 +1000564 struct radeon_cs_chunk *ibc = &p->chunks[p->chunk_ib_idx];
565 int i;
566 int size = PAGE_SIZE;
Dave Airlie6a7068b2012-04-03 16:23:41 +0100567 bool copy1 = (p->rdev->flags & RADEON_IS_AGP) ? false : true;
Dave Airlie513bcb42009-09-23 16:56:27 +1000568
Dave Airliec5e617e2009-09-26 09:03:39 +1000569 for (i = ibc->last_copied_page + 1; i < pg_idx; i++) {
Jerome Glissef2e39222012-05-09 15:35:02 +0200570 if (DRM_COPY_FROM_USER(p->ib.ptr + (i * (PAGE_SIZE/4)),
Dave Airlie513bcb42009-09-23 16:56:27 +1000571 ibc->user_ptr + (i * PAGE_SIZE),
572 PAGE_SIZE)) {
573 p->parser_error = -EFAULT;
574 return 0;
575 }
576 }
577
Dave Airlie513bcb42009-09-23 16:56:27 +1000578 if (pg_idx == ibc->last_page_index) {
579 size = (ibc->length_dw * 4) % PAGE_SIZE;
Dave Airlie6a7068b2012-04-03 16:23:41 +0100580 if (size == 0)
581 size = PAGE_SIZE;
Dave Airlie513bcb42009-09-23 16:56:27 +1000582 }
583
Dave Airlie6a7068b2012-04-03 16:23:41 +0100584 new_page = ibc->kpage_idx[0] < ibc->kpage_idx[1] ? 0 : 1;
585 if (copy1)
Jerome Glissef2e39222012-05-09 15:35:02 +0200586 ibc->kpage[new_page] = p->ib.ptr + (pg_idx * (PAGE_SIZE / 4));
Dave Airlie6a7068b2012-04-03 16:23:41 +0100587
Dave Airlie513bcb42009-09-23 16:56:27 +1000588 if (DRM_COPY_FROM_USER(ibc->kpage[new_page],
589 ibc->user_ptr + (pg_idx * PAGE_SIZE),
590 size)) {
591 p->parser_error = -EFAULT;
592 return 0;
593 }
594
Dave Airlie6a7068b2012-04-03 16:23:41 +0100595 /* copy to IB for non single case */
596 if (!copy1)
Jerome Glissef2e39222012-05-09 15:35:02 +0200597 memcpy((void *)(p->ib.ptr+(pg_idx*(PAGE_SIZE/4))), ibc->kpage[new_page], size);
Dave Airlie513bcb42009-09-23 16:56:27 +1000598
599 ibc->last_copied_page = pg_idx;
600 ibc->kpage_idx[new_page] = pg_idx;
601
602 return new_page;
603}
Dave Airliec4c7f312012-05-26 17:34:24 +0100604
605u32 radeon_get_ib_value(struct radeon_cs_parser *p, int idx)
606{
607 struct radeon_cs_chunk *ibc = &p->chunks[p->chunk_ib_idx];
608 u32 pg_idx, pg_offset;
609 u32 idx_value = 0;
610 int new_page;
611
612 pg_idx = (idx * 4) / PAGE_SIZE;
613 pg_offset = (idx * 4) % PAGE_SIZE;
614
615 if (ibc->kpage_idx[0] == pg_idx)
616 return ibc->kpage[0][pg_offset/4];
617 if (ibc->kpage_idx[1] == pg_idx)
618 return ibc->kpage[1][pg_offset/4];
619
620 new_page = radeon_cs_update_pages(p, pg_idx);
621 if (new_page < 0) {
622 p->parser_error = new_page;
623 return 0;
624 }
625
626 idx_value = ibc->kpage[new_page][pg_offset/4];
627 return idx_value;
628}