blob: 1321491cf4992a7adc170ee957ac1b2be19285b3 [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;
Christian Königf72a113a2014-08-07 09:36:00 +020081 bool duplicate, need_mmap_lock = false;
82 int r;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020083
84 if (p->chunk_relocs_idx == -1) {
85 return 0;
86 }
87 chunk = &p->chunks[p->chunk_relocs_idx];
Alex Deuchercf4ccd02011-11-18 10:19:47 -050088 p->dma_reloc_idx = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020089 /* FIXME: we assume that each relocs use 4 dwords */
90 p->nrelocs = chunk->length_dw / 4;
91 p->relocs_ptr = kcalloc(p->nrelocs, sizeof(void *), GFP_KERNEL);
92 if (p->relocs_ptr == NULL) {
93 return -ENOMEM;
94 }
95 p->relocs = kcalloc(p->nrelocs, sizeof(struct radeon_cs_reloc), GFP_KERNEL);
96 if (p->relocs == NULL) {
97 return -ENOMEM;
98 }
Marek Olšákc9b76542014-03-02 00:56:21 +010099
100 radeon_cs_buckets_init(&buckets);
101
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200102 for (i = 0; i < p->nrelocs; i++) {
103 struct drm_radeon_cs_reloc *r;
Marek Olšákc9b76542014-03-02 00:56:21 +0100104 unsigned priority;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200105
106 duplicate = false;
107 r = (struct drm_radeon_cs_reloc *)&chunk->kdata[i*4];
Christian König16557f12011-10-24 14:59:17 +0200108 for (j = 0; j < i; j++) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200109 if (r->handle == p->relocs[j].handle) {
110 p->relocs_ptr[i] = &p->relocs[j];
111 duplicate = true;
112 break;
113 }
114 }
Christian König4474f3a2013-04-08 12:41:28 +0200115 if (duplicate) {
Christian König16557f12011-10-24 14:59:17 +0200116 p->relocs[i].handle = 0;
Christian König4474f3a2013-04-08 12:41:28 +0200117 continue;
118 }
119
120 p->relocs[i].gobj = drm_gem_object_lookup(ddev, p->filp,
121 r->handle);
122 if (p->relocs[i].gobj == NULL) {
123 DRM_ERROR("gem object lookup failed 0x%x\n",
124 r->handle);
125 return -ENOENT;
126 }
127 p->relocs_ptr[i] = &p->relocs[i];
128 p->relocs[i].robj = gem_to_radeon_bo(p->relocs[i].gobj);
Marek Olšákc9b76542014-03-02 00:56:21 +0100129
130 /* The userspace buffer priorities are from 0 to 15. A higher
131 * number means the buffer is more important.
132 * Also, the buffers used for write have a higher priority than
133 * the buffers used for read only, which doubles the range
134 * to 0 to 31. 32 is reserved for the kernel driver.
135 */
136 priority = (r->flags & 0xf) * 2 + !!r->write_domain;
Christian König4474f3a2013-04-08 12:41:28 +0200137
Christian König4f66c592013-09-15 13:31:28 +0200138 /* the first reloc of an UVD job is the msg and that must be in
139 VRAM, also but everything into VRAM on AGP cards to avoid
140 image corruptions */
141 if (p->ring == R600_RING_TYPE_UVD_INDEX &&
Alex Deucher4ca5a6c2013-09-15 23:23:07 -0400142 (i == 0 || drm_pci_device_is_agp(p->rdev->ddev))) {
Christian Königbcf6f1e2013-10-15 20:12:03 +0200143 /* TODO: is this still needed for NI+ ? */
Christian Königce6758c2014-06-02 17:33:07 +0200144 p->relocs[i].prefered_domains =
Christian Königf2ba57b2013-04-08 12:41:29 +0200145 RADEON_GEM_DOMAIN_VRAM;
146
Christian Königce6758c2014-06-02 17:33:07 +0200147 p->relocs[i].allowed_domains =
Christian Königf2ba57b2013-04-08 12:41:29 +0200148 RADEON_GEM_DOMAIN_VRAM;
149
Marek Olšákc9b76542014-03-02 00:56:21 +0100150 /* prioritize this over any other relocation */
151 priority = RADEON_CS_MAX_PRIORITY;
Christian Königf2ba57b2013-04-08 12:41:29 +0200152 } else {
153 uint32_t domain = r->write_domain ?
154 r->write_domain : r->read_domains;
155
Marek Olšákec65da32014-05-27 02:56:36 +0200156 if (domain & RADEON_GEM_DOMAIN_CPU) {
157 DRM_ERROR("RADEON_GEM_DOMAIN_CPU is not valid "
158 "for command submission\n");
159 return -EINVAL;
160 }
161
Christian Königce6758c2014-06-02 17:33:07 +0200162 p->relocs[i].prefered_domains = domain;
Christian Königf2ba57b2013-04-08 12:41:29 +0200163 if (domain == RADEON_GEM_DOMAIN_VRAM)
164 domain |= RADEON_GEM_DOMAIN_GTT;
Christian Königce6758c2014-06-02 17:33:07 +0200165 p->relocs[i].allowed_domains = domain;
Christian Königf2ba57b2013-04-08 12:41:29 +0200166 }
Christian König4474f3a2013-04-08 12:41:28 +0200167
Christian Königf72a113a2014-08-07 09:36:00 +0200168 if (radeon_ttm_tt_has_userptr(p->relocs[i].robj->tbo.ttm)) {
169 uint32_t domain = p->relocs[i].prefered_domains;
170 if (!(domain & RADEON_GEM_DOMAIN_GTT)) {
171 DRM_ERROR("Only RADEON_GEM_DOMAIN_GTT is "
172 "allowed for userptr BOs\n");
173 return -EINVAL;
174 }
175 need_mmap_lock = true;
176 domain = RADEON_GEM_DOMAIN_GTT;
177 p->relocs[i].prefered_domains = domain;
178 p->relocs[i].allowed_domains = domain;
179 }
180
Christian Königdf0af442014-03-03 12:38:08 +0100181 p->relocs[i].tv.bo = &p->relocs[i].robj->tbo;
Christian König4474f3a2013-04-08 12:41:28 +0200182 p->relocs[i].handle = r->handle;
183
Christian Königdf0af442014-03-03 12:38:08 +0100184 radeon_cs_buckets_add(&buckets, &p->relocs[i].tv.head,
Marek Olšákc9b76542014-03-02 00:56:21 +0100185 priority);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200186 }
Marek Olšákc9b76542014-03-02 00:56:21 +0100187
188 radeon_cs_buckets_get_list(&buckets, &p->validated);
189
Christian König6d2f2942014-02-20 13:42:17 +0100190 if (p->cs_flags & RADEON_CS_USE_VM)
191 p->vm_bos = radeon_vm_get_bos(p->rdev, p->ib.vm,
192 &p->validated);
Christian Königf72a113a2014-08-07 09:36:00 +0200193 if (need_mmap_lock)
194 down_read(&current->mm->mmap_sem);
Christian König6d2f2942014-02-20 13:42:17 +0100195
Christian Königf72a113a2014-08-07 09:36:00 +0200196 r = radeon_bo_list_validate(p->rdev, &p->ticket, &p->validated, p->ring);
197
198 if (need_mmap_lock)
199 up_read(&current->mm->mmap_sem);
200
201 return r;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200202}
203
Jerome Glisse721604a2012-01-05 22:11:05 -0500204static int radeon_cs_get_ring(struct radeon_cs_parser *p, u32 ring, s32 priority)
205{
206 p->priority = priority;
207
208 switch (ring) {
209 default:
210 DRM_ERROR("unknown ring id: %d\n", ring);
211 return -EINVAL;
212 case RADEON_CS_RING_GFX:
213 p->ring = RADEON_RING_TYPE_GFX_INDEX;
214 break;
215 case RADEON_CS_RING_COMPUTE:
Alex Deucher963e81f2013-06-26 17:37:11 -0400216 if (p->rdev->family >= CHIP_TAHITI) {
Alex Deucher8d5ef7b2012-03-20 17:18:24 -0400217 if (p->priority > 0)
218 p->ring = CAYMAN_RING_TYPE_CP1_INDEX;
219 else
220 p->ring = CAYMAN_RING_TYPE_CP2_INDEX;
221 } else
222 p->ring = RADEON_RING_TYPE_GFX_INDEX;
Jerome Glisse721604a2012-01-05 22:11:05 -0500223 break;
Alex Deucher278a3342012-12-13 12:27:28 -0500224 case RADEON_CS_RING_DMA:
225 if (p->rdev->family >= CHIP_CAYMAN) {
226 if (p->priority > 0)
227 p->ring = R600_RING_TYPE_DMA_INDEX;
228 else
229 p->ring = CAYMAN_RING_TYPE_DMA1_INDEX;
Alex Deucherb9ace362014-01-27 10:59:51 -0500230 } else if (p->rdev->family >= CHIP_RV770) {
Alex Deucher278a3342012-12-13 12:27:28 -0500231 p->ring = R600_RING_TYPE_DMA_INDEX;
232 } else {
233 return -EINVAL;
234 }
235 break;
Christian Königf2ba57b2013-04-08 12:41:29 +0200236 case RADEON_CS_RING_UVD:
237 p->ring = R600_RING_TYPE_UVD_INDEX;
238 break;
Christian Königd93f7932013-05-23 12:10:04 +0200239 case RADEON_CS_RING_VCE:
240 /* TODO: only use the low priority ring for now */
241 p->ring = TN_RING_TYPE_VCE1_INDEX;
242 break;
Jerome Glisse721604a2012-01-05 22:11:05 -0500243 }
244 return 0;
245}
246
Christian König220907d2012-05-10 16:46:43 +0200247static void radeon_cs_sync_rings(struct radeon_cs_parser *p)
Christian König93504fc2012-01-05 22:11:06 -0500248{
Christian König220907d2012-05-10 16:46:43 +0200249 int i;
Christian König93504fc2012-01-05 22:11:06 -0500250
Christian Königcdac5502012-02-23 15:18:42 +0100251 for (i = 0; i < p->nrelocs; i++) {
Christian Königf82cbdd2012-08-09 16:35:36 +0200252 if (!p->relocs[i].robj)
Christian Königcdac5502012-02-23 15:18:42 +0100253 continue;
254
Christian König1654b812013-11-12 12:58:05 +0100255 radeon_semaphore_sync_to(p->ib.semaphore,
256 p->relocs[i].robj->tbo.sync_obj);
Christian Königcdac5502012-02-23 15:18:42 +0100257 }
Christian König93504fc2012-01-05 22:11:06 -0500258}
259
Alex Deucher9b001472012-05-30 10:09:30 -0400260/* XXX: note that this is called from the legacy UMS CS ioctl as well */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200261int radeon_cs_parser_init(struct radeon_cs_parser *p, void *data)
262{
263 struct drm_radeon_cs *cs = data;
264 uint64_t *chunk_array_ptr;
Jerome Glisse721604a2012-01-05 22:11:05 -0500265 unsigned size, i;
266 u32 ring = RADEON_CS_RING_GFX;
267 s32 priority = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200268
269 if (!cs->num_chunks) {
270 return 0;
271 }
272 /* get chunks */
273 INIT_LIST_HEAD(&p->validated);
274 p->idx = 0;
Jerome Glissef2e39222012-05-09 15:35:02 +0200275 p->ib.sa_bo = NULL;
276 p->ib.semaphore = NULL;
277 p->const_ib.sa_bo = NULL;
278 p->const_ib.semaphore = NULL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200279 p->chunk_ib_idx = -1;
280 p->chunk_relocs_idx = -1;
Jerome Glisse721604a2012-01-05 22:11:05 -0500281 p->chunk_flags_idx = -1;
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400282 p->chunk_const_ib_idx = -1;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200283 p->chunks_array = kcalloc(cs->num_chunks, sizeof(uint64_t), GFP_KERNEL);
284 if (p->chunks_array == NULL) {
285 return -ENOMEM;
286 }
287 chunk_array_ptr = (uint64_t *)(unsigned long)(cs->chunks);
Daniel Vetter1d6ac182013-12-11 11:34:44 +0100288 if (copy_from_user(p->chunks_array, chunk_array_ptr,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200289 sizeof(uint64_t)*cs->num_chunks)) {
290 return -EFAULT;
291 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500292 p->cs_flags = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200293 p->nchunks = cs->num_chunks;
294 p->chunks = kcalloc(p->nchunks, sizeof(struct radeon_cs_chunk), GFP_KERNEL);
295 if (p->chunks == NULL) {
296 return -ENOMEM;
297 }
298 for (i = 0; i < p->nchunks; i++) {
299 struct drm_radeon_cs_chunk __user **chunk_ptr = NULL;
300 struct drm_radeon_cs_chunk user_chunk;
301 uint32_t __user *cdata;
302
303 chunk_ptr = (void __user*)(unsigned long)p->chunks_array[i];
Daniel Vetter1d6ac182013-12-11 11:34:44 +0100304 if (copy_from_user(&user_chunk, chunk_ptr,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200305 sizeof(struct drm_radeon_cs_chunk))) {
306 return -EFAULT;
307 }
Dave Airlie5176fdc2009-06-30 11:47:14 +1000308 p->chunks[i].length_dw = user_chunk.length_dw;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200309 p->chunks[i].chunk_id = user_chunk.chunk_id;
310 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_RELOCS) {
311 p->chunk_relocs_idx = i;
312 }
313 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_IB) {
314 p->chunk_ib_idx = i;
Dave Airlie5176fdc2009-06-30 11:47:14 +1000315 /* zero length IB isn't useful */
316 if (p->chunks[i].length_dw == 0)
317 return -EINVAL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200318 }
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400319 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_CONST_IB) {
320 p->chunk_const_ib_idx = i;
321 /* zero length CONST IB isn't useful */
322 if (p->chunks[i].length_dw == 0)
323 return -EINVAL;
324 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500325 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_FLAGS) {
326 p->chunk_flags_idx = i;
327 /* zero length flags aren't useful */
328 if (p->chunks[i].length_dw == 0)
329 return -EINVAL;
Marek Olšáke70f2242011-10-25 01:38:45 +0200330 }
Dave Airlie5176fdc2009-06-30 11:47:14 +1000331
Maarten Lankhorst28a326c2013-10-09 14:36:57 +0200332 size = p->chunks[i].length_dw;
333 cdata = (void __user *)(unsigned long)user_chunk.chunk_data;
334 p->chunks[i].user_ptr = cdata;
335 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_CONST_IB)
336 continue;
337
338 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_IB) {
339 if (!p->rdev || !(p->rdev->flags & RADEON_IS_AGP))
340 continue;
341 }
342
343 p->chunks[i].kdata = drm_malloc_ab(size, sizeof(uint32_t));
344 size *= sizeof(uint32_t);
345 if (p->chunks[i].kdata == NULL) {
346 return -ENOMEM;
347 }
Daniel Vetter1d6ac182013-12-11 11:34:44 +0100348 if (copy_from_user(p->chunks[i].kdata, cdata, size)) {
Maarten Lankhorst28a326c2013-10-09 14:36:57 +0200349 return -EFAULT;
350 }
351 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_FLAGS) {
352 p->cs_flags = p->chunks[i].kdata[0];
353 if (p->chunks[i].length_dw > 1)
354 ring = p->chunks[i].kdata[1];
355 if (p->chunks[i].length_dw > 2)
356 priority = (s32)p->chunks[i].kdata[2];
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200357 }
358 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500359
Alex Deucher9b001472012-05-30 10:09:30 -0400360 /* these are KMS only */
361 if (p->rdev) {
362 if ((p->cs_flags & RADEON_CS_USE_VM) &&
363 !p->rdev->vm_manager.enabled) {
364 DRM_ERROR("VM not active on asic!\n");
365 return -EINVAL;
366 }
367
Alex Deucher9b001472012-05-30 10:09:30 -0400368 if (radeon_cs_get_ring(p, ring, priority))
369 return -EINVAL;
Christian König57449042013-04-08 12:41:27 +0200370
371 /* we only support VM on some SI+ rings */
Christian König60a44542014-05-21 17:43:59 +0200372 if ((p->cs_flags & RADEON_CS_USE_VM) == 0) {
373 if (p->rdev->asic->ring[p->ring]->cs_parse == NULL) {
374 DRM_ERROR("Ring %d requires VM!\n", p->ring);
375 return -EINVAL;
376 }
377 } else {
378 if (p->rdev->asic->ring[p->ring]->ib_parse == NULL) {
379 DRM_ERROR("VM not supported on ring %d!\n",
380 p->ring);
381 return -EINVAL;
382 }
Christian König57449042013-04-08 12:41:27 +0200383 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200384 }
Marek Olšáke70f2242011-10-25 01:38:45 +0200385
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200386 return 0;
387}
388
Marek Olšák43304412014-03-02 00:56:20 +0100389static int cmp_size_smaller_first(void *priv, struct list_head *a,
390 struct list_head *b)
391{
Christian Königdf0af442014-03-03 12:38:08 +0100392 struct radeon_cs_reloc *la = list_entry(a, struct radeon_cs_reloc, tv.head);
393 struct radeon_cs_reloc *lb = list_entry(b, struct radeon_cs_reloc, tv.head);
Marek Olšák43304412014-03-02 00:56:20 +0100394
395 /* Sort A before B if A is smaller. */
Christian Königdf0af442014-03-03 12:38:08 +0100396 return (int)la->robj->tbo.num_pages - (int)lb->robj->tbo.num_pages;
Marek Olšák43304412014-03-02 00:56:20 +0100397}
398
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200399/**
400 * cs_parser_fini() - clean parser states
401 * @parser: parser structure holding parsing context.
402 * @error: error number
403 *
404 * If error is set than unvalidate buffer, otherwise just free memory
405 * used by parsing context.
406 **/
Maarten Lankhorstecff6652013-06-27 13:48:17 +0200407static void radeon_cs_parser_fini(struct radeon_cs_parser *parser, int error, bool backoff)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200408{
409 unsigned i;
410
Jerome Glissee43b5ec2012-08-06 12:32:21 -0400411 if (!error) {
Marek Olšák43304412014-03-02 00:56:20 +0100412 /* Sort the buffer list from the smallest to largest buffer,
413 * which affects the order of buffers in the LRU list.
414 * This assures that the smallest buffers are added first
415 * to the LRU list, so they are likely to be later evicted
416 * first, instead of large buffers whose eviction is more
417 * expensive.
418 *
419 * This slightly lowers the number of bytes moved by TTM
420 * per frame under memory pressure.
421 */
422 list_sort(NULL, &parser->validated, cmp_size_smaller_first);
423
Maarten Lankhorstecff6652013-06-27 13:48:17 +0200424 ttm_eu_fence_buffer_objects(&parser->ticket,
425 &parser->validated,
Jerome Glissef2e39222012-05-09 15:35:02 +0200426 parser->ib.fence);
Maarten Lankhorstecff6652013-06-27 13:48:17 +0200427 } else if (backoff) {
428 ttm_eu_backoff_reservation(&parser->ticket,
429 &parser->validated);
Jerome Glissee43b5ec2012-08-06 12:32:21 -0400430 }
Thomas Hellstrom147666f2010-11-17 12:38:32 +0000431
Pauli Nieminenfcbc4512010-03-19 07:44:33 +0000432 if (parser->relocs != NULL) {
433 for (i = 0; i < parser->nrelocs; i++) {
434 if (parser->relocs[i].gobj)
435 drm_gem_object_unreference_unlocked(parser->relocs[i].gobj);
436 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200437 }
Michel Dänzer48e113e2009-09-15 17:09:32 +0200438 kfree(parser->track);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200439 kfree(parser->relocs);
440 kfree(parser->relocs_ptr);
Christian König6d2f2942014-02-20 13:42:17 +0100441 kfree(parser->vm_bos);
Maarten Lankhorst28a326c2013-10-09 14:36:57 +0200442 for (i = 0; i < parser->nchunks; i++)
443 drm_free_large(parser->chunks[i].kdata);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200444 kfree(parser->chunks);
445 kfree(parser->chunks_array);
446 radeon_ib_free(parser->rdev, &parser->ib);
Jerome Glissef2e39222012-05-09 15:35:02 +0200447 radeon_ib_free(parser->rdev, &parser->const_ib);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200448}
449
Jerome Glisse721604a2012-01-05 22:11:05 -0500450static int radeon_cs_ib_chunk(struct radeon_device *rdev,
451 struct radeon_cs_parser *parser)
452{
Jerome Glisse721604a2012-01-05 22:11:05 -0500453 int r;
454
455 if (parser->chunk_ib_idx == -1)
456 return 0;
457
458 if (parser->cs_flags & RADEON_CS_USE_VM)
459 return 0;
460
Christian Königeb0c19c2012-02-23 15:18:44 +0100461 r = radeon_cs_parse(rdev, parser->ring, parser);
Jerome Glisse721604a2012-01-05 22:11:05 -0500462 if (r || parser->parser_error) {
463 DRM_ERROR("Invalid command stream !\n");
464 return r;
465 }
Alex Deucherce3537d2013-07-24 12:12:49 -0400466
467 if (parser->ring == R600_RING_TYPE_UVD_INDEX)
468 radeon_uvd_note_usage(rdev);
Alex Deucher03afe6f2013-08-23 11:56:26 -0400469 else if ((parser->ring == TN_RING_TYPE_VCE1_INDEX) ||
470 (parser->ring == TN_RING_TYPE_VCE2_INDEX))
471 radeon_vce_note_usage(rdev);
Alex Deucherce3537d2013-07-24 12:12:49 -0400472
Christian König220907d2012-05-10 16:46:43 +0200473 radeon_cs_sync_rings(parser);
Christian König4ef72562012-07-13 13:06:00 +0200474 r = radeon_ib_schedule(rdev, &parser->ib, NULL);
Jerome Glisse721604a2012-01-05 22:11:05 -0500475 if (r) {
476 DRM_ERROR("Failed to schedule IB !\n");
477 }
Christian König93bf8882012-07-03 14:05:41 +0200478 return r;
Jerome Glisse721604a2012-01-05 22:11:05 -0500479}
480
Christian König6d2f2942014-02-20 13:42:17 +0100481static int radeon_bo_vm_update_pte(struct radeon_cs_parser *p,
Jerome Glisse721604a2012-01-05 22:11:05 -0500482 struct radeon_vm *vm)
483{
Christian König6d2f2942014-02-20 13:42:17 +0100484 struct radeon_device *rdev = p->rdev;
Christian König036bf462014-07-18 08:56:40 +0200485 struct radeon_bo_va *bo_va;
Christian König6d2f2942014-02-20 13:42:17 +0100486 int i, r;
Jerome Glisse721604a2012-01-05 22:11:05 -0500487
Christian König6d2f2942014-02-20 13:42:17 +0100488 r = radeon_vm_update_page_directory(rdev, vm);
489 if (r)
Jerome Glisse3e8970f2012-08-13 12:07:33 -0400490 return r;
Christian König6d2f2942014-02-20 13:42:17 +0100491
Christian König036bf462014-07-18 08:56:40 +0200492 r = radeon_vm_clear_freed(rdev, vm);
493 if (r)
494 return r;
495
Christian Königcc9e67e2014-07-18 13:48:10 +0200496 if (vm->ib_bo_va == NULL) {
Christian König036bf462014-07-18 08:56:40 +0200497 DRM_ERROR("Tmp BO not in VM!\n");
498 return -EINVAL;
499 }
500
Christian Königcc9e67e2014-07-18 13:48:10 +0200501 r = radeon_vm_bo_update(rdev, vm->ib_bo_va,
502 &rdev->ring_tmp_bo.bo->tbo.mem);
Christian König6d2f2942014-02-20 13:42:17 +0100503 if (r)
504 return r;
505
506 for (i = 0; i < p->nrelocs; i++) {
507 struct radeon_bo *bo;
508
509 /* ignore duplicates */
510 if (p->relocs_ptr[i] != &p->relocs[i])
511 continue;
512
513 bo = p->relocs[i].robj;
Christian König036bf462014-07-18 08:56:40 +0200514 bo_va = radeon_vm_bo_find(vm, bo);
515 if (bo_va == NULL) {
516 dev_err(rdev->dev, "bo %p not in vm %p\n", bo, vm);
517 return -EINVAL;
518 }
519
520 r = radeon_vm_bo_update(rdev, bo_va, &bo->tbo.mem);
Christian König6d2f2942014-02-20 13:42:17 +0100521 if (r)
Jerome Glisse721604a2012-01-05 22:11:05 -0500522 return r;
Jerome Glisse721604a2012-01-05 22:11:05 -0500523 }
Christian Könige31ad962014-07-18 09:24:53 +0200524
525 return radeon_vm_clear_invalids(rdev, vm);
Jerome Glisse721604a2012-01-05 22:11:05 -0500526}
527
528static int radeon_cs_ib_vm_chunk(struct radeon_device *rdev,
529 struct radeon_cs_parser *parser)
530{
Jerome Glisse721604a2012-01-05 22:11:05 -0500531 struct radeon_fpriv *fpriv = parser->filp->driver_priv;
532 struct radeon_vm *vm = &fpriv->vm;
533 int r;
534
535 if (parser->chunk_ib_idx == -1)
536 return 0;
Jerome Glisse721604a2012-01-05 22:11:05 -0500537 if ((parser->cs_flags & RADEON_CS_USE_VM) == 0)
538 return 0;
539
Maarten Lankhorst28a326c2013-10-09 14:36:57 +0200540 if (parser->const_ib.length_dw) {
Jerome Glissef2e39222012-05-09 15:35:02 +0200541 r = radeon_ring_ib_parse(rdev, parser->ring, &parser->const_ib);
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400542 if (r) {
543 return r;
544 }
545 }
546
Jerome Glissef2e39222012-05-09 15:35:02 +0200547 r = radeon_ring_ib_parse(rdev, parser->ring, &parser->ib);
Jerome Glisse721604a2012-01-05 22:11:05 -0500548 if (r) {
549 return r;
550 }
551
Alex Deucherce3537d2013-07-24 12:12:49 -0400552 if (parser->ring == R600_RING_TYPE_UVD_INDEX)
553 radeon_uvd_note_usage(rdev);
554
Jerome Glisse721604a2012-01-05 22:11:05 -0500555 mutex_lock(&vm->mutex);
Jerome Glisse721604a2012-01-05 22:11:05 -0500556 r = radeon_bo_vm_update_pte(parser, vm);
557 if (r) {
558 goto out;
559 }
Christian König220907d2012-05-10 16:46:43 +0200560 radeon_cs_sync_rings(parser);
Christian König1654b812013-11-12 12:58:05 +0100561 radeon_semaphore_sync_to(parser->ib.semaphore, vm->fence);
Christian König4ef72562012-07-13 13:06:00 +0200562
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400563 if ((rdev->family >= CHIP_TAHITI) &&
564 (parser->chunk_const_ib_idx != -1)) {
Christian König4ef72562012-07-13 13:06:00 +0200565 r = radeon_ib_schedule(rdev, &parser->ib, &parser->const_ib);
566 } else {
567 r = radeon_ib_schedule(rdev, &parser->ib, NULL);
Alex Deucherdfcf5f32012-03-20 17:18:14 -0400568 }
569
Christian Königee60e292012-08-09 16:21:08 +0200570out:
Christian König36ff39c2012-05-09 10:07:08 +0200571 mutex_unlock(&vm->mutex);
Jerome Glisse721604a2012-01-05 22:11:05 -0500572 return r;
573}
574
Christian König6c6f4782012-05-02 15:11:19 +0200575static int radeon_cs_handle_lockup(struct radeon_device *rdev, int r)
576{
577 if (r == -EDEADLK) {
578 r = radeon_gpu_reset(rdev);
579 if (!r)
580 r = -EAGAIN;
581 }
582 return r;
583}
584
Maarten Lankhorst28a326c2013-10-09 14:36:57 +0200585static int radeon_cs_ib_fill(struct radeon_device *rdev, struct radeon_cs_parser *parser)
586{
587 struct radeon_cs_chunk *ib_chunk;
588 struct radeon_vm *vm = NULL;
589 int r;
590
591 if (parser->chunk_ib_idx == -1)
592 return 0;
593
594 if (parser->cs_flags & RADEON_CS_USE_VM) {
595 struct radeon_fpriv *fpriv = parser->filp->driver_priv;
596 vm = &fpriv->vm;
597
598 if ((rdev->family >= CHIP_TAHITI) &&
599 (parser->chunk_const_ib_idx != -1)) {
600 ib_chunk = &parser->chunks[parser->chunk_const_ib_idx];
601 if (ib_chunk->length_dw > RADEON_IB_VM_MAX_SIZE) {
602 DRM_ERROR("cs IB CONST too big: %d\n", ib_chunk->length_dw);
603 return -EINVAL;
604 }
605 r = radeon_ib_get(rdev, parser->ring, &parser->const_ib,
606 vm, ib_chunk->length_dw * 4);
607 if (r) {
608 DRM_ERROR("Failed to get const ib !\n");
609 return r;
610 }
611 parser->const_ib.is_const_ib = true;
612 parser->const_ib.length_dw = ib_chunk->length_dw;
Daniel Vetter1d6ac182013-12-11 11:34:44 +0100613 if (copy_from_user(parser->const_ib.ptr,
Maarten Lankhorst28a326c2013-10-09 14:36:57 +0200614 ib_chunk->user_ptr,
615 ib_chunk->length_dw * 4))
616 return -EFAULT;
617 }
618
619 ib_chunk = &parser->chunks[parser->chunk_ib_idx];
620 if (ib_chunk->length_dw > RADEON_IB_VM_MAX_SIZE) {
621 DRM_ERROR("cs IB too big: %d\n", ib_chunk->length_dw);
622 return -EINVAL;
623 }
624 }
625 ib_chunk = &parser->chunks[parser->chunk_ib_idx];
626
627 r = radeon_ib_get(rdev, parser->ring, &parser->ib,
628 vm, ib_chunk->length_dw * 4);
629 if (r) {
630 DRM_ERROR("Failed to get ib !\n");
631 return r;
632 }
633 parser->ib.length_dw = ib_chunk->length_dw;
634 if (ib_chunk->kdata)
635 memcpy(parser->ib.ptr, ib_chunk->kdata, ib_chunk->length_dw * 4);
Daniel Vetter1d6ac182013-12-11 11:34:44 +0100636 else if (copy_from_user(parser->ib.ptr, ib_chunk->user_ptr, ib_chunk->length_dw * 4))
Maarten Lankhorst28a326c2013-10-09 14:36:57 +0200637 return -EFAULT;
638 return 0;
639}
640
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200641int radeon_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
642{
643 struct radeon_device *rdev = dev->dev_private;
644 struct radeon_cs_parser parser;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200645 int r;
646
Jerome Glissedee53e72012-07-02 12:45:19 -0400647 down_read(&rdev->exclusive_lock);
Jerome Glisse6b7746e2012-02-20 17:57:20 -0500648 if (!rdev->accel_working) {
Jerome Glissedee53e72012-07-02 12:45:19 -0400649 up_read(&rdev->exclusive_lock);
Jerome Glisse6b7746e2012-02-20 17:57:20 -0500650 return -EBUSY;
651 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200652 /* initialize parser */
653 memset(&parser, 0, sizeof(struct radeon_cs_parser));
654 parser.filp = filp;
655 parser.rdev = rdev;
Jerome Glissec8c15ff2010-01-18 13:01:36 +0100656 parser.dev = rdev->dev;
Dave Airlie428c6e32011-06-08 19:58:29 +1000657 parser.family = rdev->family;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200658 r = radeon_cs_parser_init(&parser, data);
659 if (r) {
660 DRM_ERROR("Failed to initialize parser !\n");
Maarten Lankhorstecff6652013-06-27 13:48:17 +0200661 radeon_cs_parser_fini(&parser, r, false);
Jerome Glissedee53e72012-07-02 12:45:19 -0400662 up_read(&rdev->exclusive_lock);
Christian König6c6f4782012-05-02 15:11:19 +0200663 r = radeon_cs_handle_lockup(rdev, r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200664 return r;
665 }
Maarten Lankhorst28a326c2013-10-09 14:36:57 +0200666
667 r = radeon_cs_ib_fill(rdev, &parser);
668 if (!r) {
669 r = radeon_cs_parser_relocs(&parser);
670 if (r && r != -ERESTARTSYS)
Dave Airlie97f23b32010-03-19 10:33:44 +1000671 DRM_ERROR("Failed to parse relocation %d!\n", r);
Maarten Lankhorst28a326c2013-10-09 14:36:57 +0200672 }
673
674 if (r) {
Maarten Lankhorstecff6652013-06-27 13:48:17 +0200675 radeon_cs_parser_fini(&parser, r, false);
Jerome Glissedee53e72012-07-02 12:45:19 -0400676 up_read(&rdev->exclusive_lock);
Christian König6c6f4782012-05-02 15:11:19 +0200677 r = radeon_cs_handle_lockup(rdev, r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200678 return r;
679 }
Christian König55b51c82013-04-18 15:25:59 +0200680
Christian König860024e2013-09-07 18:29:01 +0200681 trace_radeon_cs(&parser);
682
Jerome Glisse721604a2012-01-05 22:11:05 -0500683 r = radeon_cs_ib_chunk(rdev, &parser);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200684 if (r) {
Jerome Glisse721604a2012-01-05 22:11:05 -0500685 goto out;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200686 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500687 r = radeon_cs_ib_vm_chunk(rdev, &parser);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200688 if (r) {
Jerome Glisse721604a2012-01-05 22:11:05 -0500689 goto out;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200690 }
Jerome Glisse721604a2012-01-05 22:11:05 -0500691out:
Maarten Lankhorstecff6652013-06-27 13:48:17 +0200692 radeon_cs_parser_fini(&parser, r, true);
Jerome Glissedee53e72012-07-02 12:45:19 -0400693 up_read(&rdev->exclusive_lock);
Christian König6c6f4782012-05-02 15:11:19 +0200694 r = radeon_cs_handle_lockup(rdev, r);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200695 return r;
696}
Dave Airlie513bcb42009-09-23 16:56:27 +1000697
Ilija Hadzic4db01312013-01-02 18:27:40 -0500698/**
699 * radeon_cs_packet_parse() - parse cp packet and point ib index to next packet
700 * @parser: parser structure holding parsing context.
701 * @pkt: where to store packet information
702 *
703 * Assume that chunk_ib_index is properly set. Will return -EINVAL
704 * if packet is bigger than remaining ib size. or if packets is unknown.
705 **/
706int radeon_cs_packet_parse(struct radeon_cs_parser *p,
707 struct radeon_cs_packet *pkt,
708 unsigned idx)
709{
710 struct radeon_cs_chunk *ib_chunk = &p->chunks[p->chunk_ib_idx];
711 struct radeon_device *rdev = p->rdev;
712 uint32_t header;
713
714 if (idx >= ib_chunk->length_dw) {
715 DRM_ERROR("Can not parse packet at %d after CS end %d !\n",
716 idx, ib_chunk->length_dw);
717 return -EINVAL;
718 }
719 header = radeon_get_ib_value(p, idx);
720 pkt->idx = idx;
721 pkt->type = RADEON_CP_PACKET_GET_TYPE(header);
722 pkt->count = RADEON_CP_PACKET_GET_COUNT(header);
723 pkt->one_reg_wr = 0;
724 switch (pkt->type) {
725 case RADEON_PACKET_TYPE0:
726 if (rdev->family < CHIP_R600) {
727 pkt->reg = R100_CP_PACKET0_GET_REG(header);
728 pkt->one_reg_wr =
729 RADEON_CP_PACKET0_GET_ONE_REG_WR(header);
730 } else
731 pkt->reg = R600_CP_PACKET0_GET_REG(header);
732 break;
733 case RADEON_PACKET_TYPE3:
734 pkt->opcode = RADEON_CP_PACKET3_GET_OPCODE(header);
735 break;
736 case RADEON_PACKET_TYPE2:
737 pkt->count = -1;
738 break;
739 default:
740 DRM_ERROR("Unknown packet type %d at %d !\n", pkt->type, idx);
741 return -EINVAL;
742 }
743 if ((pkt->count + 1 + pkt->idx) >= ib_chunk->length_dw) {
744 DRM_ERROR("Packet (%d:%d:%d) end after CS buffer (%d) !\n",
745 pkt->idx, pkt->type, pkt->count, ib_chunk->length_dw);
746 return -EINVAL;
747 }
748 return 0;
749}
Ilija Hadzic9ffb7a62013-01-02 18:27:42 -0500750
751/**
752 * radeon_cs_packet_next_is_pkt3_nop() - test if the next packet is P3 NOP
753 * @p: structure holding the parser context.
754 *
755 * Check if the next packet is NOP relocation packet3.
756 **/
757bool radeon_cs_packet_next_is_pkt3_nop(struct radeon_cs_parser *p)
758{
759 struct radeon_cs_packet p3reloc;
760 int r;
761
762 r = radeon_cs_packet_parse(p, &p3reloc, p->idx);
763 if (r)
764 return false;
765 if (p3reloc.type != RADEON_PACKET_TYPE3)
766 return false;
767 if (p3reloc.opcode != RADEON_PACKET3_NOP)
768 return false;
769 return true;
770}
Ilija Hadzicc3ad63a2013-01-02 18:27:45 -0500771
772/**
773 * radeon_cs_dump_packet() - dump raw packet context
774 * @p: structure holding the parser context.
775 * @pkt: structure holding the packet.
776 *
777 * Used mostly for debugging and error reporting.
778 **/
779void radeon_cs_dump_packet(struct radeon_cs_parser *p,
780 struct radeon_cs_packet *pkt)
781{
782 volatile uint32_t *ib;
783 unsigned i;
784 unsigned idx;
785
786 ib = p->ib.ptr;
787 idx = pkt->idx;
788 for (i = 0; i <= (pkt->count + 1); i++, idx++)
789 DRM_INFO("ib[%d]=0x%08X\n", idx, ib[idx]);
790}
791
Ilija Hadzice9716992013-01-02 18:27:46 -0500792/**
793 * radeon_cs_packet_next_reloc() - parse next (should be reloc) packet
794 * @parser: parser structure holding parsing context.
795 * @data: pointer to relocation data
796 * @offset_start: starting offset
797 * @offset_mask: offset mask (to align start offset on)
798 * @reloc: reloc informations
799 *
800 * Check if next packet is relocation packet3, do bo validation and compute
801 * GPU offset using the provided start.
802 **/
803int radeon_cs_packet_next_reloc(struct radeon_cs_parser *p,
804 struct radeon_cs_reloc **cs_reloc,
805 int nomm)
806{
807 struct radeon_cs_chunk *relocs_chunk;
808 struct radeon_cs_packet p3reloc;
809 unsigned idx;
810 int r;
811
812 if (p->chunk_relocs_idx == -1) {
813 DRM_ERROR("No relocation chunk !\n");
814 return -EINVAL;
815 }
816 *cs_reloc = NULL;
817 relocs_chunk = &p->chunks[p->chunk_relocs_idx];
818 r = radeon_cs_packet_parse(p, &p3reloc, p->idx);
819 if (r)
820 return r;
821 p->idx += p3reloc.count + 2;
822 if (p3reloc.type != RADEON_PACKET_TYPE3 ||
823 p3reloc.opcode != RADEON_PACKET3_NOP) {
824 DRM_ERROR("No packet3 for relocation for packet at %d.\n",
825 p3reloc.idx);
826 radeon_cs_dump_packet(p, &p3reloc);
827 return -EINVAL;
828 }
829 idx = radeon_get_ib_value(p, p3reloc.idx + 1);
830 if (idx >= relocs_chunk->length_dw) {
831 DRM_ERROR("Relocs at %d after relocations chunk end %d !\n",
832 idx, relocs_chunk->length_dw);
833 radeon_cs_dump_packet(p, &p3reloc);
834 return -EINVAL;
835 }
836 /* FIXME: we assume reloc size is 4 dwords */
837 if (nomm) {
838 *cs_reloc = p->relocs;
Christian Königdf0af442014-03-03 12:38:08 +0100839 (*cs_reloc)->gpu_offset =
Ilija Hadzice9716992013-01-02 18:27:46 -0500840 (u64)relocs_chunk->kdata[idx + 3] << 32;
Christian Königdf0af442014-03-03 12:38:08 +0100841 (*cs_reloc)->gpu_offset |= relocs_chunk->kdata[idx + 0];
Ilija Hadzice9716992013-01-02 18:27:46 -0500842 } else
843 *cs_reloc = p->relocs_ptr[(idx / 4)];
844 return 0;
845}