blob: 4b6f5b82415309cbdd427fafe5d683e43ecc63ce [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 */
Marek Olšák43304412014-03-02 00:56:20 +010027#include <linux/list_sort.h>
David Howells760285e2012-10-02 18:01:07 +010028#include <drm/drmP.h>
29#include <drm/radeon_drm.h>
Jerome Glisse771fe6b2009-06-05 14:42:42 +020030#include "radeon_reg.h"
31#include "radeon.h"
Christian König860024e2013-09-07 18:29:01 +020032#include "radeon_trace.h"
Jerome Glisse771fe6b2009-06-05 14:42:42 +020033
Marek Olšákc9b76542014-03-02 00:56:21 +010034#define RADEON_CS_MAX_PRIORITY 32u
35#define RADEON_CS_NUM_BUCKETS (RADEON_CS_MAX_PRIORITY + 1)
36
37/* This is based on the bucket sort with O(n) time complexity.
38 * An item with priority "i" is added to bucket[i]. The lists are then
39 * concatenated in descending order.
40 */
41struct radeon_cs_buckets {
42 struct list_head bucket[RADEON_CS_NUM_BUCKETS];
43};
44
45static void radeon_cs_buckets_init(struct radeon_cs_buckets *b)
46{
47 unsigned i;
48
49 for (i = 0; i < RADEON_CS_NUM_BUCKETS; i++)
50 INIT_LIST_HEAD(&b->bucket[i]);
51}
52
53static void radeon_cs_buckets_add(struct radeon_cs_buckets *b,
54 struct list_head *item, unsigned priority)
55{
56 /* Since buffers which appear sooner in the relocation list are
57 * likely to be used more often than buffers which appear later
58 * in the list, the sort mustn't change the ordering of buffers
59 * with the same priority, i.e. it must be stable.
60 */
61 list_add_tail(item, &b->bucket[min(priority, RADEON_CS_MAX_PRIORITY)]);
62}
63
64static void radeon_cs_buckets_get_list(struct radeon_cs_buckets *b,
65 struct list_head *out_list)
66{
67 unsigned i;
68
69 /* Connect the sorted buckets in the output list. */
70 for (i = 0; i < RADEON_CS_NUM_BUCKETS; i++) {
71 list_splice(&b->bucket[i], out_list);
72 }
73}
74
Lauri Kasanen1109ca02012-08-31 13:43:50 -040075static int radeon_cs_parser_relocs(struct radeon_cs_parser *p)
Jerome Glisse771fe6b2009-06-05 14:42:42 +020076{
77 struct drm_device *ddev = p->rdev->ddev;
78 struct radeon_cs_chunk *chunk;
Marek Olšákc9b76542014-03-02 00:56:21 +010079 struct radeon_cs_buckets buckets;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020080 unsigned i, j;
81 bool duplicate;
82
83 if (p->chunk_relocs_idx == -1) {
84 return 0;
85 }
86 chunk = &p->chunks[p->chunk_relocs_idx];
Alex Deuchercf4ccd02011-11-18 10:19:47 -050087 p->dma_reloc_idx = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020088 /* FIXME: we assume that each relocs use 4 dwords */
89 p->nrelocs = chunk->length_dw / 4;
90 p->relocs_ptr = kcalloc(p->nrelocs, sizeof(void *), GFP_KERNEL);
91 if (p->relocs_ptr == NULL) {
92 return -ENOMEM;
93 }
94 p->relocs = kcalloc(p->nrelocs, sizeof(struct radeon_cs_reloc), GFP_KERNEL);
95 if (p->relocs == NULL) {
96 return -ENOMEM;
97 }
Marek Olšákc9b76542014-03-02 00:56:21 +010098
99 radeon_cs_buckets_init(&buckets);
100
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200101 for (i = 0; i < p->nrelocs; i++) {
102 struct drm_radeon_cs_reloc *r;
Marek Olšákc9b76542014-03-02 00:56:21 +0100103 unsigned priority;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200104
105 duplicate = false;
106 r = (struct drm_radeon_cs_reloc *)&chunk->kdata[i*4];
Christian König16557f12011-10-24 14:59:17 +0200107 for (j = 0; j < i; j++) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200108 if (r->handle == p->relocs[j].handle) {
109 p->relocs_ptr[i] = &p->relocs[j];
110 duplicate = true;
111 break;
112 }
113 }
Christian König4474f3a2013-04-08 12:41:28 +0200114 if (duplicate) {
Christian König16557f12011-10-24 14:59:17 +0200115 p->relocs[i].handle = 0;
Christian König4474f3a2013-04-08 12:41:28 +0200116 continue;
117 }
118
119 p->relocs[i].gobj = drm_gem_object_lookup(ddev, p->filp,
120 r->handle);
121 if (p->relocs[i].gobj == NULL) {
122 DRM_ERROR("gem object lookup failed 0x%x\n",
123 r->handle);
124 return -ENOENT;
125 }
126 p->relocs_ptr[i] = &p->relocs[i];
127 p->relocs[i].robj = gem_to_radeon_bo(p->relocs[i].gobj);
Marek Olšákc9b76542014-03-02 00:56:21 +0100128
129 /* The userspace buffer priorities are from 0 to 15. A higher
130 * number means the buffer is more important.
131 * Also, the buffers used for write have a higher priority than
132 * the buffers used for read only, which doubles the range
133 * to 0 to 31. 32 is reserved for the kernel driver.
134 */
135 priority = (r->flags & 0xf) * 2 + !!r->write_domain;
Christian König4474f3a2013-04-08 12:41:28 +0200136
Christian König4f66c592013-09-15 13:31:28 +0200137 /* the first reloc of an UVD job is the msg and that must be in
138 VRAM, also but everything into VRAM on AGP cards to avoid
139 image corruptions */
140 if (p->ring == R600_RING_TYPE_UVD_INDEX &&
Alex Deucher4ca5a6c2013-09-15 23:23:07 -0400141 (i == 0 || drm_pci_device_is_agp(p->rdev->ddev))) {
Christian Königbcf6f1e2013-10-15 20:12:03 +0200142 /* TODO: is this still needed for NI+ ? */
Christian Königdf0af442014-03-03 12:38:08 +0100143 p->relocs[i].domain =
Christian Königf2ba57b2013-04-08 12:41:29 +0200144 RADEON_GEM_DOMAIN_VRAM;
145
Christian Königdf0af442014-03-03 12:38:08 +0100146 p->relocs[i].alt_domain =
Christian Königf2ba57b2013-04-08 12:41:29 +0200147 RADEON_GEM_DOMAIN_VRAM;
148
Marek Olšákc9b76542014-03-02 00:56:21 +0100149 /* prioritize this over any other relocation */
150 priority = RADEON_CS_MAX_PRIORITY;
Christian Königf2ba57b2013-04-08 12:41:29 +0200151 } else {
152 uint32_t domain = r->write_domain ?
153 r->write_domain : r->read_domains;
154
Christian Königdf0af442014-03-03 12:38:08 +0100155 p->relocs[i].domain = domain;
Christian Königf2ba57b2013-04-08 12:41:29 +0200156 if (domain == RADEON_GEM_DOMAIN_VRAM)
157 domain |= RADEON_GEM_DOMAIN_GTT;
Christian Königdf0af442014-03-03 12:38:08 +0100158 p->relocs[i].alt_domain = domain;
Christian Königf2ba57b2013-04-08 12:41:29 +0200159 }
Christian König4474f3a2013-04-08 12:41:28 +0200160
Christian Königdf0af442014-03-03 12:38:08 +0100161 p->relocs[i].tv.bo = &p->relocs[i].robj->tbo;
Christian König4474f3a2013-04-08 12:41:28 +0200162 p->relocs[i].handle = r->handle;
163
Christian Königdf0af442014-03-03 12:38:08 +0100164 radeon_cs_buckets_add(&buckets, &p->relocs[i].tv.head,
Marek Olšákc9b76542014-03-02 00:56:21 +0100165 priority);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200166 }
Marek Olšákc9b76542014-03-02 00:56:21 +0100167
168 radeon_cs_buckets_get_list(&buckets, &p->validated);
169
Christian König6d2f2942014-02-20 13:42:17 +0100170 if (p->cs_flags & RADEON_CS_USE_VM)
171 p->vm_bos = radeon_vm_get_bos(p->rdev, p->ib.vm,
172 &p->validated);
173
Marek Olšák19dff562014-03-02 00:56:22 +0100174 return radeon_bo_list_validate(p->rdev, &p->ticket, &p->validated, p->ring);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200175}
176
Jerome Glisse721604a2012-01-05 22:11:05 -0500177static int radeon_cs_get_ring(struct radeon_cs_parser *p, u32 ring, s32 priority)
178{
179 p->priority = priority;
180
181 switch (ring) {
182 default:
183 DRM_ERROR("unknown ring id: %d\n", ring);
184 return -EINVAL;
185 case RADEON_CS_RING_GFX:
186 p->ring = RADEON_RING_TYPE_GFX_INDEX;
187 break;
188 case RADEON_CS_RING_COMPUTE:
Alex Deucher963e81f2013-06-26 17:37:11 -0400189 if (p->rdev->family >= CHIP_TAHITI) {
Alex Deucher8d5ef7b2012-03-20 17:18:24 -0400190 if (p->priority > 0)
191 p->ring = CAYMAN_RING_TYPE_CP1_INDEX;
192 else
193 p->ring = CAYMAN_RING_TYPE_CP2_INDEX;
194 } else
195 p->ring = RADEON_RING_TYPE_GFX_INDEX;
Jerome Glisse721604a2012-01-05 22:11:05 -0500196 break;
Alex Deucher278a3342012-12-13 12:27:28 -0500197 case RADEON_CS_RING_DMA:
198 if (p->rdev->family >= CHIP_CAYMAN) {
199 if (p->priority > 0)
200 p->ring = R600_RING_TYPE_DMA_INDEX;
201 else
202 p->ring = CAYMAN_RING_TYPE_DMA1_INDEX;
Alex Deucherb9ace362014-01-27 10:59:51 -0500203 } else if (p->rdev->family >= CHIP_RV770) {
Alex Deucher278a3342012-12-13 12:27:28 -0500204 p->ring = R600_RING_TYPE_DMA_INDEX;
205 } else {
206 return -EINVAL;
207 }
208 break;
Christian Königf2ba57b2013-04-08 12:41:29 +0200209 case RADEON_CS_RING_UVD:
210 p->ring = R600_RING_TYPE_UVD_INDEX;
211 break;
Christian Königd93f7932013-05-23 12:10:04 +0200212 case RADEON_CS_RING_VCE:
213 /* TODO: only use the low priority ring for now */
214 p->ring = TN_RING_TYPE_VCE1_INDEX;
215 break;
Jerome Glisse721604a2012-01-05 22:11:05 -0500216 }
217 return 0;
218}
219
Christian König220907d2012-05-10 16:46:43 +0200220static void radeon_cs_sync_rings(struct radeon_cs_parser *p)
Christian König93504fc2012-01-05 22:11:06 -0500221{
Christian König220907d2012-05-10 16:46:43 +0200222 int i;
Christian König93504fc2012-01-05 22:11:06 -0500223
Christian Königcdac5502012-02-23 15:18:42 +0100224 for (i = 0; i < p->nrelocs; i++) {
Christian Königf82cbdd2012-08-09 16:35:36 +0200225 if (!p->relocs[i].robj)
Christian Königcdac5502012-02-23 15:18:42 +0100226 continue;
227
Christian König1654b812013-11-12 12:58:05 +0100228 radeon_semaphore_sync_to(p->ib.semaphore,
229 p->relocs[i].robj->tbo.sync_obj);
Christian Königcdac5502012-02-23 15:18:42 +0100230 }
Christian König93504fc2012-01-05 22:11:06 -0500231}
232
Alex Deucher9b001472012-05-30 10:09:30 -0400233/* XXX: note that this is called from the legacy UMS CS ioctl as well */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200234int radeon_cs_parser_init(struct radeon_cs_parser *p, void *data)
235{
236 struct drm_radeon_cs *cs = data;
237 uint64_t *chunk_array_ptr;
Jerome Glisse721604a2012-01-05 22:11:05 -0500238 unsigned size, i;
239 u32 ring = RADEON_CS_RING_GFX;
240 s32 priority = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200241
242 if (!cs->num_chunks) {
243 return 0;
244 }
245 /* get chunks */
246 INIT_LIST_HEAD(&p->validated);
247 p->idx = 0;
Jerome Glissef2e39222012-05-09 15:35:02 +0200248 p->ib.sa_bo = NULL;
249 p->ib.semaphore = NULL;
250 p->const_ib.sa_bo = NULL;
251 p->const_ib.semaphore = NULL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200252 p->chunk_ib_idx = -1;
253 p->chunk_relocs_idx = -1;
Jerome Glisse721604a2012-01-05 22:11:05 -0500254 p->chunk_flags_idx = -1;
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400255 p->chunk_const_ib_idx = -1;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200256 p->chunks_array = kcalloc(cs->num_chunks, sizeof(uint64_t), GFP_KERNEL);
257 if (p->chunks_array == NULL) {
258 return -ENOMEM;
259 }
260 chunk_array_ptr = (uint64_t *)(unsigned long)(cs->chunks);
Daniel Vetter1d6ac182013-12-11 11:34:44 +0100261 if (copy_from_user(p->chunks_array, chunk_array_ptr,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200262 sizeof(uint64_t)*cs->num_chunks)) {
263 return -EFAULT;
264 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500265 p->cs_flags = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200266 p->nchunks = cs->num_chunks;
267 p->chunks = kcalloc(p->nchunks, sizeof(struct radeon_cs_chunk), GFP_KERNEL);
268 if (p->chunks == NULL) {
269 return -ENOMEM;
270 }
271 for (i = 0; i < p->nchunks; i++) {
272 struct drm_radeon_cs_chunk __user **chunk_ptr = NULL;
273 struct drm_radeon_cs_chunk user_chunk;
274 uint32_t __user *cdata;
275
276 chunk_ptr = (void __user*)(unsigned long)p->chunks_array[i];
Daniel Vetter1d6ac182013-12-11 11:34:44 +0100277 if (copy_from_user(&user_chunk, chunk_ptr,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200278 sizeof(struct drm_radeon_cs_chunk))) {
279 return -EFAULT;
280 }
Dave Airlie5176fdc2009-06-30 11:47:14 +1000281 p->chunks[i].length_dw = user_chunk.length_dw;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200282 p->chunks[i].chunk_id = user_chunk.chunk_id;
283 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_RELOCS) {
284 p->chunk_relocs_idx = i;
285 }
286 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_IB) {
287 p->chunk_ib_idx = i;
Dave Airlie5176fdc2009-06-30 11:47:14 +1000288 /* zero length IB isn't useful */
289 if (p->chunks[i].length_dw == 0)
290 return -EINVAL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200291 }
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400292 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_CONST_IB) {
293 p->chunk_const_ib_idx = i;
294 /* zero length CONST IB isn't useful */
295 if (p->chunks[i].length_dw == 0)
296 return -EINVAL;
297 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500298 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_FLAGS) {
299 p->chunk_flags_idx = i;
300 /* zero length flags aren't useful */
301 if (p->chunks[i].length_dw == 0)
302 return -EINVAL;
Marek Olšáke70f2242011-10-25 01:38:45 +0200303 }
Dave Airlie5176fdc2009-06-30 11:47:14 +1000304
Maarten Lankhorst28a326c2013-10-09 14:36:57 +0200305 size = p->chunks[i].length_dw;
306 cdata = (void __user *)(unsigned long)user_chunk.chunk_data;
307 p->chunks[i].user_ptr = cdata;
308 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_CONST_IB)
309 continue;
310
311 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_IB) {
312 if (!p->rdev || !(p->rdev->flags & RADEON_IS_AGP))
313 continue;
314 }
315
316 p->chunks[i].kdata = drm_malloc_ab(size, sizeof(uint32_t));
317 size *= sizeof(uint32_t);
318 if (p->chunks[i].kdata == NULL) {
319 return -ENOMEM;
320 }
Daniel Vetter1d6ac182013-12-11 11:34:44 +0100321 if (copy_from_user(p->chunks[i].kdata, cdata, size)) {
Maarten Lankhorst28a326c2013-10-09 14:36:57 +0200322 return -EFAULT;
323 }
324 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_FLAGS) {
325 p->cs_flags = p->chunks[i].kdata[0];
326 if (p->chunks[i].length_dw > 1)
327 ring = p->chunks[i].kdata[1];
328 if (p->chunks[i].length_dw > 2)
329 priority = (s32)p->chunks[i].kdata[2];
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200330 }
331 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500332
Alex Deucher9b001472012-05-30 10:09:30 -0400333 /* these are KMS only */
334 if (p->rdev) {
335 if ((p->cs_flags & RADEON_CS_USE_VM) &&
336 !p->rdev->vm_manager.enabled) {
337 DRM_ERROR("VM not active on asic!\n");
338 return -EINVAL;
339 }
340
Alex Deucher9b001472012-05-30 10:09:30 -0400341 if (radeon_cs_get_ring(p, ring, priority))
342 return -EINVAL;
Christian König57449042013-04-08 12:41:27 +0200343
344 /* we only support VM on some SI+ rings */
Christian König60a44542014-05-21 17:43:59 +0200345 if ((p->cs_flags & RADEON_CS_USE_VM) == 0) {
346 if (p->rdev->asic->ring[p->ring]->cs_parse == NULL) {
347 DRM_ERROR("Ring %d requires VM!\n", p->ring);
348 return -EINVAL;
349 }
350 } else {
351 if (p->rdev->asic->ring[p->ring]->ib_parse == NULL) {
352 DRM_ERROR("VM not supported on ring %d!\n",
353 p->ring);
354 return -EINVAL;
355 }
Christian König57449042013-04-08 12:41:27 +0200356 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200357 }
Marek Olšáke70f2242011-10-25 01:38:45 +0200358
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200359 return 0;
360}
361
Marek Olšák43304412014-03-02 00:56:20 +0100362static int cmp_size_smaller_first(void *priv, struct list_head *a,
363 struct list_head *b)
364{
Christian Königdf0af442014-03-03 12:38:08 +0100365 struct radeon_cs_reloc *la = list_entry(a, struct radeon_cs_reloc, tv.head);
366 struct radeon_cs_reloc *lb = list_entry(b, struct radeon_cs_reloc, tv.head);
Marek Olšák43304412014-03-02 00:56:20 +0100367
368 /* Sort A before B if A is smaller. */
Christian Königdf0af442014-03-03 12:38:08 +0100369 return (int)la->robj->tbo.num_pages - (int)lb->robj->tbo.num_pages;
Marek Olšák43304412014-03-02 00:56:20 +0100370}
371
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200372/**
373 * cs_parser_fini() - clean parser states
374 * @parser: parser structure holding parsing context.
375 * @error: error number
376 *
377 * If error is set than unvalidate buffer, otherwise just free memory
378 * used by parsing context.
379 **/
Maarten Lankhorstecff6652013-06-27 13:48:17 +0200380static void radeon_cs_parser_fini(struct radeon_cs_parser *parser, int error, bool backoff)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200381{
382 unsigned i;
383
Jerome Glissee43b5ec2012-08-06 12:32:21 -0400384 if (!error) {
Marek Olšák43304412014-03-02 00:56:20 +0100385 /* Sort the buffer list from the smallest to largest buffer,
386 * which affects the order of buffers in the LRU list.
387 * This assures that the smallest buffers are added first
388 * to the LRU list, so they are likely to be later evicted
389 * first, instead of large buffers whose eviction is more
390 * expensive.
391 *
392 * This slightly lowers the number of bytes moved by TTM
393 * per frame under memory pressure.
394 */
395 list_sort(NULL, &parser->validated, cmp_size_smaller_first);
396
Maarten Lankhorstecff6652013-06-27 13:48:17 +0200397 ttm_eu_fence_buffer_objects(&parser->ticket,
398 &parser->validated,
Jerome Glissef2e39222012-05-09 15:35:02 +0200399 parser->ib.fence);
Maarten Lankhorstecff6652013-06-27 13:48:17 +0200400 } else if (backoff) {
401 ttm_eu_backoff_reservation(&parser->ticket,
402 &parser->validated);
Jerome Glissee43b5ec2012-08-06 12:32:21 -0400403 }
Thomas Hellstrom147666f2010-11-17 12:38:32 +0000404
Pauli Nieminenfcbc4512010-03-19 07:44:33 +0000405 if (parser->relocs != NULL) {
406 for (i = 0; i < parser->nrelocs; i++) {
407 if (parser->relocs[i].gobj)
408 drm_gem_object_unreference_unlocked(parser->relocs[i].gobj);
409 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200410 }
Michel Dänzer48e113e2009-09-15 17:09:32 +0200411 kfree(parser->track);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200412 kfree(parser->relocs);
413 kfree(parser->relocs_ptr);
Christian König6d2f2942014-02-20 13:42:17 +0100414 kfree(parser->vm_bos);
Maarten Lankhorst28a326c2013-10-09 14:36:57 +0200415 for (i = 0; i < parser->nchunks; i++)
416 drm_free_large(parser->chunks[i].kdata);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200417 kfree(parser->chunks);
418 kfree(parser->chunks_array);
419 radeon_ib_free(parser->rdev, &parser->ib);
Jerome Glissef2e39222012-05-09 15:35:02 +0200420 radeon_ib_free(parser->rdev, &parser->const_ib);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200421}
422
Jerome Glisse721604a2012-01-05 22:11:05 -0500423static int radeon_cs_ib_chunk(struct radeon_device *rdev,
424 struct radeon_cs_parser *parser)
425{
Jerome Glisse721604a2012-01-05 22:11:05 -0500426 int r;
427
428 if (parser->chunk_ib_idx == -1)
429 return 0;
430
431 if (parser->cs_flags & RADEON_CS_USE_VM)
432 return 0;
433
Christian Königeb0c19c2012-02-23 15:18:44 +0100434 r = radeon_cs_parse(rdev, parser->ring, parser);
Jerome Glisse721604a2012-01-05 22:11:05 -0500435 if (r || parser->parser_error) {
436 DRM_ERROR("Invalid command stream !\n");
437 return r;
438 }
Alex Deucherce3537d2013-07-24 12:12:49 -0400439
440 if (parser->ring == R600_RING_TYPE_UVD_INDEX)
441 radeon_uvd_note_usage(rdev);
Alex Deucher03afe6f2013-08-23 11:56:26 -0400442 else if ((parser->ring == TN_RING_TYPE_VCE1_INDEX) ||
443 (parser->ring == TN_RING_TYPE_VCE2_INDEX))
444 radeon_vce_note_usage(rdev);
Alex Deucherce3537d2013-07-24 12:12:49 -0400445
Christian König220907d2012-05-10 16:46:43 +0200446 radeon_cs_sync_rings(parser);
Christian König4ef72562012-07-13 13:06:00 +0200447 r = radeon_ib_schedule(rdev, &parser->ib, NULL);
Jerome Glisse721604a2012-01-05 22:11:05 -0500448 if (r) {
449 DRM_ERROR("Failed to schedule IB !\n");
450 }
Christian König93bf8882012-07-03 14:05:41 +0200451 return r;
Jerome Glisse721604a2012-01-05 22:11:05 -0500452}
453
Christian König6d2f2942014-02-20 13:42:17 +0100454static int radeon_bo_vm_update_pte(struct radeon_cs_parser *p,
Jerome Glisse721604a2012-01-05 22:11:05 -0500455 struct radeon_vm *vm)
456{
Christian König6d2f2942014-02-20 13:42:17 +0100457 struct radeon_device *rdev = p->rdev;
458 int i, r;
Jerome Glisse721604a2012-01-05 22:11:05 -0500459
Christian König6d2f2942014-02-20 13:42:17 +0100460 r = radeon_vm_update_page_directory(rdev, vm);
461 if (r)
Jerome Glisse3e8970f2012-08-13 12:07:33 -0400462 return r;
Christian König6d2f2942014-02-20 13:42:17 +0100463
464 r = radeon_vm_bo_update(rdev, vm, rdev->ring_tmp_bo.bo,
465 &rdev->ring_tmp_bo.bo->tbo.mem);
466 if (r)
467 return r;
468
469 for (i = 0; i < p->nrelocs; i++) {
470 struct radeon_bo *bo;
471
472 /* ignore duplicates */
473 if (p->relocs_ptr[i] != &p->relocs[i])
474 continue;
475
476 bo = p->relocs[i].robj;
477 r = radeon_vm_bo_update(rdev, vm, bo, &bo->tbo.mem);
478 if (r)
Jerome Glisse721604a2012-01-05 22:11:05 -0500479 return r;
Jerome Glisse721604a2012-01-05 22:11:05 -0500480 }
481 return 0;
482}
483
484static int radeon_cs_ib_vm_chunk(struct radeon_device *rdev,
485 struct radeon_cs_parser *parser)
486{
Jerome Glisse721604a2012-01-05 22:11:05 -0500487 struct radeon_fpriv *fpriv = parser->filp->driver_priv;
488 struct radeon_vm *vm = &fpriv->vm;
489 int r;
490
491 if (parser->chunk_ib_idx == -1)
492 return 0;
Jerome Glisse721604a2012-01-05 22:11:05 -0500493 if ((parser->cs_flags & RADEON_CS_USE_VM) == 0)
494 return 0;
495
Maarten Lankhorst28a326c2013-10-09 14:36:57 +0200496 if (parser->const_ib.length_dw) {
Jerome Glissef2e39222012-05-09 15:35:02 +0200497 r = radeon_ring_ib_parse(rdev, parser->ring, &parser->const_ib);
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400498 if (r) {
499 return r;
500 }
501 }
502
Jerome Glissef2e39222012-05-09 15:35:02 +0200503 r = radeon_ring_ib_parse(rdev, parser->ring, &parser->ib);
Jerome Glisse721604a2012-01-05 22:11:05 -0500504 if (r) {
505 return r;
506 }
507
Alex Deucherce3537d2013-07-24 12:12:49 -0400508 if (parser->ring == R600_RING_TYPE_UVD_INDEX)
509 radeon_uvd_note_usage(rdev);
510
Jerome Glisse721604a2012-01-05 22:11:05 -0500511 mutex_lock(&vm->mutex);
Jerome Glisse721604a2012-01-05 22:11:05 -0500512 r = radeon_bo_vm_update_pte(parser, vm);
513 if (r) {
514 goto out;
515 }
Christian König220907d2012-05-10 16:46:43 +0200516 radeon_cs_sync_rings(parser);
Christian König1654b812013-11-12 12:58:05 +0100517 radeon_semaphore_sync_to(parser->ib.semaphore, vm->fence);
Christian König4ef72562012-07-13 13:06:00 +0200518
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400519 if ((rdev->family >= CHIP_TAHITI) &&
520 (parser->chunk_const_ib_idx != -1)) {
Christian König4ef72562012-07-13 13:06:00 +0200521 r = radeon_ib_schedule(rdev, &parser->ib, &parser->const_ib);
522 } else {
523 r = radeon_ib_schedule(rdev, &parser->ib, NULL);
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400524 }
525
Christian Königee60e292012-08-09 16:21:08 +0200526out:
Christian König36ff39c2012-05-09 10:07:08 +0200527 mutex_unlock(&vm->mutex);
Jerome Glisse721604a2012-01-05 22:11:05 -0500528 return r;
529}
530
Christian König6c6f4782012-05-02 15:11:19 +0200531static int radeon_cs_handle_lockup(struct radeon_device *rdev, int r)
532{
533 if (r == -EDEADLK) {
534 r = radeon_gpu_reset(rdev);
535 if (!r)
536 r = -EAGAIN;
537 }
538 return r;
539}
540
Maarten Lankhorst28a326c2013-10-09 14:36:57 +0200541static int radeon_cs_ib_fill(struct radeon_device *rdev, struct radeon_cs_parser *parser)
542{
543 struct radeon_cs_chunk *ib_chunk;
544 struct radeon_vm *vm = NULL;
545 int r;
546
547 if (parser->chunk_ib_idx == -1)
548 return 0;
549
550 if (parser->cs_flags & RADEON_CS_USE_VM) {
551 struct radeon_fpriv *fpriv = parser->filp->driver_priv;
552 vm = &fpriv->vm;
553
554 if ((rdev->family >= CHIP_TAHITI) &&
555 (parser->chunk_const_ib_idx != -1)) {
556 ib_chunk = &parser->chunks[parser->chunk_const_ib_idx];
557 if (ib_chunk->length_dw > RADEON_IB_VM_MAX_SIZE) {
558 DRM_ERROR("cs IB CONST too big: %d\n", ib_chunk->length_dw);
559 return -EINVAL;
560 }
561 r = radeon_ib_get(rdev, parser->ring, &parser->const_ib,
562 vm, ib_chunk->length_dw * 4);
563 if (r) {
564 DRM_ERROR("Failed to get const ib !\n");
565 return r;
566 }
567 parser->const_ib.is_const_ib = true;
568 parser->const_ib.length_dw = ib_chunk->length_dw;
Daniel Vetter1d6ac182013-12-11 11:34:44 +0100569 if (copy_from_user(parser->const_ib.ptr,
Maarten Lankhorst28a326c2013-10-09 14:36:57 +0200570 ib_chunk->user_ptr,
571 ib_chunk->length_dw * 4))
572 return -EFAULT;
573 }
574
575 ib_chunk = &parser->chunks[parser->chunk_ib_idx];
576 if (ib_chunk->length_dw > RADEON_IB_VM_MAX_SIZE) {
577 DRM_ERROR("cs IB too big: %d\n", ib_chunk->length_dw);
578 return -EINVAL;
579 }
580 }
581 ib_chunk = &parser->chunks[parser->chunk_ib_idx];
582
583 r = radeon_ib_get(rdev, parser->ring, &parser->ib,
584 vm, ib_chunk->length_dw * 4);
585 if (r) {
586 DRM_ERROR("Failed to get ib !\n");
587 return r;
588 }
589 parser->ib.length_dw = ib_chunk->length_dw;
590 if (ib_chunk->kdata)
591 memcpy(parser->ib.ptr, ib_chunk->kdata, ib_chunk->length_dw * 4);
Daniel Vetter1d6ac182013-12-11 11:34:44 +0100592 else if (copy_from_user(parser->ib.ptr, ib_chunk->user_ptr, ib_chunk->length_dw * 4))
Maarten Lankhorst28a326c2013-10-09 14:36:57 +0200593 return -EFAULT;
594 return 0;
595}
596
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200597int radeon_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
598{
599 struct radeon_device *rdev = dev->dev_private;
600 struct radeon_cs_parser parser;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200601 int r;
602
Jerome Glissedee53e72012-07-02 12:45:19 -0400603 down_read(&rdev->exclusive_lock);
Jerome Glisse6b7746e2012-02-20 17:57:20 -0500604 if (!rdev->accel_working) {
Jerome Glissedee53e72012-07-02 12:45:19 -0400605 up_read(&rdev->exclusive_lock);
Jerome Glisse6b7746e2012-02-20 17:57:20 -0500606 return -EBUSY;
607 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200608 /* initialize parser */
609 memset(&parser, 0, sizeof(struct radeon_cs_parser));
610 parser.filp = filp;
611 parser.rdev = rdev;
Jerome Glissec8c15ff2010-01-18 13:01:36 +0100612 parser.dev = rdev->dev;
Dave Airlie428c6e32011-06-08 19:58:29 +1000613 parser.family = rdev->family;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200614 r = radeon_cs_parser_init(&parser, data);
615 if (r) {
616 DRM_ERROR("Failed to initialize parser !\n");
Maarten Lankhorstecff6652013-06-27 13:48:17 +0200617 radeon_cs_parser_fini(&parser, r, false);
Jerome Glissedee53e72012-07-02 12:45:19 -0400618 up_read(&rdev->exclusive_lock);
Christian König6c6f4782012-05-02 15:11:19 +0200619 r = radeon_cs_handle_lockup(rdev, r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200620 return r;
621 }
Maarten Lankhorst28a326c2013-10-09 14:36:57 +0200622
623 r = radeon_cs_ib_fill(rdev, &parser);
624 if (!r) {
625 r = radeon_cs_parser_relocs(&parser);
626 if (r && r != -ERESTARTSYS)
Dave Airlie97f23b32010-03-19 10:33:44 +1000627 DRM_ERROR("Failed to parse relocation %d!\n", r);
Maarten Lankhorst28a326c2013-10-09 14:36:57 +0200628 }
629
630 if (r) {
Maarten Lankhorstecff6652013-06-27 13:48:17 +0200631 radeon_cs_parser_fini(&parser, r, false);
Jerome Glissedee53e72012-07-02 12:45:19 -0400632 up_read(&rdev->exclusive_lock);
Christian König6c6f4782012-05-02 15:11:19 +0200633 r = radeon_cs_handle_lockup(rdev, r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200634 return r;
635 }
Christian König55b51c82013-04-18 15:25:59 +0200636
Christian König860024e2013-09-07 18:29:01 +0200637 trace_radeon_cs(&parser);
638
Jerome Glisse721604a2012-01-05 22:11:05 -0500639 r = radeon_cs_ib_chunk(rdev, &parser);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200640 if (r) {
Jerome Glisse721604a2012-01-05 22:11:05 -0500641 goto out;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200642 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500643 r = radeon_cs_ib_vm_chunk(rdev, &parser);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200644 if (r) {
Jerome Glisse721604a2012-01-05 22:11:05 -0500645 goto out;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200646 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500647out:
Maarten Lankhorstecff6652013-06-27 13:48:17 +0200648 radeon_cs_parser_fini(&parser, r, true);
Jerome Glissedee53e72012-07-02 12:45:19 -0400649 up_read(&rdev->exclusive_lock);
Christian König6c6f4782012-05-02 15:11:19 +0200650 r = radeon_cs_handle_lockup(rdev, r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200651 return r;
652}
Dave Airlie513bcb42009-09-23 16:56:27 +1000653
Ilija Hadzic4db01312013-01-02 18:27:40 -0500654/**
655 * radeon_cs_packet_parse() - parse cp packet and point ib index to next packet
656 * @parser: parser structure holding parsing context.
657 * @pkt: where to store packet information
658 *
659 * Assume that chunk_ib_index is properly set. Will return -EINVAL
660 * if packet is bigger than remaining ib size. or if packets is unknown.
661 **/
662int radeon_cs_packet_parse(struct radeon_cs_parser *p,
663 struct radeon_cs_packet *pkt,
664 unsigned idx)
665{
666 struct radeon_cs_chunk *ib_chunk = &p->chunks[p->chunk_ib_idx];
667 struct radeon_device *rdev = p->rdev;
668 uint32_t header;
669
670 if (idx >= ib_chunk->length_dw) {
671 DRM_ERROR("Can not parse packet at %d after CS end %d !\n",
672 idx, ib_chunk->length_dw);
673 return -EINVAL;
674 }
675 header = radeon_get_ib_value(p, idx);
676 pkt->idx = idx;
677 pkt->type = RADEON_CP_PACKET_GET_TYPE(header);
678 pkt->count = RADEON_CP_PACKET_GET_COUNT(header);
679 pkt->one_reg_wr = 0;
680 switch (pkt->type) {
681 case RADEON_PACKET_TYPE0:
682 if (rdev->family < CHIP_R600) {
683 pkt->reg = R100_CP_PACKET0_GET_REG(header);
684 pkt->one_reg_wr =
685 RADEON_CP_PACKET0_GET_ONE_REG_WR(header);
686 } else
687 pkt->reg = R600_CP_PACKET0_GET_REG(header);
688 break;
689 case RADEON_PACKET_TYPE3:
690 pkt->opcode = RADEON_CP_PACKET3_GET_OPCODE(header);
691 break;
692 case RADEON_PACKET_TYPE2:
693 pkt->count = -1;
694 break;
695 default:
696 DRM_ERROR("Unknown packet type %d at %d !\n", pkt->type, idx);
697 return -EINVAL;
698 }
699 if ((pkt->count + 1 + pkt->idx) >= ib_chunk->length_dw) {
700 DRM_ERROR("Packet (%d:%d:%d) end after CS buffer (%d) !\n",
701 pkt->idx, pkt->type, pkt->count, ib_chunk->length_dw);
702 return -EINVAL;
703 }
704 return 0;
705}
Ilija Hadzic9ffb7a62013-01-02 18:27:42 -0500706
707/**
708 * radeon_cs_packet_next_is_pkt3_nop() - test if the next packet is P3 NOP
709 * @p: structure holding the parser context.
710 *
711 * Check if the next packet is NOP relocation packet3.
712 **/
713bool radeon_cs_packet_next_is_pkt3_nop(struct radeon_cs_parser *p)
714{
715 struct radeon_cs_packet p3reloc;
716 int r;
717
718 r = radeon_cs_packet_parse(p, &p3reloc, p->idx);
719 if (r)
720 return false;
721 if (p3reloc.type != RADEON_PACKET_TYPE3)
722 return false;
723 if (p3reloc.opcode != RADEON_PACKET3_NOP)
724 return false;
725 return true;
726}
Ilija Hadzicc3ad63a2013-01-02 18:27:45 -0500727
728/**
729 * radeon_cs_dump_packet() - dump raw packet context
730 * @p: structure holding the parser context.
731 * @pkt: structure holding the packet.
732 *
733 * Used mostly for debugging and error reporting.
734 **/
735void radeon_cs_dump_packet(struct radeon_cs_parser *p,
736 struct radeon_cs_packet *pkt)
737{
738 volatile uint32_t *ib;
739 unsigned i;
740 unsigned idx;
741
742 ib = p->ib.ptr;
743 idx = pkt->idx;
744 for (i = 0; i <= (pkt->count + 1); i++, idx++)
745 DRM_INFO("ib[%d]=0x%08X\n", idx, ib[idx]);
746}
747
Ilija Hadzice9716992013-01-02 18:27:46 -0500748/**
749 * radeon_cs_packet_next_reloc() - parse next (should be reloc) packet
750 * @parser: parser structure holding parsing context.
751 * @data: pointer to relocation data
752 * @offset_start: starting offset
753 * @offset_mask: offset mask (to align start offset on)
754 * @reloc: reloc informations
755 *
756 * Check if next packet is relocation packet3, do bo validation and compute
757 * GPU offset using the provided start.
758 **/
759int radeon_cs_packet_next_reloc(struct radeon_cs_parser *p,
760 struct radeon_cs_reloc **cs_reloc,
761 int nomm)
762{
763 struct radeon_cs_chunk *relocs_chunk;
764 struct radeon_cs_packet p3reloc;
765 unsigned idx;
766 int r;
767
768 if (p->chunk_relocs_idx == -1) {
769 DRM_ERROR("No relocation chunk !\n");
770 return -EINVAL;
771 }
772 *cs_reloc = NULL;
773 relocs_chunk = &p->chunks[p->chunk_relocs_idx];
774 r = radeon_cs_packet_parse(p, &p3reloc, p->idx);
775 if (r)
776 return r;
777 p->idx += p3reloc.count + 2;
778 if (p3reloc.type != RADEON_PACKET_TYPE3 ||
779 p3reloc.opcode != RADEON_PACKET3_NOP) {
780 DRM_ERROR("No packet3 for relocation for packet at %d.\n",
781 p3reloc.idx);
782 radeon_cs_dump_packet(p, &p3reloc);
783 return -EINVAL;
784 }
785 idx = radeon_get_ib_value(p, p3reloc.idx + 1);
786 if (idx >= relocs_chunk->length_dw) {
787 DRM_ERROR("Relocs at %d after relocations chunk end %d !\n",
788 idx, relocs_chunk->length_dw);
789 radeon_cs_dump_packet(p, &p3reloc);
790 return -EINVAL;
791 }
792 /* FIXME: we assume reloc size is 4 dwords */
793 if (nomm) {
794 *cs_reloc = p->relocs;
Christian Königdf0af442014-03-03 12:38:08 +0100795 (*cs_reloc)->gpu_offset =
Ilija Hadzice9716992013-01-02 18:27:46 -0500796 (u64)relocs_chunk->kdata[idx + 3] << 32;
Christian Königdf0af442014-03-03 12:38:08 +0100797 (*cs_reloc)->gpu_offset |= relocs_chunk->kdata[idx + 0];
Ilija Hadzice9716992013-01-02 18:27:46 -0500798 } else
799 *cs_reloc = p->relocs_ptr[(idx / 4)];
800 return 0;
801}