blob: 56f9282b327975214bb979811ea199e55bec2e45 [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];
Alex Deuchercf4ccd02011-11-18 10:19:47 -050046 p->dma_reloc_idx = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020047 /* FIXME: we assume that each relocs use 4 dwords */
48 p->nrelocs = chunk->length_dw / 4;
49 p->relocs_ptr = kcalloc(p->nrelocs, sizeof(void *), GFP_KERNEL);
50 if (p->relocs_ptr == NULL) {
51 return -ENOMEM;
52 }
53 p->relocs = kcalloc(p->nrelocs, sizeof(struct radeon_cs_reloc), GFP_KERNEL);
54 if (p->relocs == NULL) {
55 return -ENOMEM;
56 }
57 for (i = 0; i < p->nrelocs; i++) {
58 struct drm_radeon_cs_reloc *r;
59
60 duplicate = false;
61 r = (struct drm_radeon_cs_reloc *)&chunk->kdata[i*4];
Christian König16557f12011-10-24 14:59:17 +020062 for (j = 0; j < i; j++) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +020063 if (r->handle == p->relocs[j].handle) {
64 p->relocs_ptr[i] = &p->relocs[j];
65 duplicate = true;
66 break;
67 }
68 }
69 if (!duplicate) {
70 p->relocs[i].gobj = drm_gem_object_lookup(ddev,
71 p->filp,
72 r->handle);
73 if (p->relocs[i].gobj == NULL) {
74 DRM_ERROR("gem object lookup failed 0x%x\n",
75 r->handle);
Chris Wilsonbf79cb92010-08-04 14:19:46 +010076 return -ENOENT;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020077 }
78 p->relocs_ptr[i] = &p->relocs[i];
Daniel Vetter7e4d15d2011-02-18 17:59:17 +010079 p->relocs[i].robj = gem_to_radeon_bo(p->relocs[i].gobj);
Jerome Glisse4c788672009-11-20 14:29:23 +010080 p->relocs[i].lobj.bo = p->relocs[i].robj;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020081 p->relocs[i].lobj.wdomain = r->write_domain;
Thomas Hellstrom147666f2010-11-17 12:38:32 +000082 p->relocs[i].lobj.rdomain = r->read_domains;
83 p->relocs[i].lobj.tv.bo = &p->relocs[i].robj->tbo;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020084 p->relocs[i].handle = r->handle;
85 p->relocs[i].flags = r->flags;
Jerome Glisse4c788672009-11-20 14:29:23 +010086 radeon_bo_list_add_object(&p->relocs[i].lobj,
Thomas Hellstrom147666f2010-11-17 12:38:32 +000087 &p->validated);
Christian König93504fc2012-01-05 22:11:06 -050088
Christian König16557f12011-10-24 14:59:17 +020089 } else
90 p->relocs[i].handle = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020091 }
Jerome Glisse94429bb2010-02-15 21:36:33 +010092 return radeon_bo_list_validate(&p->validated);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020093}
94
Jerome Glisse721604a2012-01-05 22:11:05 -050095static int radeon_cs_get_ring(struct radeon_cs_parser *p, u32 ring, s32 priority)
96{
97 p->priority = priority;
98
99 switch (ring) {
100 default:
101 DRM_ERROR("unknown ring id: %d\n", ring);
102 return -EINVAL;
103 case RADEON_CS_RING_GFX:
104 p->ring = RADEON_RING_TYPE_GFX_INDEX;
105 break;
106 case RADEON_CS_RING_COMPUTE:
Alex Deucher8d5ef7b2012-03-20 17:18:24 -0400107 if (p->rdev->family >= CHIP_TAHITI) {
108 if (p->priority > 0)
109 p->ring = CAYMAN_RING_TYPE_CP1_INDEX;
110 else
111 p->ring = CAYMAN_RING_TYPE_CP2_INDEX;
112 } else
113 p->ring = RADEON_RING_TYPE_GFX_INDEX;
Jerome Glisse721604a2012-01-05 22:11:05 -0500114 break;
Alex Deucher278a3342012-12-13 12:27:28 -0500115 case RADEON_CS_RING_DMA:
116 if (p->rdev->family >= CHIP_CAYMAN) {
117 if (p->priority > 0)
118 p->ring = R600_RING_TYPE_DMA_INDEX;
119 else
120 p->ring = CAYMAN_RING_TYPE_DMA1_INDEX;
121 } else if (p->rdev->family >= CHIP_R600) {
122 p->ring = R600_RING_TYPE_DMA_INDEX;
123 } else {
124 return -EINVAL;
125 }
126 break;
Jerome Glisse721604a2012-01-05 22:11:05 -0500127 }
128 return 0;
129}
130
Christian Königf82cbdd2012-08-09 16:35:36 +0200131static void radeon_cs_sync_to(struct radeon_cs_parser *p,
132 struct radeon_fence *fence)
133{
134 struct radeon_fence *other;
135
136 if (!fence)
137 return;
138
139 other = p->ib.sync_to[fence->ring];
140 p->ib.sync_to[fence->ring] = radeon_fence_later(fence, other);
141}
142
Christian König220907d2012-05-10 16:46:43 +0200143static void radeon_cs_sync_rings(struct radeon_cs_parser *p)
Christian König93504fc2012-01-05 22:11:06 -0500144{
Christian König220907d2012-05-10 16:46:43 +0200145 int i;
Christian König93504fc2012-01-05 22:11:06 -0500146
Christian Königcdac5502012-02-23 15:18:42 +0100147 for (i = 0; i < p->nrelocs; i++) {
Christian Königf82cbdd2012-08-09 16:35:36 +0200148 if (!p->relocs[i].robj)
Christian Königcdac5502012-02-23 15:18:42 +0100149 continue;
150
Christian Königf82cbdd2012-08-09 16:35:36 +0200151 radeon_cs_sync_to(p, p->relocs[i].robj->tbo.sync_obj);
Christian Königcdac5502012-02-23 15:18:42 +0100152 }
Christian König93504fc2012-01-05 22:11:06 -0500153}
154
Alex Deucher9b001472012-05-30 10:09:30 -0400155/* XXX: note that this is called from the legacy UMS CS ioctl as well */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200156int radeon_cs_parser_init(struct radeon_cs_parser *p, void *data)
157{
158 struct drm_radeon_cs *cs = data;
159 uint64_t *chunk_array_ptr;
Jerome Glisse721604a2012-01-05 22:11:05 -0500160 unsigned size, i;
161 u32 ring = RADEON_CS_RING_GFX;
162 s32 priority = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200163
164 if (!cs->num_chunks) {
165 return 0;
166 }
167 /* get chunks */
168 INIT_LIST_HEAD(&p->validated);
169 p->idx = 0;
Jerome Glissef2e39222012-05-09 15:35:02 +0200170 p->ib.sa_bo = NULL;
171 p->ib.semaphore = NULL;
172 p->const_ib.sa_bo = NULL;
173 p->const_ib.semaphore = NULL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200174 p->chunk_ib_idx = -1;
175 p->chunk_relocs_idx = -1;
Jerome Glisse721604a2012-01-05 22:11:05 -0500176 p->chunk_flags_idx = -1;
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400177 p->chunk_const_ib_idx = -1;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200178 p->chunks_array = kcalloc(cs->num_chunks, sizeof(uint64_t), GFP_KERNEL);
179 if (p->chunks_array == NULL) {
180 return -ENOMEM;
181 }
182 chunk_array_ptr = (uint64_t *)(unsigned long)(cs->chunks);
183 if (DRM_COPY_FROM_USER(p->chunks_array, chunk_array_ptr,
184 sizeof(uint64_t)*cs->num_chunks)) {
185 return -EFAULT;
186 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500187 p->cs_flags = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200188 p->nchunks = cs->num_chunks;
189 p->chunks = kcalloc(p->nchunks, sizeof(struct radeon_cs_chunk), GFP_KERNEL);
190 if (p->chunks == NULL) {
191 return -ENOMEM;
192 }
193 for (i = 0; i < p->nchunks; i++) {
194 struct drm_radeon_cs_chunk __user **chunk_ptr = NULL;
195 struct drm_radeon_cs_chunk user_chunk;
196 uint32_t __user *cdata;
197
198 chunk_ptr = (void __user*)(unsigned long)p->chunks_array[i];
199 if (DRM_COPY_FROM_USER(&user_chunk, chunk_ptr,
200 sizeof(struct drm_radeon_cs_chunk))) {
201 return -EFAULT;
202 }
Dave Airlie5176fdc2009-06-30 11:47:14 +1000203 p->chunks[i].length_dw = user_chunk.length_dw;
204 p->chunks[i].kdata = NULL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200205 p->chunks[i].chunk_id = user_chunk.chunk_id;
Ilija Hadzic580f8392013-01-02 18:27:37 -0500206 p->chunks[i].user_ptr = (void __user *)(unsigned long)user_chunk.chunk_data;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200207 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_RELOCS) {
208 p->chunk_relocs_idx = i;
209 }
210 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_IB) {
211 p->chunk_ib_idx = i;
Dave Airlie5176fdc2009-06-30 11:47:14 +1000212 /* zero length IB isn't useful */
213 if (p->chunks[i].length_dw == 0)
214 return -EINVAL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200215 }
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400216 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_CONST_IB) {
217 p->chunk_const_ib_idx = i;
218 /* zero length CONST IB isn't useful */
219 if (p->chunks[i].length_dw == 0)
220 return -EINVAL;
221 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500222 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_FLAGS) {
223 p->chunk_flags_idx = i;
224 /* zero length flags aren't useful */
225 if (p->chunks[i].length_dw == 0)
226 return -EINVAL;
Marek Olšáke70f2242011-10-25 01:38:45 +0200227 }
Dave Airlie5176fdc2009-06-30 11:47:14 +1000228
Dave Airlie513bcb42009-09-23 16:56:27 +1000229 cdata = (uint32_t *)(unsigned long)user_chunk.chunk_data;
Jerome Glisse721604a2012-01-05 22:11:05 -0500230 if ((p->chunks[i].chunk_id == RADEON_CHUNK_ID_RELOCS) ||
231 (p->chunks[i].chunk_id == RADEON_CHUNK_ID_FLAGS)) {
Dave Airlie513bcb42009-09-23 16:56:27 +1000232 size = p->chunks[i].length_dw * sizeof(uint32_t);
233 p->chunks[i].kdata = kmalloc(size, GFP_KERNEL);
234 if (p->chunks[i].kdata == NULL) {
235 return -ENOMEM;
236 }
237 if (DRM_COPY_FROM_USER(p->chunks[i].kdata,
238 p->chunks[i].user_ptr, size)) {
239 return -EFAULT;
240 }
Marek Olšáke70f2242011-10-25 01:38:45 +0200241 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_FLAGS) {
Jerome Glisse721604a2012-01-05 22:11:05 -0500242 p->cs_flags = p->chunks[i].kdata[0];
243 if (p->chunks[i].length_dw > 1)
244 ring = p->chunks[i].kdata[1];
245 if (p->chunks[i].length_dw > 2)
246 priority = (s32)p->chunks[i].kdata[2];
Marek Olšáke70f2242011-10-25 01:38:45 +0200247 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200248 }
249 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500250
Alex Deucher9b001472012-05-30 10:09:30 -0400251 /* these are KMS only */
252 if (p->rdev) {
253 if ((p->cs_flags & RADEON_CS_USE_VM) &&
254 !p->rdev->vm_manager.enabled) {
255 DRM_ERROR("VM not active on asic!\n");
256 return -EINVAL;
257 }
258
259 /* we only support VM on SI+ */
260 if ((p->rdev->family >= CHIP_TAHITI) &&
261 ((p->cs_flags & RADEON_CS_USE_VM) == 0)) {
262 DRM_ERROR("VM required on SI+!\n");
263 return -EINVAL;
264 }
265
266 if (radeon_cs_get_ring(p, ring, priority))
267 return -EINVAL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200268 }
Marek Olšáke70f2242011-10-25 01:38:45 +0200269
Jerome Glisse721604a2012-01-05 22:11:05 -0500270 /* deal with non-vm */
271 if ((p->chunk_ib_idx != -1) &&
272 ((p->cs_flags & RADEON_CS_USE_VM) == 0) &&
273 (p->chunks[p->chunk_ib_idx].chunk_id == RADEON_CHUNK_ID_IB)) {
274 if (p->chunks[p->chunk_ib_idx].length_dw > (16 * 1024)) {
275 DRM_ERROR("cs IB too big: %d\n",
276 p->chunks[p->chunk_ib_idx].length_dw);
277 return -EINVAL;
278 }
Ilija Hadzicff4bd082013-01-07 18:21:57 -0500279 if (p->rdev && (p->rdev->flags & RADEON_IS_AGP)) {
Dave Airlie6a7068b2012-04-03 16:23:41 +0100280 p->chunks[p->chunk_ib_idx].kpage[0] = kmalloc(PAGE_SIZE, GFP_KERNEL);
281 p->chunks[p->chunk_ib_idx].kpage[1] = kmalloc(PAGE_SIZE, GFP_KERNEL);
282 if (p->chunks[p->chunk_ib_idx].kpage[0] == NULL ||
283 p->chunks[p->chunk_ib_idx].kpage[1] == NULL) {
Ilija Hadzic25d89992013-01-07 18:21:59 -0500284 kfree(p->chunks[p->chunk_ib_idx].kpage[0]);
285 kfree(p->chunks[p->chunk_ib_idx].kpage[1]);
Ilija Hadzic1da80cf2013-01-23 13:59:05 -0500286 p->chunks[p->chunk_ib_idx].kpage[0] = NULL;
287 p->chunks[p->chunk_ib_idx].kpage[1] = NULL;
Dave Airlie6a7068b2012-04-03 16:23:41 +0100288 return -ENOMEM;
289 }
290 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500291 p->chunks[p->chunk_ib_idx].kpage_idx[0] = -1;
292 p->chunks[p->chunk_ib_idx].kpage_idx[1] = -1;
293 p->chunks[p->chunk_ib_idx].last_copied_page = -1;
294 p->chunks[p->chunk_ib_idx].last_page_index =
295 ((p->chunks[p->chunk_ib_idx].length_dw * 4) - 1) / PAGE_SIZE;
296 }
297
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200298 return 0;
299}
300
301/**
302 * cs_parser_fini() - clean parser states
303 * @parser: parser structure holding parsing context.
304 * @error: error number
305 *
306 * If error is set than unvalidate buffer, otherwise just free memory
307 * used by parsing context.
308 **/
309static void radeon_cs_parser_fini(struct radeon_cs_parser *parser, int error)
310{
311 unsigned i;
312
Jerome Glissee43b5ec2012-08-06 12:32:21 -0400313 if (!error) {
Thomas Hellstrom147666f2010-11-17 12:38:32 +0000314 ttm_eu_fence_buffer_objects(&parser->validated,
Jerome Glissef2e39222012-05-09 15:35:02 +0200315 parser->ib.fence);
Jerome Glissee43b5ec2012-08-06 12:32:21 -0400316 } else {
Thomas Hellstrom147666f2010-11-17 12:38:32 +0000317 ttm_eu_backoff_reservation(&parser->validated);
Jerome Glissee43b5ec2012-08-06 12:32:21 -0400318 }
Thomas Hellstrom147666f2010-11-17 12:38:32 +0000319
Pauli Nieminenfcbc4512010-03-19 07:44:33 +0000320 if (parser->relocs != NULL) {
321 for (i = 0; i < parser->nrelocs; i++) {
322 if (parser->relocs[i].gobj)
323 drm_gem_object_unreference_unlocked(parser->relocs[i].gobj);
324 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200325 }
Michel Dänzer48e113e2009-09-15 17:09:32 +0200326 kfree(parser->track);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200327 kfree(parser->relocs);
328 kfree(parser->relocs_ptr);
329 for (i = 0; i < parser->nchunks; i++) {
330 kfree(parser->chunks[i].kdata);
Dave Airlie6a7068b2012-04-03 16:23:41 +0100331 if ((parser->rdev->flags & RADEON_IS_AGP)) {
332 kfree(parser->chunks[i].kpage[0]);
333 kfree(parser->chunks[i].kpage[1]);
334 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200335 }
336 kfree(parser->chunks);
337 kfree(parser->chunks_array);
338 radeon_ib_free(parser->rdev, &parser->ib);
Jerome Glissef2e39222012-05-09 15:35:02 +0200339 radeon_ib_free(parser->rdev, &parser->const_ib);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200340}
341
Jerome Glisse721604a2012-01-05 22:11:05 -0500342static int radeon_cs_ib_chunk(struct radeon_device *rdev,
343 struct radeon_cs_parser *parser)
344{
345 struct radeon_cs_chunk *ib_chunk;
346 int r;
347
348 if (parser->chunk_ib_idx == -1)
349 return 0;
350
351 if (parser->cs_flags & RADEON_CS_USE_VM)
352 return 0;
353
354 ib_chunk = &parser->chunks[parser->chunk_ib_idx];
355 /* Copy the packet into the IB, the parser will read from the
356 * input memory (cached) and write to the IB (which can be
357 * uncached).
358 */
359 r = radeon_ib_get(rdev, parser->ring, &parser->ib,
Christian König4bf3dd92012-08-06 18:57:44 +0200360 NULL, ib_chunk->length_dw * 4);
Jerome Glisse721604a2012-01-05 22:11:05 -0500361 if (r) {
362 DRM_ERROR("Failed to get ib !\n");
363 return r;
364 }
Jerome Glissef2e39222012-05-09 15:35:02 +0200365 parser->ib.length_dw = ib_chunk->length_dw;
Christian Königeb0c19c2012-02-23 15:18:44 +0100366 r = radeon_cs_parse(rdev, parser->ring, parser);
Jerome Glisse721604a2012-01-05 22:11:05 -0500367 if (r || parser->parser_error) {
368 DRM_ERROR("Invalid command stream !\n");
369 return r;
370 }
371 r = radeon_cs_finish_pages(parser);
372 if (r) {
373 DRM_ERROR("Invalid command stream !\n");
374 return r;
375 }
Christian König220907d2012-05-10 16:46:43 +0200376 radeon_cs_sync_rings(parser);
Christian König4ef72562012-07-13 13:06:00 +0200377 r = radeon_ib_schedule(rdev, &parser->ib, NULL);
Jerome Glisse721604a2012-01-05 22:11:05 -0500378 if (r) {
379 DRM_ERROR("Failed to schedule IB !\n");
380 }
Christian König93bf8882012-07-03 14:05:41 +0200381 return r;
Jerome Glisse721604a2012-01-05 22:11:05 -0500382}
383
384static int radeon_bo_vm_update_pte(struct radeon_cs_parser *parser,
385 struct radeon_vm *vm)
386{
Jerome Glisse3e8970f2012-08-13 12:07:33 -0400387 struct radeon_device *rdev = parser->rdev;
Jerome Glisse721604a2012-01-05 22:11:05 -0500388 struct radeon_bo_list *lobj;
389 struct radeon_bo *bo;
390 int r;
391
Jerome Glisse3e8970f2012-08-13 12:07:33 -0400392 r = radeon_vm_bo_update_pte(rdev, vm, rdev->ring_tmp_bo.bo, &rdev->ring_tmp_bo.bo->tbo.mem);
393 if (r) {
394 return r;
395 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500396 list_for_each_entry(lobj, &parser->validated, tv.head) {
397 bo = lobj->bo;
398 r = radeon_vm_bo_update_pte(parser->rdev, vm, bo, &bo->tbo.mem);
399 if (r) {
400 return r;
401 }
402 }
403 return 0;
404}
405
406static int radeon_cs_ib_vm_chunk(struct radeon_device *rdev,
407 struct radeon_cs_parser *parser)
408{
409 struct radeon_cs_chunk *ib_chunk;
410 struct radeon_fpriv *fpriv = parser->filp->driver_priv;
411 struct radeon_vm *vm = &fpriv->vm;
412 int r;
413
414 if (parser->chunk_ib_idx == -1)
415 return 0;
Jerome Glisse721604a2012-01-05 22:11:05 -0500416 if ((parser->cs_flags & RADEON_CS_USE_VM) == 0)
417 return 0;
418
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400419 if ((rdev->family >= CHIP_TAHITI) &&
420 (parser->chunk_const_ib_idx != -1)) {
421 ib_chunk = &parser->chunks[parser->chunk_const_ib_idx];
422 if (ib_chunk->length_dw > RADEON_IB_VM_MAX_SIZE) {
423 DRM_ERROR("cs IB CONST too big: %d\n", ib_chunk->length_dw);
424 return -EINVAL;
425 }
426 r = radeon_ib_get(rdev, parser->ring, &parser->const_ib,
Christian König4bf3dd92012-08-06 18:57:44 +0200427 vm, ib_chunk->length_dw * 4);
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400428 if (r) {
429 DRM_ERROR("Failed to get const ib !\n");
430 return r;
431 }
Jerome Glissef2e39222012-05-09 15:35:02 +0200432 parser->const_ib.is_const_ib = true;
433 parser->const_ib.length_dw = ib_chunk->length_dw;
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400434 /* Copy the packet into the IB */
Jerome Glissef2e39222012-05-09 15:35:02 +0200435 if (DRM_COPY_FROM_USER(parser->const_ib.ptr, ib_chunk->user_ptr,
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400436 ib_chunk->length_dw * 4)) {
437 return -EFAULT;
438 }
Jerome Glissef2e39222012-05-09 15:35:02 +0200439 r = radeon_ring_ib_parse(rdev, parser->ring, &parser->const_ib);
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400440 if (r) {
441 return r;
442 }
443 }
444
Jerome Glisse721604a2012-01-05 22:11:05 -0500445 ib_chunk = &parser->chunks[parser->chunk_ib_idx];
446 if (ib_chunk->length_dw > RADEON_IB_VM_MAX_SIZE) {
447 DRM_ERROR("cs IB too big: %d\n", ib_chunk->length_dw);
448 return -EINVAL;
449 }
450 r = radeon_ib_get(rdev, parser->ring, &parser->ib,
Christian König4bf3dd92012-08-06 18:57:44 +0200451 vm, ib_chunk->length_dw * 4);
Jerome Glisse721604a2012-01-05 22:11:05 -0500452 if (r) {
453 DRM_ERROR("Failed to get ib !\n");
454 return r;
455 }
Jerome Glissef2e39222012-05-09 15:35:02 +0200456 parser->ib.length_dw = ib_chunk->length_dw;
Jerome Glisse721604a2012-01-05 22:11:05 -0500457 /* Copy the packet into the IB */
Jerome Glissef2e39222012-05-09 15:35:02 +0200458 if (DRM_COPY_FROM_USER(parser->ib.ptr, ib_chunk->user_ptr,
Jerome Glisse721604a2012-01-05 22:11:05 -0500459 ib_chunk->length_dw * 4)) {
460 return -EFAULT;
461 }
Jerome Glissef2e39222012-05-09 15:35:02 +0200462 r = radeon_ring_ib_parse(rdev, parser->ring, &parser->ib);
Jerome Glisse721604a2012-01-05 22:11:05 -0500463 if (r) {
464 return r;
465 }
466
Christian König36ff39c2012-05-09 10:07:08 +0200467 mutex_lock(&rdev->vm_manager.lock);
Jerome Glisse721604a2012-01-05 22:11:05 -0500468 mutex_lock(&vm->mutex);
Christian Königddf03f52012-08-09 20:02:28 +0200469 r = radeon_vm_alloc_pt(rdev, vm);
Jerome Glisse721604a2012-01-05 22:11:05 -0500470 if (r) {
471 goto out;
472 }
473 r = radeon_bo_vm_update_pte(parser, vm);
474 if (r) {
475 goto out;
476 }
Christian König220907d2012-05-10 16:46:43 +0200477 radeon_cs_sync_rings(parser);
Christian König1678dbc22012-09-06 13:48:07 +0200478 radeon_cs_sync_to(parser, vm->fence);
Christian Königee60e292012-08-09 16:21:08 +0200479 radeon_cs_sync_to(parser, radeon_vm_grab_id(rdev, vm, parser->ring));
Christian König4ef72562012-07-13 13:06:00 +0200480
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400481 if ((rdev->family >= CHIP_TAHITI) &&
482 (parser->chunk_const_ib_idx != -1)) {
Christian König4ef72562012-07-13 13:06:00 +0200483 r = radeon_ib_schedule(rdev, &parser->ib, &parser->const_ib);
484 } else {
485 r = radeon_ib_schedule(rdev, &parser->ib, NULL);
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400486 }
487
Jerome Glisse721604a2012-01-05 22:11:05 -0500488 if (!r) {
Christian Königee60e292012-08-09 16:21:08 +0200489 radeon_vm_fence(rdev, vm, parser->ib.fence);
Jerome Glisse721604a2012-01-05 22:11:05 -0500490 }
Christian Königee60e292012-08-09 16:21:08 +0200491
492out:
Christian König13e55c32012-10-09 13:31:19 +0200493 radeon_vm_add_to_lru(rdev, vm);
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;
Ilija Hadzicff4bd082013-01-07 18:21:57 -0500585 bool copy1 = (p->rdev && (p->rdev->flags & RADEON_IS_AGP)) ?
586 false : true;
Dave Airlie513bcb42009-09-23 16:56:27 +1000587
Dave Airliec5e617e2009-09-26 09:03:39 +1000588 for (i = ibc->last_copied_page + 1; i < pg_idx; i++) {
Jerome Glissef2e39222012-05-09 15:35:02 +0200589 if (DRM_COPY_FROM_USER(p->ib.ptr + (i * (PAGE_SIZE/4)),
Dave Airlie513bcb42009-09-23 16:56:27 +1000590 ibc->user_ptr + (i * PAGE_SIZE),
591 PAGE_SIZE)) {
592 p->parser_error = -EFAULT;
593 return 0;
594 }
595 }
596
Dave Airlie513bcb42009-09-23 16:56:27 +1000597 if (pg_idx == ibc->last_page_index) {
598 size = (ibc->length_dw * 4) % PAGE_SIZE;
Dave Airlie6a7068b2012-04-03 16:23:41 +0100599 if (size == 0)
600 size = PAGE_SIZE;
Dave Airlie513bcb42009-09-23 16:56:27 +1000601 }
602
Dave Airlie6a7068b2012-04-03 16:23:41 +0100603 new_page = ibc->kpage_idx[0] < ibc->kpage_idx[1] ? 0 : 1;
604 if (copy1)
Jerome Glissef2e39222012-05-09 15:35:02 +0200605 ibc->kpage[new_page] = p->ib.ptr + (pg_idx * (PAGE_SIZE / 4));
Dave Airlie6a7068b2012-04-03 16:23:41 +0100606
Dave Airlie513bcb42009-09-23 16:56:27 +1000607 if (DRM_COPY_FROM_USER(ibc->kpage[new_page],
608 ibc->user_ptr + (pg_idx * PAGE_SIZE),
609 size)) {
610 p->parser_error = -EFAULT;
611 return 0;
612 }
613
Dave Airlie6a7068b2012-04-03 16:23:41 +0100614 /* copy to IB for non single case */
615 if (!copy1)
Jerome Glissef2e39222012-05-09 15:35:02 +0200616 memcpy((void *)(p->ib.ptr+(pg_idx*(PAGE_SIZE/4))), ibc->kpage[new_page], size);
Dave Airlie513bcb42009-09-23 16:56:27 +1000617
618 ibc->last_copied_page = pg_idx;
619 ibc->kpage_idx[new_page] = pg_idx;
620
621 return new_page;
622}
Dave Airliec4c7f312012-05-26 17:34:24 +0100623
624u32 radeon_get_ib_value(struct radeon_cs_parser *p, int idx)
625{
626 struct radeon_cs_chunk *ibc = &p->chunks[p->chunk_ib_idx];
627 u32 pg_idx, pg_offset;
628 u32 idx_value = 0;
629 int new_page;
630
631 pg_idx = (idx * 4) / PAGE_SIZE;
632 pg_offset = (idx * 4) % PAGE_SIZE;
633
634 if (ibc->kpage_idx[0] == pg_idx)
635 return ibc->kpage[0][pg_offset/4];
636 if (ibc->kpage_idx[1] == pg_idx)
637 return ibc->kpage[1][pg_offset/4];
638
639 new_page = radeon_cs_update_pages(p, pg_idx);
640 if (new_page < 0) {
641 p->parser_error = new_page;
642 return 0;
643 }
644
645 idx_value = ibc->kpage[new_page][pg_offset/4];
646 return idx_value;
647}