blob: 41672cc563fb13005bc732d581844d9811473047 [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 */
David Howells760285e2012-10-02 18:01:07 +010027#include <drm/drmP.h>
28#include <drm/radeon_drm.h>
Jerome Glisse771fe6b2009-06-05 14:42:42 +020029#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
Lauri Kasanen1109ca02012-08-31 13:43:50 -040035static int radeon_cs_parser_relocs(struct radeon_cs_parser *p)
Jerome Glisse771fe6b2009-06-05 14:42:42 +020036{
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{
Jerome Glisse3e8970f2012-08-13 12:07:33 -0400375 struct radeon_device *rdev = parser->rdev;
Jerome Glisse721604a2012-01-05 22:11:05 -0500376 struct radeon_bo_list *lobj;
377 struct radeon_bo *bo;
378 int r;
379
Jerome Glisse3e8970f2012-08-13 12:07:33 -0400380 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 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500384 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;
Jerome Glisse721604a2012-01-05 22:11:05 -0500404 if ((parser->cs_flags & RADEON_CS_USE_VM) == 0)
405 return 0;
406
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400407 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,
Christian König4bf3dd92012-08-06 18:57:44 +0200415 vm, ib_chunk->length_dw * 4);
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400416 if (r) {
417 DRM_ERROR("Failed to get const ib !\n");
418 return r;
419 }
Jerome Glissef2e39222012-05-09 15:35:02 +0200420 parser->const_ib.is_const_ib = true;
421 parser->const_ib.length_dw = ib_chunk->length_dw;
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400422 /* Copy the packet into the IB */
Jerome Glissef2e39222012-05-09 15:35:02 +0200423 if (DRM_COPY_FROM_USER(parser->const_ib.ptr, ib_chunk->user_ptr,
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400424 ib_chunk->length_dw * 4)) {
425 return -EFAULT;
426 }
Jerome Glissef2e39222012-05-09 15:35:02 +0200427 r = radeon_ring_ib_parse(rdev, parser->ring, &parser->const_ib);
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400428 if (r) {
429 return r;
430 }
431 }
432
Jerome Glisse721604a2012-01-05 22:11:05 -0500433 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,
Christian König4bf3dd92012-08-06 18:57:44 +0200439 vm, ib_chunk->length_dw * 4);
Jerome Glisse721604a2012-01-05 22:11:05 -0500440 if (r) {
441 DRM_ERROR("Failed to get ib !\n");
442 return r;
443 }
Jerome Glissef2e39222012-05-09 15:35:02 +0200444 parser->ib.length_dw = ib_chunk->length_dw;
Jerome Glisse721604a2012-01-05 22:11:05 -0500445 /* Copy the packet into the IB */
Jerome Glissef2e39222012-05-09 15:35:02 +0200446 if (DRM_COPY_FROM_USER(parser->ib.ptr, ib_chunk->user_ptr,
Jerome Glisse721604a2012-01-05 22:11:05 -0500447 ib_chunk->length_dw * 4)) {
448 return -EFAULT;
449 }
Jerome Glissef2e39222012-05-09 15:35:02 +0200450 r = radeon_ring_ib_parse(rdev, parser->ring, &parser->ib);
Jerome Glisse721604a2012-01-05 22:11:05 -0500451 if (r) {
452 return r;
453 }
454
Christian König36ff39c2012-05-09 10:07:08 +0200455 mutex_lock(&rdev->vm_manager.lock);
Jerome Glisse721604a2012-01-05 22:11:05 -0500456 mutex_lock(&vm->mutex);
Christian Königddf03f52012-08-09 20:02:28 +0200457 r = radeon_vm_alloc_pt(rdev, vm);
Jerome Glisse721604a2012-01-05 22:11:05 -0500458 if (r) {
459 goto out;
460 }
461 r = radeon_bo_vm_update_pte(parser, vm);
462 if (r) {
463 goto out;
464 }
Christian König220907d2012-05-10 16:46:43 +0200465 radeon_cs_sync_rings(parser);
Christian König1678dbc22012-09-06 13:48:07 +0200466 radeon_cs_sync_to(parser, vm->fence);
Christian Königee60e292012-08-09 16:21:08 +0200467 radeon_cs_sync_to(parser, radeon_vm_grab_id(rdev, vm, parser->ring));
Christian König4ef72562012-07-13 13:06:00 +0200468
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400469 if ((rdev->family >= CHIP_TAHITI) &&
470 (parser->chunk_const_ib_idx != -1)) {
Christian König4ef72562012-07-13 13:06:00 +0200471 r = radeon_ib_schedule(rdev, &parser->ib, &parser->const_ib);
472 } else {
473 r = radeon_ib_schedule(rdev, &parser->ib, NULL);
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400474 }
475
Jerome Glisse721604a2012-01-05 22:11:05 -0500476 if (!r) {
Christian Königee60e292012-08-09 16:21:08 +0200477 radeon_vm_fence(rdev, vm, parser->ib.fence);
Jerome Glisse721604a2012-01-05 22:11:05 -0500478 }
Christian Königee60e292012-08-09 16:21:08 +0200479
480out:
Christian König13e55c32012-10-09 13:31:19 +0200481 radeon_vm_add_to_lru(rdev, vm);
Christian König36ff39c2012-05-09 10:07:08 +0200482 mutex_unlock(&vm->mutex);
483 mutex_unlock(&rdev->vm_manager.lock);
Jerome Glisse721604a2012-01-05 22:11:05 -0500484 return r;
485}
486
Christian König6c6f4782012-05-02 15:11:19 +0200487static 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
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200497int 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;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200501 int r;
502
Jerome Glissedee53e72012-07-02 12:45:19 -0400503 down_read(&rdev->exclusive_lock);
Jerome Glisse6b7746e2012-02-20 17:57:20 -0500504 if (!rdev->accel_working) {
Jerome Glissedee53e72012-07-02 12:45:19 -0400505 up_read(&rdev->exclusive_lock);
Jerome Glisse6b7746e2012-02-20 17:57:20 -0500506 return -EBUSY;
507 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200508 /* initialize parser */
509 memset(&parser, 0, sizeof(struct radeon_cs_parser));
510 parser.filp = filp;
511 parser.rdev = rdev;
Jerome Glissec8c15ff2010-01-18 13:01:36 +0100512 parser.dev = rdev->dev;
Dave Airlie428c6e32011-06-08 19:58:29 +1000513 parser.family = rdev->family;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200514 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);
Jerome Glissedee53e72012-07-02 12:45:19 -0400518 up_read(&rdev->exclusive_lock);
Christian König6c6f4782012-05-02 15:11:19 +0200519 r = radeon_cs_handle_lockup(rdev, r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200520 return r;
521 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200522 r = radeon_cs_parser_relocs(&parser);
523 if (r) {
Dave Airlie97f23b32010-03-19 10:33:44 +1000524 if (r != -ERESTARTSYS)
525 DRM_ERROR("Failed to parse relocation %d!\n", r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200526 radeon_cs_parser_fini(&parser, r);
Jerome Glissedee53e72012-07-02 12:45:19 -0400527 up_read(&rdev->exclusive_lock);
Christian König6c6f4782012-05-02 15:11:19 +0200528 r = radeon_cs_handle_lockup(rdev, r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200529 return r;
530 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500531 r = radeon_cs_ib_chunk(rdev, &parser);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200532 if (r) {
Jerome Glisse721604a2012-01-05 22:11:05 -0500533 goto out;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200534 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500535 r = radeon_cs_ib_vm_chunk(rdev, &parser);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200536 if (r) {
Jerome Glisse721604a2012-01-05 22:11:05 -0500537 goto out;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200538 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500539out:
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200540 radeon_cs_parser_fini(&parser, r);
Jerome Glissedee53e72012-07-02 12:45:19 -0400541 up_read(&rdev->exclusive_lock);
Christian König6c6f4782012-05-02 15:11:19 +0200542 r = radeon_cs_handle_lockup(rdev, r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200543 return r;
544}
Dave Airlie513bcb42009-09-23 16:56:27 +1000545
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
Jerome Glissef2e39222012-05-09 15:35:02 +0200559 if (DRM_COPY_FROM_USER(p->ib.ptr + (i * (PAGE_SIZE/4)),
Dave Airlie513bcb42009-09-23 16:56:27 +1000560 ibc->user_ptr + (i * PAGE_SIZE),
561 size))
562 return -EFAULT;
563 }
564 return 0;
565}
566
Dave Airliec4c7f312012-05-26 17:34:24 +0100567static int radeon_cs_update_pages(struct radeon_cs_parser *p, int pg_idx)
Dave Airlie513bcb42009-09-23 16:56:27 +1000568{
569 int new_page;
Dave Airlie513bcb42009-09-23 16:56:27 +1000570 struct radeon_cs_chunk *ibc = &p->chunks[p->chunk_ib_idx];
571 int i;
572 int size = PAGE_SIZE;
Dave Airlie6a7068b2012-04-03 16:23:41 +0100573 bool copy1 = (p->rdev->flags & RADEON_IS_AGP) ? false : true;
Dave Airlie513bcb42009-09-23 16:56:27 +1000574
Dave Airliec5e617e2009-09-26 09:03:39 +1000575 for (i = ibc->last_copied_page + 1; i < pg_idx; i++) {
Jerome Glissef2e39222012-05-09 15:35:02 +0200576 if (DRM_COPY_FROM_USER(p->ib.ptr + (i * (PAGE_SIZE/4)),
Dave Airlie513bcb42009-09-23 16:56:27 +1000577 ibc->user_ptr + (i * PAGE_SIZE),
578 PAGE_SIZE)) {
579 p->parser_error = -EFAULT;
580 return 0;
581 }
582 }
583
Dave Airlie513bcb42009-09-23 16:56:27 +1000584 if (pg_idx == ibc->last_page_index) {
585 size = (ibc->length_dw * 4) % PAGE_SIZE;
Dave Airlie6a7068b2012-04-03 16:23:41 +0100586 if (size == 0)
587 size = PAGE_SIZE;
Dave Airlie513bcb42009-09-23 16:56:27 +1000588 }
589
Dave Airlie6a7068b2012-04-03 16:23:41 +0100590 new_page = ibc->kpage_idx[0] < ibc->kpage_idx[1] ? 0 : 1;
591 if (copy1)
Jerome Glissef2e39222012-05-09 15:35:02 +0200592 ibc->kpage[new_page] = p->ib.ptr + (pg_idx * (PAGE_SIZE / 4));
Dave Airlie6a7068b2012-04-03 16:23:41 +0100593
Dave Airlie513bcb42009-09-23 16:56:27 +1000594 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
Dave Airlie6a7068b2012-04-03 16:23:41 +0100601 /* copy to IB for non single case */
602 if (!copy1)
Jerome Glissef2e39222012-05-09 15:35:02 +0200603 memcpy((void *)(p->ib.ptr+(pg_idx*(PAGE_SIZE/4))), ibc->kpage[new_page], size);
Dave Airlie513bcb42009-09-23 16:56:27 +1000604
605 ibc->last_copied_page = pg_idx;
606 ibc->kpage_idx[new_page] = pg_idx;
607
608 return new_page;
609}
Dave Airliec4c7f312012-05-26 17:34:24 +0100610
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}