blob: 0ce0d47e4b0ffbafda92966e1916b732f5b84968 [file] [log] [blame]
Chris Wilson54cf91d2010-11-25 18:00:26 +00001/*
2 * Copyright © 2008,2010 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 * Chris Wilson <chris@chris-wilson.co.uk>
26 *
27 */
28
David Howells760285e2012-10-02 18:01:07 +010029#include <drm/drmP.h>
30#include <drm/i915_drm.h>
Chris Wilson54cf91d2010-11-25 18:00:26 +000031#include "i915_drv.h"
32#include "i915_trace.h"
33#include "intel_drv.h"
Eugeni Dodonovf45b5552011-12-09 17:16:37 -080034#include <linux/dma_remapping.h>
Chris Wilson54cf91d2010-11-25 18:00:26 +000035
Ben Widawsky27173f12013-08-14 11:38:36 +020036struct eb_vmas {
37 struct list_head vmas;
Chris Wilson67731b82010-12-08 10:38:14 +000038 int and;
Chris Wilsoneef90cc2013-01-08 10:53:17 +000039 union {
Ben Widawsky27173f12013-08-14 11:38:36 +020040 struct i915_vma *lut[0];
Chris Wilsoneef90cc2013-01-08 10:53:17 +000041 struct hlist_head buckets[0];
42 };
Chris Wilson67731b82010-12-08 10:38:14 +000043};
44
Ben Widawsky27173f12013-08-14 11:38:36 +020045static struct eb_vmas *
46eb_create(struct drm_i915_gem_execbuffer2 *args, struct i915_address_space *vm)
Chris Wilson67731b82010-12-08 10:38:14 +000047{
Ben Widawsky27173f12013-08-14 11:38:36 +020048 struct eb_vmas *eb = NULL;
Chris Wilson67731b82010-12-08 10:38:14 +000049
Chris Wilsoneef90cc2013-01-08 10:53:17 +000050 if (args->flags & I915_EXEC_HANDLE_LUT) {
Daniel Vetterb205ca52013-09-19 14:00:11 +020051 unsigned size = args->buffer_count;
Ben Widawsky27173f12013-08-14 11:38:36 +020052 size *= sizeof(struct i915_vma *);
53 size += sizeof(struct eb_vmas);
Chris Wilsoneef90cc2013-01-08 10:53:17 +000054 eb = kmalloc(size, GFP_TEMPORARY | __GFP_NOWARN | __GFP_NORETRY);
55 }
56
57 if (eb == NULL) {
Daniel Vetterb205ca52013-09-19 14:00:11 +020058 unsigned size = args->buffer_count;
59 unsigned count = PAGE_SIZE / sizeof(struct hlist_head) / 2;
Lauri Kasanen27b7c632013-03-27 15:04:55 +020060 BUILD_BUG_ON_NOT_POWER_OF_2(PAGE_SIZE / sizeof(struct hlist_head));
Chris Wilsoneef90cc2013-01-08 10:53:17 +000061 while (count > 2*size)
62 count >>= 1;
63 eb = kzalloc(count*sizeof(struct hlist_head) +
Ben Widawsky27173f12013-08-14 11:38:36 +020064 sizeof(struct eb_vmas),
Chris Wilsoneef90cc2013-01-08 10:53:17 +000065 GFP_TEMPORARY);
66 if (eb == NULL)
67 return eb;
68
69 eb->and = count - 1;
70 } else
71 eb->and = -args->buffer_count;
72
Ben Widawsky27173f12013-08-14 11:38:36 +020073 INIT_LIST_HEAD(&eb->vmas);
Chris Wilson67731b82010-12-08 10:38:14 +000074 return eb;
75}
76
77static void
Ben Widawsky27173f12013-08-14 11:38:36 +020078eb_reset(struct eb_vmas *eb)
Chris Wilson67731b82010-12-08 10:38:14 +000079{
Chris Wilsoneef90cc2013-01-08 10:53:17 +000080 if (eb->and >= 0)
81 memset(eb->buckets, 0, (eb->and+1)*sizeof(struct hlist_head));
Chris Wilson67731b82010-12-08 10:38:14 +000082}
83
Chris Wilson3b96eff2013-01-08 10:53:14 +000084static int
Ben Widawsky27173f12013-08-14 11:38:36 +020085eb_lookup_vmas(struct eb_vmas *eb,
86 struct drm_i915_gem_exec_object2 *exec,
87 const struct drm_i915_gem_execbuffer2 *args,
88 struct i915_address_space *vm,
89 struct drm_file *file)
Chris Wilson3b96eff2013-01-08 10:53:14 +000090{
Ben Widawsky27173f12013-08-14 11:38:36 +020091 struct drm_i915_gem_object *obj;
92 struct list_head objects;
93 int i, ret = 0;
Chris Wilson3b96eff2013-01-08 10:53:14 +000094
Ben Widawsky27173f12013-08-14 11:38:36 +020095 INIT_LIST_HEAD(&objects);
Chris Wilson3b96eff2013-01-08 10:53:14 +000096 spin_lock(&file->table_lock);
Ben Widawsky27173f12013-08-14 11:38:36 +020097 /* Grab a reference to the object and release the lock so we can lookup
98 * or create the VMA without using GFP_ATOMIC */
Chris Wilsoneef90cc2013-01-08 10:53:17 +000099 for (i = 0; i < args->buffer_count; i++) {
Chris Wilson3b96eff2013-01-08 10:53:14 +0000100 obj = to_intel_bo(idr_find(&file->object_idr, exec[i].handle));
101 if (obj == NULL) {
102 spin_unlock(&file->table_lock);
103 DRM_DEBUG("Invalid object handle %d at index %d\n",
104 exec[i].handle, i);
Ben Widawsky27173f12013-08-14 11:38:36 +0200105 ret = -ENOENT;
106 goto out;
Chris Wilson3b96eff2013-01-08 10:53:14 +0000107 }
108
Ben Widawsky27173f12013-08-14 11:38:36 +0200109 if (!list_empty(&obj->obj_exec_link)) {
Chris Wilson3b96eff2013-01-08 10:53:14 +0000110 spin_unlock(&file->table_lock);
111 DRM_DEBUG("Object %p [handle %d, index %d] appears more than once in object list\n",
112 obj, exec[i].handle, i);
Ben Widawsky27173f12013-08-14 11:38:36 +0200113 ret = -EINVAL;
114 goto out;
Chris Wilson3b96eff2013-01-08 10:53:14 +0000115 }
116
117 drm_gem_object_reference(&obj->base);
Ben Widawsky27173f12013-08-14 11:38:36 +0200118 list_add_tail(&obj->obj_exec_link, &objects);
Chris Wilson3b96eff2013-01-08 10:53:14 +0000119 }
120 spin_unlock(&file->table_lock);
121
Ben Widawsky27173f12013-08-14 11:38:36 +0200122 i = 0;
123 list_for_each_entry(obj, &objects, obj_exec_link) {
124 struct i915_vma *vma;
125
Daniel Vettere656a6c2013-08-14 14:14:04 +0200126 /*
127 * NOTE: We can leak any vmas created here when something fails
128 * later on. But that's no issue since vma_unbind can deal with
129 * vmas which are not actually bound. And since only
130 * lookup_or_create exists as an interface to get at the vma
131 * from the (obj, vm) we don't run the risk of creating
132 * duplicated vmas for the same vm.
133 */
Ben Widawsky27173f12013-08-14 11:38:36 +0200134 vma = i915_gem_obj_lookup_or_create_vma(obj, vm);
135 if (IS_ERR(vma)) {
Ben Widawsky27173f12013-08-14 11:38:36 +0200136 DRM_DEBUG("Failed to lookup VMA\n");
137 ret = PTR_ERR(vma);
138 goto out;
139 }
140
141 list_add_tail(&vma->exec_list, &eb->vmas);
142
143 vma->exec_entry = &exec[i];
144 if (eb->and < 0) {
145 eb->lut[i] = vma;
146 } else {
147 uint32_t handle = args->flags & I915_EXEC_HANDLE_LUT ? i : exec[i].handle;
148 vma->exec_handle = handle;
149 hlist_add_head(&vma->exec_node,
150 &eb->buckets[handle & eb->and]);
151 }
152 ++i;
153 }
154
155
156out:
157 while (!list_empty(&objects)) {
158 obj = list_first_entry(&objects,
159 struct drm_i915_gem_object,
160 obj_exec_link);
161 list_del_init(&obj->obj_exec_link);
162 if (ret)
163 drm_gem_object_unreference(&obj->base);
164 }
165 return ret;
Chris Wilson3b96eff2013-01-08 10:53:14 +0000166}
167
Ben Widawsky27173f12013-08-14 11:38:36 +0200168static struct i915_vma *eb_get_vma(struct eb_vmas *eb, unsigned long handle)
Chris Wilson67731b82010-12-08 10:38:14 +0000169{
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000170 if (eb->and < 0) {
171 if (handle >= -eb->and)
172 return NULL;
173 return eb->lut[handle];
174 } else {
175 struct hlist_head *head;
176 struct hlist_node *node;
Chris Wilson67731b82010-12-08 10:38:14 +0000177
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000178 head = &eb->buckets[handle & eb->and];
179 hlist_for_each(node, head) {
Ben Widawsky27173f12013-08-14 11:38:36 +0200180 struct i915_vma *vma;
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000181
Ben Widawsky27173f12013-08-14 11:38:36 +0200182 vma = hlist_entry(node, struct i915_vma, exec_node);
183 if (vma->exec_handle == handle)
184 return vma;
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000185 }
186 return NULL;
Chris Wilson67731b82010-12-08 10:38:14 +0000187 }
Chris Wilson67731b82010-12-08 10:38:14 +0000188}
189
Ben Widawsky27173f12013-08-14 11:38:36 +0200190static void eb_destroy(struct eb_vmas *eb) {
191 while (!list_empty(&eb->vmas)) {
192 struct i915_vma *vma;
Chris Wilsonbcffc3f2013-01-08 10:53:15 +0000193
Ben Widawsky27173f12013-08-14 11:38:36 +0200194 vma = list_first_entry(&eb->vmas,
195 struct i915_vma,
Chris Wilsonbcffc3f2013-01-08 10:53:15 +0000196 exec_list);
Ben Widawsky27173f12013-08-14 11:38:36 +0200197 list_del_init(&vma->exec_list);
198 drm_gem_object_unreference(&vma->obj->base);
Chris Wilsonbcffc3f2013-01-08 10:53:15 +0000199 }
Chris Wilson67731b82010-12-08 10:38:14 +0000200 kfree(eb);
201}
202
Chris Wilsondabdfe02012-03-26 10:10:27 +0200203static inline int use_cpu_reloc(struct drm_i915_gem_object *obj)
204{
Chris Wilson2cc86b82013-08-26 19:51:00 -0300205 return (HAS_LLC(obj->base.dev) ||
206 obj->base.write_domain == I915_GEM_DOMAIN_CPU ||
Chris Wilson504c7262012-08-23 13:12:52 +0100207 !obj->map_and_fenceable ||
Chris Wilsondabdfe02012-03-26 10:10:27 +0200208 obj->cache_level != I915_CACHE_NONE);
209}
210
Chris Wilson54cf91d2010-11-25 18:00:26 +0000211static int
Rafael Barbalho5032d872013-08-21 17:10:51 +0100212relocate_entry_cpu(struct drm_i915_gem_object *obj,
213 struct drm_i915_gem_relocation_entry *reloc)
214{
215 uint32_t page_offset = offset_in_page(reloc->offset);
216 char *vaddr;
217 int ret = -EINVAL;
218
Chris Wilson2cc86b82013-08-26 19:51:00 -0300219 ret = i915_gem_object_set_to_cpu_domain(obj, true);
Rafael Barbalho5032d872013-08-21 17:10:51 +0100220 if (ret)
221 return ret;
222
223 vaddr = kmap_atomic(i915_gem_object_get_page(obj,
224 reloc->offset >> PAGE_SHIFT));
225 *(uint32_t *)(vaddr + page_offset) = reloc->delta;
226 kunmap_atomic(vaddr);
227
228 return 0;
229}
230
231static int
232relocate_entry_gtt(struct drm_i915_gem_object *obj,
233 struct drm_i915_gem_relocation_entry *reloc)
234{
235 struct drm_device *dev = obj->base.dev;
236 struct drm_i915_private *dev_priv = dev->dev_private;
237 uint32_t __iomem *reloc_entry;
238 void __iomem *reloc_page;
239 int ret = -EINVAL;
240
241 ret = i915_gem_object_set_to_gtt_domain(obj, true);
242 if (ret)
243 return ret;
244
245 ret = i915_gem_object_put_fence(obj);
246 if (ret)
247 return ret;
248
249 /* Map the page containing the relocation we're going to perform. */
250 reloc->offset += i915_gem_obj_ggtt_offset(obj);
251 reloc_page = io_mapping_map_atomic_wc(dev_priv->gtt.mappable,
252 reloc->offset & PAGE_MASK);
253 reloc_entry = (uint32_t __iomem *)
254 (reloc_page + offset_in_page(reloc->offset));
255 iowrite32(reloc->delta, reloc_entry);
256 io_mapping_unmap_atomic(reloc_page);
257
258 return 0;
259}
260
261static int
Chris Wilson54cf91d2010-11-25 18:00:26 +0000262i915_gem_execbuffer_relocate_entry(struct drm_i915_gem_object *obj,
Ben Widawsky27173f12013-08-14 11:38:36 +0200263 struct eb_vmas *eb,
Ben Widawsky28d6a7b2013-07-31 17:00:02 -0700264 struct drm_i915_gem_relocation_entry *reloc,
265 struct i915_address_space *vm)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000266{
267 struct drm_device *dev = obj->base.dev;
268 struct drm_gem_object *target_obj;
Daniel Vetter149c8402012-02-15 23:50:23 +0100269 struct drm_i915_gem_object *target_i915_obj;
Ben Widawsky27173f12013-08-14 11:38:36 +0200270 struct i915_vma *target_vma;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000271 uint32_t target_offset;
272 int ret = -EINVAL;
273
Chris Wilson67731b82010-12-08 10:38:14 +0000274 /* we've already hold a reference to all valid objects */
Ben Widawsky27173f12013-08-14 11:38:36 +0200275 target_vma = eb_get_vma(eb, reloc->target_handle);
276 if (unlikely(target_vma == NULL))
Chris Wilson54cf91d2010-11-25 18:00:26 +0000277 return -ENOENT;
Ben Widawsky27173f12013-08-14 11:38:36 +0200278 target_i915_obj = target_vma->obj;
279 target_obj = &target_vma->obj->base;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000280
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700281 target_offset = i915_gem_obj_ggtt_offset(target_i915_obj);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000282
Eric Anholte844b992012-07-31 15:35:01 -0700283 /* Sandybridge PPGTT errata: We need a global gtt mapping for MI and
284 * pipe_control writes because the gpu doesn't properly redirect them
285 * through the ppgtt for non_secure batchbuffers. */
286 if (unlikely(IS_GEN6(dev) &&
287 reloc->write_domain == I915_GEM_DOMAIN_INSTRUCTION &&
288 !target_i915_obj->has_global_gtt_mapping)) {
289 i915_gem_gtt_bind_object(target_i915_obj,
290 target_i915_obj->cache_level);
291 }
292
Chris Wilson54cf91d2010-11-25 18:00:26 +0000293 /* Validate that the target is in a valid r/w GPU domain */
Chris Wilsonb8f7ab12010-12-08 10:43:06 +0000294 if (unlikely(reloc->write_domain & (reloc->write_domain - 1))) {
Daniel Vetterff240192012-01-31 21:08:14 +0100295 DRM_DEBUG("reloc with multiple write domains: "
Chris Wilson54cf91d2010-11-25 18:00:26 +0000296 "obj %p target %d offset %d "
297 "read %08x write %08x",
298 obj, reloc->target_handle,
299 (int) reloc->offset,
300 reloc->read_domains,
301 reloc->write_domain);
Chris Wilson67731b82010-12-08 10:38:14 +0000302 return ret;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000303 }
Daniel Vetter4ca4a252011-12-14 13:57:27 +0100304 if (unlikely((reloc->write_domain | reloc->read_domains)
305 & ~I915_GEM_GPU_DOMAINS)) {
Daniel Vetterff240192012-01-31 21:08:14 +0100306 DRM_DEBUG("reloc with read/write non-GPU domains: "
Chris Wilson54cf91d2010-11-25 18:00:26 +0000307 "obj %p target %d offset %d "
308 "read %08x write %08x",
309 obj, reloc->target_handle,
310 (int) reloc->offset,
311 reloc->read_domains,
312 reloc->write_domain);
Chris Wilson67731b82010-12-08 10:38:14 +0000313 return ret;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000314 }
Chris Wilson54cf91d2010-11-25 18:00:26 +0000315
316 target_obj->pending_read_domains |= reloc->read_domains;
317 target_obj->pending_write_domain |= reloc->write_domain;
318
319 /* If the relocation already has the right value in it, no
320 * more work needs to be done.
321 */
322 if (target_offset == reloc->presumed_offset)
Chris Wilson67731b82010-12-08 10:38:14 +0000323 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000324
325 /* Check that the relocation address is valid... */
Chris Wilsonb8f7ab12010-12-08 10:43:06 +0000326 if (unlikely(reloc->offset > obj->base.size - 4)) {
Daniel Vetterff240192012-01-31 21:08:14 +0100327 DRM_DEBUG("Relocation beyond object bounds: "
Chris Wilson54cf91d2010-11-25 18:00:26 +0000328 "obj %p target %d offset %d size %d.\n",
329 obj, reloc->target_handle,
330 (int) reloc->offset,
331 (int) obj->base.size);
Chris Wilson67731b82010-12-08 10:38:14 +0000332 return ret;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000333 }
Chris Wilsonb8f7ab12010-12-08 10:43:06 +0000334 if (unlikely(reloc->offset & 3)) {
Daniel Vetterff240192012-01-31 21:08:14 +0100335 DRM_DEBUG("Relocation not 4-byte aligned: "
Chris Wilson54cf91d2010-11-25 18:00:26 +0000336 "obj %p target %d offset %d.\n",
337 obj, reloc->target_handle,
338 (int) reloc->offset);
Chris Wilson67731b82010-12-08 10:38:14 +0000339 return ret;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000340 }
341
Chris Wilsondabdfe02012-03-26 10:10:27 +0200342 /* We can't wait for rendering with pagefaults disabled */
343 if (obj->active && in_atomic())
344 return -EFAULT;
345
Chris Wilson54cf91d2010-11-25 18:00:26 +0000346 reloc->delta += target_offset;
Rafael Barbalho5032d872013-08-21 17:10:51 +0100347 if (use_cpu_reloc(obj))
348 ret = relocate_entry_cpu(obj, reloc);
349 else
350 ret = relocate_entry_gtt(obj, reloc);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000351
Daniel Vetterd4d36012013-09-02 20:56:23 +0200352 if (ret)
353 return ret;
354
Chris Wilson54cf91d2010-11-25 18:00:26 +0000355 /* and update the user's relocation entry */
356 reloc->presumed_offset = target_offset;
357
Chris Wilson67731b82010-12-08 10:38:14 +0000358 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000359}
360
361static int
Ben Widawsky27173f12013-08-14 11:38:36 +0200362i915_gem_execbuffer_relocate_vma(struct i915_vma *vma,
363 struct eb_vmas *eb)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000364{
Chris Wilson1d83f442012-03-24 20:12:53 +0000365#define N_RELOC(x) ((x) / sizeof(struct drm_i915_gem_relocation_entry))
366 struct drm_i915_gem_relocation_entry stack_reloc[N_RELOC(512)];
Chris Wilson54cf91d2010-11-25 18:00:26 +0000367 struct drm_i915_gem_relocation_entry __user *user_relocs;
Ben Widawsky27173f12013-08-14 11:38:36 +0200368 struct drm_i915_gem_exec_object2 *entry = vma->exec_entry;
Chris Wilson1d83f442012-03-24 20:12:53 +0000369 int remain, ret;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000370
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200371 user_relocs = to_user_ptr(entry->relocs_ptr);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000372
Chris Wilson1d83f442012-03-24 20:12:53 +0000373 remain = entry->relocation_count;
374 while (remain) {
375 struct drm_i915_gem_relocation_entry *r = stack_reloc;
376 int count = remain;
377 if (count > ARRAY_SIZE(stack_reloc))
378 count = ARRAY_SIZE(stack_reloc);
379 remain -= count;
380
381 if (__copy_from_user_inatomic(r, user_relocs, count*sizeof(r[0])))
Chris Wilson54cf91d2010-11-25 18:00:26 +0000382 return -EFAULT;
383
Chris Wilson1d83f442012-03-24 20:12:53 +0000384 do {
385 u64 offset = r->presumed_offset;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000386
Ben Widawsky27173f12013-08-14 11:38:36 +0200387 ret = i915_gem_execbuffer_relocate_entry(vma->obj, eb, r,
388 vma->vm);
Chris Wilson1d83f442012-03-24 20:12:53 +0000389 if (ret)
390 return ret;
391
392 if (r->presumed_offset != offset &&
393 __copy_to_user_inatomic(&user_relocs->presumed_offset,
394 &r->presumed_offset,
395 sizeof(r->presumed_offset))) {
396 return -EFAULT;
397 }
398
399 user_relocs++;
400 r++;
401 } while (--count);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000402 }
403
404 return 0;
Chris Wilson1d83f442012-03-24 20:12:53 +0000405#undef N_RELOC
Chris Wilson54cf91d2010-11-25 18:00:26 +0000406}
407
408static int
Ben Widawsky27173f12013-08-14 11:38:36 +0200409i915_gem_execbuffer_relocate_vma_slow(struct i915_vma *vma,
410 struct eb_vmas *eb,
411 struct drm_i915_gem_relocation_entry *relocs)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000412{
Ben Widawsky27173f12013-08-14 11:38:36 +0200413 const struct drm_i915_gem_exec_object2 *entry = vma->exec_entry;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000414 int i, ret;
415
416 for (i = 0; i < entry->relocation_count; i++) {
Ben Widawsky27173f12013-08-14 11:38:36 +0200417 ret = i915_gem_execbuffer_relocate_entry(vma->obj, eb, &relocs[i],
418 vma->vm);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000419 if (ret)
420 return ret;
421 }
422
423 return 0;
424}
425
426static int
Ben Widawsky27173f12013-08-14 11:38:36 +0200427i915_gem_execbuffer_relocate(struct eb_vmas *eb,
Ben Widawsky28d6a7b2013-07-31 17:00:02 -0700428 struct i915_address_space *vm)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000429{
Ben Widawsky27173f12013-08-14 11:38:36 +0200430 struct i915_vma *vma;
Chris Wilsond4aeee72011-03-14 15:11:24 +0000431 int ret = 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000432
Chris Wilsond4aeee72011-03-14 15:11:24 +0000433 /* This is the fast path and we cannot handle a pagefault whilst
434 * holding the struct mutex lest the user pass in the relocations
435 * contained within a mmaped bo. For in such a case we, the page
436 * fault handler would call i915_gem_fault() and we would try to
437 * acquire the struct mutex again. Obviously this is bad and so
438 * lockdep complains vehemently.
439 */
440 pagefault_disable();
Ben Widawsky27173f12013-08-14 11:38:36 +0200441 list_for_each_entry(vma, &eb->vmas, exec_list) {
442 ret = i915_gem_execbuffer_relocate_vma(vma, eb);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000443 if (ret)
Chris Wilsond4aeee72011-03-14 15:11:24 +0000444 break;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000445 }
Chris Wilsond4aeee72011-03-14 15:11:24 +0000446 pagefault_enable();
Chris Wilson54cf91d2010-11-25 18:00:26 +0000447
Chris Wilsond4aeee72011-03-14 15:11:24 +0000448 return ret;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000449}
450
Chris Wilson7788a762012-08-24 19:18:18 +0100451#define __EXEC_OBJECT_HAS_PIN (1<<31)
452#define __EXEC_OBJECT_HAS_FENCE (1<<30)
Chris Wilson1690e1e2011-12-14 13:57:08 +0100453
454static int
Ben Widawsky27173f12013-08-14 11:38:36 +0200455need_reloc_mappable(struct i915_vma *vma)
Chris Wilsondabdfe02012-03-26 10:10:27 +0200456{
Ben Widawsky27173f12013-08-14 11:38:36 +0200457 struct drm_i915_gem_exec_object2 *entry = vma->exec_entry;
458 return entry->relocation_count && !use_cpu_reloc(vma->obj) &&
459 i915_is_ggtt(vma->vm);
Chris Wilsondabdfe02012-03-26 10:10:27 +0200460}
461
462static int
Ben Widawsky27173f12013-08-14 11:38:36 +0200463i915_gem_execbuffer_reserve_vma(struct i915_vma *vma,
464 struct intel_ring_buffer *ring,
465 bool *need_reloc)
Chris Wilson1690e1e2011-12-14 13:57:08 +0100466{
Ben Widawsky27173f12013-08-14 11:38:36 +0200467 struct drm_i915_private *dev_priv = ring->dev->dev_private;
468 struct drm_i915_gem_exec_object2 *entry = vma->exec_entry;
Chris Wilson1690e1e2011-12-14 13:57:08 +0100469 bool has_fenced_gpu_access = INTEL_INFO(ring->dev)->gen < 4;
470 bool need_fence, need_mappable;
Ben Widawsky27173f12013-08-14 11:38:36 +0200471 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilson1690e1e2011-12-14 13:57:08 +0100472 int ret;
473
474 need_fence =
475 has_fenced_gpu_access &&
476 entry->flags & EXEC_OBJECT_NEEDS_FENCE &&
477 obj->tiling_mode != I915_TILING_NONE;
Ben Widawsky27173f12013-08-14 11:38:36 +0200478 need_mappable = need_fence || need_reloc_mappable(vma);
Chris Wilson1690e1e2011-12-14 13:57:08 +0100479
Ben Widawsky27173f12013-08-14 11:38:36 +0200480 ret = i915_gem_object_pin(obj, vma->vm, entry->alignment, need_mappable,
Ben Widawsky28d6a7b2013-07-31 17:00:02 -0700481 false);
Chris Wilson1690e1e2011-12-14 13:57:08 +0100482 if (ret)
483 return ret;
484
Chris Wilson7788a762012-08-24 19:18:18 +0100485 entry->flags |= __EXEC_OBJECT_HAS_PIN;
486
Chris Wilson1690e1e2011-12-14 13:57:08 +0100487 if (has_fenced_gpu_access) {
488 if (entry->flags & EXEC_OBJECT_NEEDS_FENCE) {
Chris Wilson06d98132012-04-17 15:31:24 +0100489 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +0000490 if (ret)
Chris Wilson7788a762012-08-24 19:18:18 +0100491 return ret;
Chris Wilson1690e1e2011-12-14 13:57:08 +0100492
Chris Wilson9a5a53b2012-03-22 15:10:00 +0000493 if (i915_gem_object_pin_fence(obj))
Chris Wilson1690e1e2011-12-14 13:57:08 +0100494 entry->flags |= __EXEC_OBJECT_HAS_FENCE;
Chris Wilson9a5a53b2012-03-22 15:10:00 +0000495
Chris Wilson7dd49062012-03-21 10:48:18 +0000496 obj->pending_fenced_gpu_access = true;
Chris Wilson1690e1e2011-12-14 13:57:08 +0100497 }
Chris Wilson1690e1e2011-12-14 13:57:08 +0100498 }
499
Chris Wilson7788a762012-08-24 19:18:18 +0100500 /* Ensure ppgtt mapping exists if needed */
501 if (dev_priv->mm.aliasing_ppgtt && !obj->has_aliasing_ppgtt_mapping) {
502 i915_ppgtt_bind_object(dev_priv->mm.aliasing_ppgtt,
503 obj, obj->cache_level);
504
505 obj->has_aliasing_ppgtt_mapping = 1;
506 }
507
Ben Widawsky27173f12013-08-14 11:38:36 +0200508 if (entry->offset != vma->node.start) {
509 entry->offset = vma->node.start;
Daniel Vettered5982e2013-01-17 22:23:36 +0100510 *need_reloc = true;
511 }
512
513 if (entry->flags & EXEC_OBJECT_WRITE) {
514 obj->base.pending_read_domains = I915_GEM_DOMAIN_RENDER;
515 obj->base.pending_write_domain = I915_GEM_DOMAIN_RENDER;
516 }
517
518 if (entry->flags & EXEC_OBJECT_NEEDS_GTT &&
519 !obj->has_global_gtt_mapping)
520 i915_gem_gtt_bind_object(obj, obj->cache_level);
521
Chris Wilson1690e1e2011-12-14 13:57:08 +0100522 return 0;
Chris Wilson7788a762012-08-24 19:18:18 +0100523}
Chris Wilson1690e1e2011-12-14 13:57:08 +0100524
Chris Wilson7788a762012-08-24 19:18:18 +0100525static void
Ben Widawsky27173f12013-08-14 11:38:36 +0200526i915_gem_execbuffer_unreserve_vma(struct i915_vma *vma)
Chris Wilson7788a762012-08-24 19:18:18 +0100527{
528 struct drm_i915_gem_exec_object2 *entry;
Ben Widawsky27173f12013-08-14 11:38:36 +0200529 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilson7788a762012-08-24 19:18:18 +0100530
Ben Widawsky27173f12013-08-14 11:38:36 +0200531 if (!drm_mm_node_allocated(&vma->node))
Chris Wilson7788a762012-08-24 19:18:18 +0100532 return;
533
Ben Widawsky27173f12013-08-14 11:38:36 +0200534 entry = vma->exec_entry;
Chris Wilson7788a762012-08-24 19:18:18 +0100535
536 if (entry->flags & __EXEC_OBJECT_HAS_FENCE)
537 i915_gem_object_unpin_fence(obj);
538
539 if (entry->flags & __EXEC_OBJECT_HAS_PIN)
540 i915_gem_object_unpin(obj);
541
542 entry->flags &= ~(__EXEC_OBJECT_HAS_FENCE | __EXEC_OBJECT_HAS_PIN);
Chris Wilson1690e1e2011-12-14 13:57:08 +0100543}
544
Chris Wilson54cf91d2010-11-25 18:00:26 +0000545static int
Chris Wilsond9e86c02010-11-10 16:40:20 +0000546i915_gem_execbuffer_reserve(struct intel_ring_buffer *ring,
Ben Widawsky27173f12013-08-14 11:38:36 +0200547 struct list_head *vmas,
Daniel Vettered5982e2013-01-17 22:23:36 +0100548 bool *need_relocs)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000549{
Chris Wilson432e58e2010-11-25 19:32:06 +0000550 struct drm_i915_gem_object *obj;
Ben Widawsky27173f12013-08-14 11:38:36 +0200551 struct i915_vma *vma;
Ben Widawsky68c8c172013-09-11 14:57:50 -0700552 struct i915_address_space *vm;
Ben Widawsky27173f12013-08-14 11:38:36 +0200553 struct list_head ordered_vmas;
Chris Wilson7788a762012-08-24 19:18:18 +0100554 bool has_fenced_gpu_access = INTEL_INFO(ring->dev)->gen < 4;
555 int retry;
Chris Wilson6fe4f142011-01-10 17:35:37 +0000556
Ben Widawsky68c8c172013-09-11 14:57:50 -0700557 if (list_empty(vmas))
558 return 0;
559
560 vm = list_first_entry(vmas, struct i915_vma, exec_list)->vm;
561
Ben Widawsky27173f12013-08-14 11:38:36 +0200562 INIT_LIST_HEAD(&ordered_vmas);
563 while (!list_empty(vmas)) {
Chris Wilson6fe4f142011-01-10 17:35:37 +0000564 struct drm_i915_gem_exec_object2 *entry;
565 bool need_fence, need_mappable;
566
Ben Widawsky27173f12013-08-14 11:38:36 +0200567 vma = list_first_entry(vmas, struct i915_vma, exec_list);
568 obj = vma->obj;
569 entry = vma->exec_entry;
Chris Wilson6fe4f142011-01-10 17:35:37 +0000570
571 need_fence =
572 has_fenced_gpu_access &&
573 entry->flags & EXEC_OBJECT_NEEDS_FENCE &&
574 obj->tiling_mode != I915_TILING_NONE;
Ben Widawsky27173f12013-08-14 11:38:36 +0200575 need_mappable = need_fence || need_reloc_mappable(vma);
Chris Wilson6fe4f142011-01-10 17:35:37 +0000576
577 if (need_mappable)
Ben Widawsky27173f12013-08-14 11:38:36 +0200578 list_move(&vma->exec_list, &ordered_vmas);
Chris Wilson6fe4f142011-01-10 17:35:37 +0000579 else
Ben Widawsky27173f12013-08-14 11:38:36 +0200580 list_move_tail(&vma->exec_list, &ordered_vmas);
Chris Wilson595dad72011-01-13 11:03:48 +0000581
Daniel Vettered5982e2013-01-17 22:23:36 +0100582 obj->base.pending_read_domains = I915_GEM_GPU_DOMAINS & ~I915_GEM_DOMAIN_COMMAND;
Chris Wilson595dad72011-01-13 11:03:48 +0000583 obj->base.pending_write_domain = 0;
Chris Wilson016fd0c2012-07-20 12:41:07 +0100584 obj->pending_fenced_gpu_access = false;
Chris Wilson6fe4f142011-01-10 17:35:37 +0000585 }
Ben Widawsky27173f12013-08-14 11:38:36 +0200586 list_splice(&ordered_vmas, vmas);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000587
588 /* Attempt to pin all of the buffers into the GTT.
589 * This is done in 3 phases:
590 *
591 * 1a. Unbind all objects that do not match the GTT constraints for
592 * the execbuffer (fenceable, mappable, alignment etc).
593 * 1b. Increment pin count for already bound objects.
594 * 2. Bind new objects.
595 * 3. Decrement pin count.
596 *
Chris Wilson7788a762012-08-24 19:18:18 +0100597 * This avoid unnecessary unbinding of later objects in order to make
Chris Wilson54cf91d2010-11-25 18:00:26 +0000598 * room for the earlier objects *unless* we need to defragment.
599 */
600 retry = 0;
601 do {
Chris Wilson7788a762012-08-24 19:18:18 +0100602 int ret = 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000603
604 /* Unbind any ill-fitting objects or pin. */
Ben Widawsky27173f12013-08-14 11:38:36 +0200605 list_for_each_entry(vma, vmas, exec_list) {
606 struct drm_i915_gem_exec_object2 *entry = vma->exec_entry;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000607 bool need_fence, need_mappable;
Chris Wilson1690e1e2011-12-14 13:57:08 +0100608
Ben Widawsky27173f12013-08-14 11:38:36 +0200609 obj = vma->obj;
610
611 if (!drm_mm_node_allocated(&vma->node))
Chris Wilson54cf91d2010-11-25 18:00:26 +0000612 continue;
613
614 need_fence =
Chris Wilson9b3826b2010-12-05 17:11:54 +0000615 has_fenced_gpu_access &&
Chris Wilson54cf91d2010-11-25 18:00:26 +0000616 entry->flags & EXEC_OBJECT_NEEDS_FENCE &&
617 obj->tiling_mode != I915_TILING_NONE;
Ben Widawsky27173f12013-08-14 11:38:36 +0200618 need_mappable = need_fence || need_reloc_mappable(vma);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000619
Ben Widawsky28d6a7b2013-07-31 17:00:02 -0700620 WARN_ON((need_mappable || need_fence) &&
Ben Widawsky27173f12013-08-14 11:38:36 +0200621 !i915_is_ggtt(vma->vm));
Ben Widawsky28d6a7b2013-07-31 17:00:02 -0700622
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700623 if ((entry->alignment &&
Ben Widawsky27173f12013-08-14 11:38:36 +0200624 vma->node.start & (entry->alignment - 1)) ||
Chris Wilson54cf91d2010-11-25 18:00:26 +0000625 (need_mappable && !obj->map_and_fenceable))
Ben Widawsky27173f12013-08-14 11:38:36 +0200626 ret = i915_vma_unbind(vma);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000627 else
Ben Widawsky27173f12013-08-14 11:38:36 +0200628 ret = i915_gem_execbuffer_reserve_vma(vma, ring, need_relocs);
Chris Wilson432e58e2010-11-25 19:32:06 +0000629 if (ret)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000630 goto err;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000631 }
632
633 /* Bind fresh objects */
Ben Widawsky27173f12013-08-14 11:38:36 +0200634 list_for_each_entry(vma, vmas, exec_list) {
635 if (drm_mm_node_allocated(&vma->node))
Chris Wilson1690e1e2011-12-14 13:57:08 +0100636 continue;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000637
Ben Widawsky27173f12013-08-14 11:38:36 +0200638 ret = i915_gem_execbuffer_reserve_vma(vma, ring, need_relocs);
Chris Wilson7788a762012-08-24 19:18:18 +0100639 if (ret)
640 goto err;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000641 }
642
Chris Wilson7788a762012-08-24 19:18:18 +0100643err: /* Decrement pin count for bound objects */
Ben Widawsky27173f12013-08-14 11:38:36 +0200644 list_for_each_entry(vma, vmas, exec_list)
645 i915_gem_execbuffer_unreserve_vma(vma);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000646
Chris Wilson6c085a72012-08-20 11:40:46 +0200647 if (ret != -ENOSPC || retry++)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000648 return ret;
649
Ben Widawsky68c8c172013-09-11 14:57:50 -0700650 ret = i915_gem_evict_vm(vm, true);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000651 if (ret)
652 return ret;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000653 } while (1);
654}
655
656static int
657i915_gem_execbuffer_relocate_slow(struct drm_device *dev,
Daniel Vettered5982e2013-01-17 22:23:36 +0100658 struct drm_i915_gem_execbuffer2 *args,
Chris Wilson54cf91d2010-11-25 18:00:26 +0000659 struct drm_file *file,
Chris Wilsond9e86c02010-11-10 16:40:20 +0000660 struct intel_ring_buffer *ring,
Ben Widawsky27173f12013-08-14 11:38:36 +0200661 struct eb_vmas *eb,
662 struct drm_i915_gem_exec_object2 *exec)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000663{
664 struct drm_i915_gem_relocation_entry *reloc;
Ben Widawsky27173f12013-08-14 11:38:36 +0200665 struct i915_address_space *vm;
666 struct i915_vma *vma;
Daniel Vettered5982e2013-01-17 22:23:36 +0100667 bool need_relocs;
Chris Wilsondd6864a2011-01-12 23:49:13 +0000668 int *reloc_offset;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000669 int i, total, ret;
Daniel Vetterb205ca52013-09-19 14:00:11 +0200670 unsigned count = args->buffer_count;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000671
Ben Widawsky27173f12013-08-14 11:38:36 +0200672 if (WARN_ON(list_empty(&eb->vmas)))
673 return 0;
674
675 vm = list_first_entry(&eb->vmas, struct i915_vma, exec_list)->vm;
676
Chris Wilson67731b82010-12-08 10:38:14 +0000677 /* We may process another execbuffer during the unlock... */
Ben Widawsky27173f12013-08-14 11:38:36 +0200678 while (!list_empty(&eb->vmas)) {
679 vma = list_first_entry(&eb->vmas, struct i915_vma, exec_list);
680 list_del_init(&vma->exec_list);
681 drm_gem_object_unreference(&vma->obj->base);
Chris Wilson67731b82010-12-08 10:38:14 +0000682 }
683
Chris Wilson54cf91d2010-11-25 18:00:26 +0000684 mutex_unlock(&dev->struct_mutex);
685
686 total = 0;
687 for (i = 0; i < count; i++)
Chris Wilson432e58e2010-11-25 19:32:06 +0000688 total += exec[i].relocation_count;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000689
Chris Wilsondd6864a2011-01-12 23:49:13 +0000690 reloc_offset = drm_malloc_ab(count, sizeof(*reloc_offset));
Chris Wilson54cf91d2010-11-25 18:00:26 +0000691 reloc = drm_malloc_ab(total, sizeof(*reloc));
Chris Wilsondd6864a2011-01-12 23:49:13 +0000692 if (reloc == NULL || reloc_offset == NULL) {
693 drm_free_large(reloc);
694 drm_free_large(reloc_offset);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000695 mutex_lock(&dev->struct_mutex);
696 return -ENOMEM;
697 }
698
699 total = 0;
700 for (i = 0; i < count; i++) {
701 struct drm_i915_gem_relocation_entry __user *user_relocs;
Chris Wilson262b6d32013-01-15 16:17:54 +0000702 u64 invalid_offset = (u64)-1;
703 int j;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000704
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200705 user_relocs = to_user_ptr(exec[i].relocs_ptr);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000706
707 if (copy_from_user(reloc+total, user_relocs,
Chris Wilson432e58e2010-11-25 19:32:06 +0000708 exec[i].relocation_count * sizeof(*reloc))) {
Chris Wilson54cf91d2010-11-25 18:00:26 +0000709 ret = -EFAULT;
710 mutex_lock(&dev->struct_mutex);
711 goto err;
712 }
713
Chris Wilson262b6d32013-01-15 16:17:54 +0000714 /* As we do not update the known relocation offsets after
715 * relocating (due to the complexities in lock handling),
716 * we need to mark them as invalid now so that we force the
717 * relocation processing next time. Just in case the target
718 * object is evicted and then rebound into its old
719 * presumed_offset before the next execbuffer - if that
720 * happened we would make the mistake of assuming that the
721 * relocations were valid.
722 */
723 for (j = 0; j < exec[i].relocation_count; j++) {
724 if (copy_to_user(&user_relocs[j].presumed_offset,
725 &invalid_offset,
726 sizeof(invalid_offset))) {
727 ret = -EFAULT;
728 mutex_lock(&dev->struct_mutex);
729 goto err;
730 }
731 }
732
Chris Wilsondd6864a2011-01-12 23:49:13 +0000733 reloc_offset[i] = total;
Chris Wilson432e58e2010-11-25 19:32:06 +0000734 total += exec[i].relocation_count;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000735 }
736
737 ret = i915_mutex_lock_interruptible(dev);
738 if (ret) {
739 mutex_lock(&dev->struct_mutex);
740 goto err;
741 }
742
Chris Wilson67731b82010-12-08 10:38:14 +0000743 /* reacquire the objects */
Chris Wilson67731b82010-12-08 10:38:14 +0000744 eb_reset(eb);
Ben Widawsky27173f12013-08-14 11:38:36 +0200745 ret = eb_lookup_vmas(eb, exec, args, vm, file);
Chris Wilson3b96eff2013-01-08 10:53:14 +0000746 if (ret)
747 goto err;
Chris Wilson67731b82010-12-08 10:38:14 +0000748
Daniel Vettered5982e2013-01-17 22:23:36 +0100749 need_relocs = (args->flags & I915_EXEC_NO_RELOC) == 0;
Ben Widawsky27173f12013-08-14 11:38:36 +0200750 ret = i915_gem_execbuffer_reserve(ring, &eb->vmas, &need_relocs);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000751 if (ret)
752 goto err;
753
Ben Widawsky27173f12013-08-14 11:38:36 +0200754 list_for_each_entry(vma, &eb->vmas, exec_list) {
755 int offset = vma->exec_entry - exec;
756 ret = i915_gem_execbuffer_relocate_vma_slow(vma, eb,
757 reloc + reloc_offset[offset]);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000758 if (ret)
759 goto err;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000760 }
761
762 /* Leave the user relocations as are, this is the painfully slow path,
763 * and we want to avoid the complication of dropping the lock whilst
764 * having buffers reserved in the aperture and so causing spurious
765 * ENOSPC for random operations.
766 */
767
768err:
769 drm_free_large(reloc);
Chris Wilsondd6864a2011-01-12 23:49:13 +0000770 drm_free_large(reloc_offset);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000771 return ret;
772}
773
Chris Wilson54cf91d2010-11-25 18:00:26 +0000774static int
Chris Wilson432e58e2010-11-25 19:32:06 +0000775i915_gem_execbuffer_move_to_gpu(struct intel_ring_buffer *ring,
Ben Widawsky27173f12013-08-14 11:38:36 +0200776 struct list_head *vmas)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000777{
Ben Widawsky27173f12013-08-14 11:38:36 +0200778 struct i915_vma *vma;
Daniel Vetter6ac42f42012-07-21 12:25:01 +0200779 uint32_t flush_domains = 0;
Chris Wilson000433b2013-08-08 14:41:09 +0100780 bool flush_chipset = false;
Chris Wilson432e58e2010-11-25 19:32:06 +0000781 int ret;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000782
Ben Widawsky27173f12013-08-14 11:38:36 +0200783 list_for_each_entry(vma, vmas, exec_list) {
784 struct drm_i915_gem_object *obj = vma->obj;
Ben Widawsky2911a352012-04-05 14:47:36 -0700785 ret = i915_gem_object_sync(obj, ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000786 if (ret)
787 return ret;
Daniel Vetter6ac42f42012-07-21 12:25:01 +0200788
789 if (obj->base.write_domain & I915_GEM_DOMAIN_CPU)
Chris Wilson000433b2013-08-08 14:41:09 +0100790 flush_chipset |= i915_gem_clflush_object(obj, false);
Daniel Vetter6ac42f42012-07-21 12:25:01 +0200791
Daniel Vetter6ac42f42012-07-21 12:25:01 +0200792 flush_domains |= obj->base.write_domain;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000793 }
794
Chris Wilson000433b2013-08-08 14:41:09 +0100795 if (flush_chipset)
Ben Widawskye76e9ae2012-11-04 09:21:27 -0800796 i915_gem_chipset_flush(ring->dev);
Daniel Vetter6ac42f42012-07-21 12:25:01 +0200797
798 if (flush_domains & I915_GEM_DOMAIN_GTT)
799 wmb();
800
Chris Wilson09cf7c92012-07-13 14:14:08 +0100801 /* Unconditionally invalidate gpu caches and ensure that we do flush
802 * any residual writes from the previous batch.
803 */
Chris Wilsona7b97612012-07-20 12:41:08 +0100804 return intel_ring_invalidate_all_caches(ring);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000805}
806
Chris Wilson432e58e2010-11-25 19:32:06 +0000807static bool
808i915_gem_check_execbuffer(struct drm_i915_gem_execbuffer2 *exec)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000809{
Daniel Vettered5982e2013-01-17 22:23:36 +0100810 if (exec->flags & __I915_EXEC_UNKNOWN_FLAGS)
811 return false;
812
Chris Wilson432e58e2010-11-25 19:32:06 +0000813 return ((exec->batch_start_offset | exec->batch_len) & 0x7) == 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000814}
815
816static int
817validate_exec_list(struct drm_i915_gem_exec_object2 *exec,
818 int count)
819{
820 int i;
Daniel Vetterb205ca52013-09-19 14:00:11 +0200821 unsigned relocs_total = 0;
822 unsigned relocs_max = UINT_MAX / sizeof(struct drm_i915_gem_relocation_entry);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000823
824 for (i = 0; i < count; i++) {
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200825 char __user *ptr = to_user_ptr(exec[i].relocs_ptr);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000826 int length; /* limited by fault_in_pages_readable() */
827
Daniel Vettered5982e2013-01-17 22:23:36 +0100828 if (exec[i].flags & __EXEC_OBJECT_UNKNOWN_FLAGS)
829 return -EINVAL;
830
Kees Cook3118a4f2013-03-11 17:31:45 -0700831 /* First check for malicious input causing overflow in
832 * the worst case where we need to allocate the entire
833 * relocation tree as a single array.
834 */
835 if (exec[i].relocation_count > relocs_max - relocs_total)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000836 return -EINVAL;
Kees Cook3118a4f2013-03-11 17:31:45 -0700837 relocs_total += exec[i].relocation_count;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000838
839 length = exec[i].relocation_count *
840 sizeof(struct drm_i915_gem_relocation_entry);
Kees Cook30587532013-03-11 14:37:35 -0700841 /*
842 * We must check that the entire relocation array is safe
843 * to read, but since we may need to update the presumed
844 * offsets during execution, check for full write access.
845 */
Chris Wilson54cf91d2010-11-25 18:00:26 +0000846 if (!access_ok(VERIFY_WRITE, ptr, length))
847 return -EFAULT;
848
Xiong Zhang0b74b502013-07-19 13:51:24 +0800849 if (likely(!i915_prefault_disable)) {
850 if (fault_in_multipages_readable(ptr, length))
851 return -EFAULT;
852 }
Chris Wilson54cf91d2010-11-25 18:00:26 +0000853 }
854
855 return 0;
856}
857
Chris Wilson432e58e2010-11-25 19:32:06 +0000858static void
Ben Widawsky27173f12013-08-14 11:38:36 +0200859i915_gem_execbuffer_move_to_active(struct list_head *vmas,
Chris Wilson9d7730912012-11-27 16:22:52 +0000860 struct intel_ring_buffer *ring)
Chris Wilson432e58e2010-11-25 19:32:06 +0000861{
Ben Widawsky27173f12013-08-14 11:38:36 +0200862 struct i915_vma *vma;
Chris Wilson432e58e2010-11-25 19:32:06 +0000863
Ben Widawsky27173f12013-08-14 11:38:36 +0200864 list_for_each_entry(vma, vmas, exec_list) {
865 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilson69c2fc82012-07-20 12:41:03 +0100866 u32 old_read = obj->base.read_domains;
867 u32 old_write = obj->base.write_domain;
Chris Wilsondb53a302011-02-03 11:57:46 +0000868
Chris Wilson432e58e2010-11-25 19:32:06 +0000869 obj->base.write_domain = obj->base.pending_write_domain;
Daniel Vettered5982e2013-01-17 22:23:36 +0100870 if (obj->base.write_domain == 0)
871 obj->base.pending_read_domains |= obj->base.read_domains;
872 obj->base.read_domains = obj->base.pending_read_domains;
Chris Wilson432e58e2010-11-25 19:32:06 +0000873 obj->fenced_gpu_access = obj->pending_fenced_gpu_access;
874
Ben Widawskye2d05a82013-09-24 09:57:58 -0700875 i915_vma_move_to_active(vma, ring);
Chris Wilson432e58e2010-11-25 19:32:06 +0000876 if (obj->base.write_domain) {
877 obj->dirty = 1;
Chris Wilson9d7730912012-11-27 16:22:52 +0000878 obj->last_write_seqno = intel_ring_get_seqno(ring);
Chris Wilsonacb87df2012-05-03 15:47:57 +0100879 if (obj->pin_count) /* check for potential scanout */
Chris Wilsonc65355b2013-06-06 16:53:41 -0300880 intel_mark_fb_busy(obj, ring);
Chris Wilson432e58e2010-11-25 19:32:06 +0000881 }
882
Chris Wilsondb53a302011-02-03 11:57:46 +0000883 trace_i915_gem_object_change_domain(obj, old_read, old_write);
Chris Wilson432e58e2010-11-25 19:32:06 +0000884 }
885}
886
Chris Wilson54cf91d2010-11-25 18:00:26 +0000887static void
888i915_gem_execbuffer_retire_commands(struct drm_device *dev,
Chris Wilson432e58e2010-11-25 19:32:06 +0000889 struct drm_file *file,
Mika Kuoppala7d736f42013-06-12 15:01:39 +0300890 struct intel_ring_buffer *ring,
891 struct drm_i915_gem_object *obj)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000892{
Daniel Vettercc889e02012-06-13 20:45:19 +0200893 /* Unconditionally force add_request to emit a full flush. */
894 ring->gpu_caches_dirty = true;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000895
Chris Wilson432e58e2010-11-25 19:32:06 +0000896 /* Add a breadcrumb for the completion of the batch buffer */
Mika Kuoppala7d736f42013-06-12 15:01:39 +0300897 (void)__i915_add_request(ring, file, obj, NULL);
Chris Wilson432e58e2010-11-25 19:32:06 +0000898}
Chris Wilson54cf91d2010-11-25 18:00:26 +0000899
900static int
Eric Anholtae662d32012-01-03 09:23:29 -0800901i915_reset_gen7_sol_offsets(struct drm_device *dev,
902 struct intel_ring_buffer *ring)
903{
904 drm_i915_private_t *dev_priv = dev->dev_private;
905 int ret, i;
906
907 if (!IS_GEN7(dev) || ring != &dev_priv->ring[RCS])
908 return 0;
909
910 ret = intel_ring_begin(ring, 4 * 3);
911 if (ret)
912 return ret;
913
914 for (i = 0; i < 4; i++) {
915 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
916 intel_ring_emit(ring, GEN7_SO_WRITE_OFFSET(i));
917 intel_ring_emit(ring, 0);
918 }
919
920 intel_ring_advance(ring);
921
922 return 0;
923}
924
925static int
Chris Wilson54cf91d2010-11-25 18:00:26 +0000926i915_gem_do_execbuffer(struct drm_device *dev, void *data,
927 struct drm_file *file,
928 struct drm_i915_gem_execbuffer2 *args,
Ben Widawsky28d6a7b2013-07-31 17:00:02 -0700929 struct drm_i915_gem_exec_object2 *exec,
930 struct i915_address_space *vm)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000931{
932 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawsky27173f12013-08-14 11:38:36 +0200933 struct eb_vmas *eb;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000934 struct drm_i915_gem_object *batch_obj;
935 struct drm_clip_rect *cliprects = NULL;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000936 struct intel_ring_buffer *ring;
Mika Kuoppalabe62acb2013-08-30 16:19:28 +0300937 struct i915_ctx_hang_stats *hs;
Ben Widawsky6e0a69d2012-06-04 14:42:55 -0700938 u32 ctx_id = i915_execbuffer2_get_context_id(*args);
Chris Wilsonc4e7a412010-11-30 14:10:25 +0000939 u32 exec_start, exec_len;
Daniel Vettered5982e2013-01-17 22:23:36 +0100940 u32 mask, flags;
Chris Wilson72bfa192010-12-19 11:42:05 +0000941 int ret, mode, i;
Daniel Vettered5982e2013-01-17 22:23:36 +0100942 bool need_relocs;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000943
Daniel Vettered5982e2013-01-17 22:23:36 +0100944 if (!i915_gem_check_execbuffer(args))
Chris Wilson432e58e2010-11-25 19:32:06 +0000945 return -EINVAL;
Chris Wilson432e58e2010-11-25 19:32:06 +0000946
947 ret = validate_exec_list(exec, args->buffer_count);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000948 if (ret)
949 return ret;
950
Chris Wilsond7d4eed2012-10-17 12:09:54 +0100951 flags = 0;
952 if (args->flags & I915_EXEC_SECURE) {
953 if (!file->is_master || !capable(CAP_SYS_ADMIN))
954 return -EPERM;
955
956 flags |= I915_DISPATCH_SECURE;
957 }
Daniel Vetterb45305f2012-12-17 16:21:27 +0100958 if (args->flags & I915_EXEC_IS_PINNED)
959 flags |= I915_DISPATCH_PINNED;
Chris Wilsond7d4eed2012-10-17 12:09:54 +0100960
Chris Wilson54cf91d2010-11-25 18:00:26 +0000961 switch (args->flags & I915_EXEC_RING_MASK) {
962 case I915_EXEC_DEFAULT:
963 case I915_EXEC_RENDER:
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000964 ring = &dev_priv->ring[RCS];
Chris Wilson54cf91d2010-11-25 18:00:26 +0000965 break;
966 case I915_EXEC_BSD:
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000967 ring = &dev_priv->ring[VCS];
Chris Wilsone8520962013-07-03 17:22:07 +0300968 if (ctx_id != DEFAULT_CONTEXT_ID) {
Ben Widawsky6e0a69d2012-06-04 14:42:55 -0700969 DRM_DEBUG("Ring %s doesn't support contexts\n",
970 ring->name);
971 return -EPERM;
972 }
Chris Wilson54cf91d2010-11-25 18:00:26 +0000973 break;
974 case I915_EXEC_BLT:
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000975 ring = &dev_priv->ring[BCS];
Chris Wilsone8520962013-07-03 17:22:07 +0300976 if (ctx_id != DEFAULT_CONTEXT_ID) {
Ben Widawsky6e0a69d2012-06-04 14:42:55 -0700977 DRM_DEBUG("Ring %s doesn't support contexts\n",
978 ring->name);
979 return -EPERM;
980 }
Chris Wilson54cf91d2010-11-25 18:00:26 +0000981 break;
Xiang, Haihao82f91b62013-05-28 19:22:33 -0700982 case I915_EXEC_VEBOX:
983 ring = &dev_priv->ring[VECS];
Chris Wilsone8520962013-07-03 17:22:07 +0300984 if (ctx_id != DEFAULT_CONTEXT_ID) {
Xiang, Haihao82f91b62013-05-28 19:22:33 -0700985 DRM_DEBUG("Ring %s doesn't support contexts\n",
986 ring->name);
987 return -EPERM;
988 }
989 break;
990
Chris Wilson54cf91d2010-11-25 18:00:26 +0000991 default:
Daniel Vetterff240192012-01-31 21:08:14 +0100992 DRM_DEBUG("execbuf with unknown ring: %d\n",
Chris Wilson54cf91d2010-11-25 18:00:26 +0000993 (int)(args->flags & I915_EXEC_RING_MASK));
994 return -EINVAL;
995 }
Chris Wilsona15817c2012-05-11 14:29:31 +0100996 if (!intel_ring_initialized(ring)) {
997 DRM_DEBUG("execbuf with invalid ring: %d\n",
998 (int)(args->flags & I915_EXEC_RING_MASK));
999 return -EINVAL;
1000 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001001
Chris Wilson72bfa192010-12-19 11:42:05 +00001002 mode = args->flags & I915_EXEC_CONSTANTS_MASK;
Ben Widawsky84f9f932011-12-12 19:21:58 -08001003 mask = I915_EXEC_CONSTANTS_MASK;
Chris Wilson72bfa192010-12-19 11:42:05 +00001004 switch (mode) {
1005 case I915_EXEC_CONSTANTS_REL_GENERAL:
1006 case I915_EXEC_CONSTANTS_ABSOLUTE:
1007 case I915_EXEC_CONSTANTS_REL_SURFACE:
1008 if (ring == &dev_priv->ring[RCS] &&
1009 mode != dev_priv->relative_constants_mode) {
1010 if (INTEL_INFO(dev)->gen < 4)
1011 return -EINVAL;
1012
1013 if (INTEL_INFO(dev)->gen > 5 &&
1014 mode == I915_EXEC_CONSTANTS_REL_SURFACE)
1015 return -EINVAL;
Ben Widawsky84f9f932011-12-12 19:21:58 -08001016
1017 /* The HW changed the meaning on this bit on gen6 */
1018 if (INTEL_INFO(dev)->gen >= 6)
1019 mask &= ~I915_EXEC_CONSTANTS_REL_SURFACE;
Chris Wilson72bfa192010-12-19 11:42:05 +00001020 }
1021 break;
1022 default:
Daniel Vetterff240192012-01-31 21:08:14 +01001023 DRM_DEBUG("execbuf with unknown constants: %d\n", mode);
Chris Wilson72bfa192010-12-19 11:42:05 +00001024 return -EINVAL;
1025 }
1026
Chris Wilson54cf91d2010-11-25 18:00:26 +00001027 if (args->buffer_count < 1) {
Daniel Vetterff240192012-01-31 21:08:14 +01001028 DRM_DEBUG("execbuf with %d buffers\n", args->buffer_count);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001029 return -EINVAL;
1030 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001031
1032 if (args->num_cliprects != 0) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001033 if (ring != &dev_priv->ring[RCS]) {
Daniel Vetterff240192012-01-31 21:08:14 +01001034 DRM_DEBUG("clip rectangles are only valid with the render ring\n");
Chris Wilsonc4e7a412010-11-30 14:10:25 +00001035 return -EINVAL;
1036 }
1037
Daniel Vetter6ebebc92012-04-26 23:28:11 +02001038 if (INTEL_INFO(dev)->gen >= 5) {
1039 DRM_DEBUG("clip rectangles are only valid on pre-gen5\n");
1040 return -EINVAL;
1041 }
1042
Xi Wang44afb3a2012-04-23 04:06:42 -04001043 if (args->num_cliprects > UINT_MAX / sizeof(*cliprects)) {
1044 DRM_DEBUG("execbuf with %u cliprects\n",
1045 args->num_cliprects);
1046 return -EINVAL;
1047 }
Daniel Vetter5e13a0c2012-05-08 13:39:59 +02001048
Daniel Vettera1e22652013-09-21 00:35:38 +02001049 cliprects = kcalloc(args->num_cliprects,
1050 sizeof(*cliprects),
Chris Wilson54cf91d2010-11-25 18:00:26 +00001051 GFP_KERNEL);
1052 if (cliprects == NULL) {
1053 ret = -ENOMEM;
1054 goto pre_mutex_err;
1055 }
1056
Chris Wilson432e58e2010-11-25 19:32:06 +00001057 if (copy_from_user(cliprects,
Ville Syrjälä2bb46292013-02-22 16:12:51 +02001058 to_user_ptr(args->cliprects_ptr),
1059 sizeof(*cliprects)*args->num_cliprects)) {
Chris Wilson54cf91d2010-11-25 18:00:26 +00001060 ret = -EFAULT;
1061 goto pre_mutex_err;
1062 }
1063 }
1064
Chris Wilson54cf91d2010-11-25 18:00:26 +00001065 ret = i915_mutex_lock_interruptible(dev);
1066 if (ret)
1067 goto pre_mutex_err;
1068
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02001069 if (dev_priv->ums.mm_suspended) {
Chris Wilson54cf91d2010-11-25 18:00:26 +00001070 mutex_unlock(&dev->struct_mutex);
1071 ret = -EBUSY;
1072 goto pre_mutex_err;
1073 }
1074
Ben Widawsky27173f12013-08-14 11:38:36 +02001075 eb = eb_create(args, vm);
Chris Wilson67731b82010-12-08 10:38:14 +00001076 if (eb == NULL) {
1077 mutex_unlock(&dev->struct_mutex);
1078 ret = -ENOMEM;
1079 goto pre_mutex_err;
1080 }
1081
Chris Wilson54cf91d2010-11-25 18:00:26 +00001082 /* Look up object handles */
Ben Widawsky27173f12013-08-14 11:38:36 +02001083 ret = eb_lookup_vmas(eb, exec, args, vm, file);
Chris Wilson3b96eff2013-01-08 10:53:14 +00001084 if (ret)
1085 goto err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001086
Chris Wilson6fe4f142011-01-10 17:35:37 +00001087 /* take note of the batch buffer before we might reorder the lists */
Ben Widawsky27173f12013-08-14 11:38:36 +02001088 batch_obj = list_entry(eb->vmas.prev, struct i915_vma, exec_list)->obj;
Chris Wilson6fe4f142011-01-10 17:35:37 +00001089
Chris Wilson54cf91d2010-11-25 18:00:26 +00001090 /* Move the objects en-masse into the GTT, evicting if necessary. */
Daniel Vettered5982e2013-01-17 22:23:36 +01001091 need_relocs = (args->flags & I915_EXEC_NO_RELOC) == 0;
Ben Widawsky27173f12013-08-14 11:38:36 +02001092 ret = i915_gem_execbuffer_reserve(ring, &eb->vmas, &need_relocs);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001093 if (ret)
1094 goto err;
1095
1096 /* The objects are in their final locations, apply the relocations. */
Daniel Vettered5982e2013-01-17 22:23:36 +01001097 if (need_relocs)
Ben Widawsky28d6a7b2013-07-31 17:00:02 -07001098 ret = i915_gem_execbuffer_relocate(eb, vm);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001099 if (ret) {
1100 if (ret == -EFAULT) {
Daniel Vettered5982e2013-01-17 22:23:36 +01001101 ret = i915_gem_execbuffer_relocate_slow(dev, args, file, ring,
Ben Widawsky27173f12013-08-14 11:38:36 +02001102 eb, exec);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001103 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1104 }
1105 if (ret)
1106 goto err;
1107 }
1108
1109 /* Set the pending read domains for the batch buffer to COMMAND */
Chris Wilson54cf91d2010-11-25 18:00:26 +00001110 if (batch_obj->base.pending_write_domain) {
Daniel Vetterff240192012-01-31 21:08:14 +01001111 DRM_DEBUG("Attempting to use self-modifying batch buffer\n");
Chris Wilson54cf91d2010-11-25 18:00:26 +00001112 ret = -EINVAL;
1113 goto err;
1114 }
1115 batch_obj->base.pending_read_domains |= I915_GEM_DOMAIN_COMMAND;
1116
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001117 /* snb/ivb/vlv conflate the "batch in ppgtt" bit with the "non-secure
1118 * batch" bit. Hence we need to pin secure batches into the global gtt.
1119 * hsw should have this fixed, but let's be paranoid and do it
1120 * unconditionally for now. */
1121 if (flags & I915_DISPATCH_SECURE && !batch_obj->has_global_gtt_mapping)
1122 i915_gem_gtt_bind_object(batch_obj, batch_obj->cache_level);
1123
Ben Widawsky27173f12013-08-14 11:38:36 +02001124 ret = i915_gem_execbuffer_move_to_gpu(ring, &eb->vmas);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001125 if (ret)
1126 goto err;
1127
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03001128 hs = i915_gem_context_get_hang_stats(dev, file, ctx_id);
1129 if (IS_ERR(hs)) {
1130 ret = PTR_ERR(hs);
1131 goto err;
1132 }
1133
1134 if (hs->banned) {
1135 ret = -EIO;
1136 goto err;
1137 }
1138
Eric Anholt0da5cec2012-07-23 12:33:55 -07001139 ret = i915_switch_context(ring, file, ctx_id);
1140 if (ret)
1141 goto err;
1142
Ben Widawskye2971bd2011-12-12 19:21:57 -08001143 if (ring == &dev_priv->ring[RCS] &&
1144 mode != dev_priv->relative_constants_mode) {
1145 ret = intel_ring_begin(ring, 4);
1146 if (ret)
1147 goto err;
1148
1149 intel_ring_emit(ring, MI_NOOP);
1150 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
1151 intel_ring_emit(ring, INSTPM);
Ben Widawsky84f9f932011-12-12 19:21:58 -08001152 intel_ring_emit(ring, mask << 16 | mode);
Ben Widawskye2971bd2011-12-12 19:21:57 -08001153 intel_ring_advance(ring);
1154
1155 dev_priv->relative_constants_mode = mode;
1156 }
1157
Eric Anholtae662d32012-01-03 09:23:29 -08001158 if (args->flags & I915_EXEC_GEN7_SOL_RESET) {
1159 ret = i915_reset_gen7_sol_offsets(dev, ring);
1160 if (ret)
1161 goto err;
1162 }
1163
Ben Widawsky28d6a7b2013-07-31 17:00:02 -07001164 exec_start = i915_gem_obj_offset(batch_obj, vm) +
1165 args->batch_start_offset;
Chris Wilsonc4e7a412010-11-30 14:10:25 +00001166 exec_len = args->batch_len;
1167 if (cliprects) {
1168 for (i = 0; i < args->num_cliprects; i++) {
1169 ret = i915_emit_box(dev, &cliprects[i],
1170 args->DR1, args->DR4);
1171 if (ret)
1172 goto err;
1173
1174 ret = ring->dispatch_execbuffer(ring,
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001175 exec_start, exec_len,
1176 flags);
Chris Wilsonc4e7a412010-11-30 14:10:25 +00001177 if (ret)
1178 goto err;
1179 }
1180 } else {
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001181 ret = ring->dispatch_execbuffer(ring,
1182 exec_start, exec_len,
1183 flags);
Chris Wilsonc4e7a412010-11-30 14:10:25 +00001184 if (ret)
1185 goto err;
1186 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001187
Chris Wilson9d7730912012-11-27 16:22:52 +00001188 trace_i915_gem_ring_dispatch(ring, intel_ring_get_seqno(ring), flags);
1189
Ben Widawsky27173f12013-08-14 11:38:36 +02001190 i915_gem_execbuffer_move_to_active(&eb->vmas, ring);
Mika Kuoppala7d736f42013-06-12 15:01:39 +03001191 i915_gem_execbuffer_retire_commands(dev, file, ring, batch_obj);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001192
1193err:
Chris Wilson67731b82010-12-08 10:38:14 +00001194 eb_destroy(eb);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001195
1196 mutex_unlock(&dev->struct_mutex);
1197
1198pre_mutex_err:
Chris Wilson54cf91d2010-11-25 18:00:26 +00001199 kfree(cliprects);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001200 return ret;
1201}
1202
1203/*
1204 * Legacy execbuffer just creates an exec2 list from the original exec object
1205 * list array and passes it to the real function.
1206 */
1207int
1208i915_gem_execbuffer(struct drm_device *dev, void *data,
1209 struct drm_file *file)
1210{
Ben Widawsky28d6a7b2013-07-31 17:00:02 -07001211 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001212 struct drm_i915_gem_execbuffer *args = data;
1213 struct drm_i915_gem_execbuffer2 exec2;
1214 struct drm_i915_gem_exec_object *exec_list = NULL;
1215 struct drm_i915_gem_exec_object2 *exec2_list = NULL;
1216 int ret, i;
1217
Chris Wilson54cf91d2010-11-25 18:00:26 +00001218 if (args->buffer_count < 1) {
Daniel Vetterff240192012-01-31 21:08:14 +01001219 DRM_DEBUG("execbuf with %d buffers\n", args->buffer_count);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001220 return -EINVAL;
1221 }
1222
1223 /* Copy in the exec list from userland */
1224 exec_list = drm_malloc_ab(sizeof(*exec_list), args->buffer_count);
1225 exec2_list = drm_malloc_ab(sizeof(*exec2_list), args->buffer_count);
1226 if (exec_list == NULL || exec2_list == NULL) {
Daniel Vetterff240192012-01-31 21:08:14 +01001227 DRM_DEBUG("Failed to allocate exec list for %d buffers\n",
Chris Wilson54cf91d2010-11-25 18:00:26 +00001228 args->buffer_count);
1229 drm_free_large(exec_list);
1230 drm_free_large(exec2_list);
1231 return -ENOMEM;
1232 }
1233 ret = copy_from_user(exec_list,
Ville Syrjälä2bb46292013-02-22 16:12:51 +02001234 to_user_ptr(args->buffers_ptr),
Chris Wilson54cf91d2010-11-25 18:00:26 +00001235 sizeof(*exec_list) * args->buffer_count);
1236 if (ret != 0) {
Daniel Vetterff240192012-01-31 21:08:14 +01001237 DRM_DEBUG("copy %d exec entries failed %d\n",
Chris Wilson54cf91d2010-11-25 18:00:26 +00001238 args->buffer_count, ret);
1239 drm_free_large(exec_list);
1240 drm_free_large(exec2_list);
1241 return -EFAULT;
1242 }
1243
1244 for (i = 0; i < args->buffer_count; i++) {
1245 exec2_list[i].handle = exec_list[i].handle;
1246 exec2_list[i].relocation_count = exec_list[i].relocation_count;
1247 exec2_list[i].relocs_ptr = exec_list[i].relocs_ptr;
1248 exec2_list[i].alignment = exec_list[i].alignment;
1249 exec2_list[i].offset = exec_list[i].offset;
1250 if (INTEL_INFO(dev)->gen < 4)
1251 exec2_list[i].flags = EXEC_OBJECT_NEEDS_FENCE;
1252 else
1253 exec2_list[i].flags = 0;
1254 }
1255
1256 exec2.buffers_ptr = args->buffers_ptr;
1257 exec2.buffer_count = args->buffer_count;
1258 exec2.batch_start_offset = args->batch_start_offset;
1259 exec2.batch_len = args->batch_len;
1260 exec2.DR1 = args->DR1;
1261 exec2.DR4 = args->DR4;
1262 exec2.num_cliprects = args->num_cliprects;
1263 exec2.cliprects_ptr = args->cliprects_ptr;
1264 exec2.flags = I915_EXEC_RENDER;
Ben Widawsky6e0a69d2012-06-04 14:42:55 -07001265 i915_execbuffer2_set_context_id(exec2, 0);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001266
Ben Widawsky28d6a7b2013-07-31 17:00:02 -07001267 ret = i915_gem_do_execbuffer(dev, data, file, &exec2, exec2_list,
1268 &dev_priv->gtt.base);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001269 if (!ret) {
1270 /* Copy the new buffer offsets back to the user's exec list. */
1271 for (i = 0; i < args->buffer_count; i++)
1272 exec_list[i].offset = exec2_list[i].offset;
1273 /* ... and back out to userspace */
Ville Syrjälä2bb46292013-02-22 16:12:51 +02001274 ret = copy_to_user(to_user_ptr(args->buffers_ptr),
Chris Wilson54cf91d2010-11-25 18:00:26 +00001275 exec_list,
1276 sizeof(*exec_list) * args->buffer_count);
1277 if (ret) {
1278 ret = -EFAULT;
Daniel Vetterff240192012-01-31 21:08:14 +01001279 DRM_DEBUG("failed to copy %d exec entries "
Chris Wilson54cf91d2010-11-25 18:00:26 +00001280 "back to user (%d)\n",
1281 args->buffer_count, ret);
1282 }
1283 }
1284
1285 drm_free_large(exec_list);
1286 drm_free_large(exec2_list);
1287 return ret;
1288}
1289
1290int
1291i915_gem_execbuffer2(struct drm_device *dev, void *data,
1292 struct drm_file *file)
1293{
Ben Widawsky28d6a7b2013-07-31 17:00:02 -07001294 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001295 struct drm_i915_gem_execbuffer2 *args = data;
1296 struct drm_i915_gem_exec_object2 *exec2_list = NULL;
1297 int ret;
1298
Xi Wanged8cd3b2012-04-23 04:06:41 -04001299 if (args->buffer_count < 1 ||
1300 args->buffer_count > UINT_MAX / sizeof(*exec2_list)) {
Daniel Vetterff240192012-01-31 21:08:14 +01001301 DRM_DEBUG("execbuf2 with %d buffers\n", args->buffer_count);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001302 return -EINVAL;
1303 }
1304
Chris Wilson8408c282011-02-21 12:54:48 +00001305 exec2_list = kmalloc(sizeof(*exec2_list)*args->buffer_count,
Chris Wilson419fa722013-01-08 10:53:13 +00001306 GFP_TEMPORARY | __GFP_NOWARN | __GFP_NORETRY);
Chris Wilson8408c282011-02-21 12:54:48 +00001307 if (exec2_list == NULL)
1308 exec2_list = drm_malloc_ab(sizeof(*exec2_list),
1309 args->buffer_count);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001310 if (exec2_list == NULL) {
Daniel Vetterff240192012-01-31 21:08:14 +01001311 DRM_DEBUG("Failed to allocate exec list for %d buffers\n",
Chris Wilson54cf91d2010-11-25 18:00:26 +00001312 args->buffer_count);
1313 return -ENOMEM;
1314 }
1315 ret = copy_from_user(exec2_list,
Ville Syrjälä2bb46292013-02-22 16:12:51 +02001316 to_user_ptr(args->buffers_ptr),
Chris Wilson54cf91d2010-11-25 18:00:26 +00001317 sizeof(*exec2_list) * args->buffer_count);
1318 if (ret != 0) {
Daniel Vetterff240192012-01-31 21:08:14 +01001319 DRM_DEBUG("copy %d exec entries failed %d\n",
Chris Wilson54cf91d2010-11-25 18:00:26 +00001320 args->buffer_count, ret);
1321 drm_free_large(exec2_list);
1322 return -EFAULT;
1323 }
1324
Ben Widawsky28d6a7b2013-07-31 17:00:02 -07001325 ret = i915_gem_do_execbuffer(dev, data, file, args, exec2_list,
1326 &dev_priv->gtt.base);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001327 if (!ret) {
1328 /* Copy the new buffer offsets back to the user's exec list. */
Ville Syrjälä2bb46292013-02-22 16:12:51 +02001329 ret = copy_to_user(to_user_ptr(args->buffers_ptr),
Chris Wilson54cf91d2010-11-25 18:00:26 +00001330 exec2_list,
1331 sizeof(*exec2_list) * args->buffer_count);
1332 if (ret) {
1333 ret = -EFAULT;
Daniel Vetterff240192012-01-31 21:08:14 +01001334 DRM_DEBUG("failed to copy %d exec entries "
Chris Wilson54cf91d2010-11-25 18:00:26 +00001335 "back to user (%d)\n",
1336 args->buffer_count, ret);
1337 }
1338 }
1339
1340 drm_free_large(exec2_list);
1341 return ret;
1342}