blob: 6ed7d63a0688384830894f4a455463bd7e9e060c [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>
David Hildenbrand32d82062015-05-11 17:52:12 +020035#include <linux/uaccess.h>
Chris Wilson54cf91d2010-11-25 18:00:26 +000036
Chris Wilsona415d352013-11-26 11:23:15 +000037#define __EXEC_OBJECT_HAS_PIN (1<<31)
38#define __EXEC_OBJECT_HAS_FENCE (1<<30)
Chris Wilsone6a84462014-08-11 12:00:12 +020039#define __EXEC_OBJECT_NEEDS_MAP (1<<29)
Chris Wilsond23db882014-05-23 08:48:08 +020040#define __EXEC_OBJECT_NEEDS_BIAS (1<<28)
41
42#define BATCH_OFFSET_BIAS (256*1024)
Chris Wilsona415d352013-11-26 11:23:15 +000043
Ben Widawsky27173f12013-08-14 11:38:36 +020044struct eb_vmas {
45 struct list_head vmas;
Chris Wilson67731b82010-12-08 10:38:14 +000046 int and;
Chris Wilsoneef90cc2013-01-08 10:53:17 +000047 union {
Ben Widawsky27173f12013-08-14 11:38:36 +020048 struct i915_vma *lut[0];
Chris Wilsoneef90cc2013-01-08 10:53:17 +000049 struct hlist_head buckets[0];
50 };
Chris Wilson67731b82010-12-08 10:38:14 +000051};
52
Ben Widawsky27173f12013-08-14 11:38:36 +020053static struct eb_vmas *
Ben Widawsky17601cbc2013-11-25 09:54:38 -080054eb_create(struct drm_i915_gem_execbuffer2 *args)
Chris Wilson67731b82010-12-08 10:38:14 +000055{
Ben Widawsky27173f12013-08-14 11:38:36 +020056 struct eb_vmas *eb = NULL;
Chris Wilson67731b82010-12-08 10:38:14 +000057
Chris Wilsoneef90cc2013-01-08 10:53:17 +000058 if (args->flags & I915_EXEC_HANDLE_LUT) {
Daniel Vetterb205ca52013-09-19 14:00:11 +020059 unsigned size = args->buffer_count;
Ben Widawsky27173f12013-08-14 11:38:36 +020060 size *= sizeof(struct i915_vma *);
61 size += sizeof(struct eb_vmas);
Chris Wilsoneef90cc2013-01-08 10:53:17 +000062 eb = kmalloc(size, GFP_TEMPORARY | __GFP_NOWARN | __GFP_NORETRY);
63 }
64
65 if (eb == NULL) {
Daniel Vetterb205ca52013-09-19 14:00:11 +020066 unsigned size = args->buffer_count;
67 unsigned count = PAGE_SIZE / sizeof(struct hlist_head) / 2;
Lauri Kasanen27b7c632013-03-27 15:04:55 +020068 BUILD_BUG_ON_NOT_POWER_OF_2(PAGE_SIZE / sizeof(struct hlist_head));
Chris Wilsoneef90cc2013-01-08 10:53:17 +000069 while (count > 2*size)
70 count >>= 1;
71 eb = kzalloc(count*sizeof(struct hlist_head) +
Ben Widawsky27173f12013-08-14 11:38:36 +020072 sizeof(struct eb_vmas),
Chris Wilsoneef90cc2013-01-08 10:53:17 +000073 GFP_TEMPORARY);
74 if (eb == NULL)
75 return eb;
76
77 eb->and = count - 1;
78 } else
79 eb->and = -args->buffer_count;
80
Ben Widawsky27173f12013-08-14 11:38:36 +020081 INIT_LIST_HEAD(&eb->vmas);
Chris Wilson67731b82010-12-08 10:38:14 +000082 return eb;
83}
84
85static void
Ben Widawsky27173f12013-08-14 11:38:36 +020086eb_reset(struct eb_vmas *eb)
Chris Wilson67731b82010-12-08 10:38:14 +000087{
Chris Wilsoneef90cc2013-01-08 10:53:17 +000088 if (eb->and >= 0)
89 memset(eb->buckets, 0, (eb->and+1)*sizeof(struct hlist_head));
Chris Wilson67731b82010-12-08 10:38:14 +000090}
91
Chris Wilson3b96eff2013-01-08 10:53:14 +000092static int
Ben Widawsky27173f12013-08-14 11:38:36 +020093eb_lookup_vmas(struct eb_vmas *eb,
94 struct drm_i915_gem_exec_object2 *exec,
95 const struct drm_i915_gem_execbuffer2 *args,
96 struct i915_address_space *vm,
97 struct drm_file *file)
Chris Wilson3b96eff2013-01-08 10:53:14 +000098{
Ben Widawsky27173f12013-08-14 11:38:36 +020099 struct drm_i915_gem_object *obj;
100 struct list_head objects;
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000101 int i, ret;
Chris Wilson3b96eff2013-01-08 10:53:14 +0000102
Ben Widawsky27173f12013-08-14 11:38:36 +0200103 INIT_LIST_HEAD(&objects);
Chris Wilson3b96eff2013-01-08 10:53:14 +0000104 spin_lock(&file->table_lock);
Ben Widawsky27173f12013-08-14 11:38:36 +0200105 /* Grab a reference to the object and release the lock so we can lookup
106 * or create the VMA without using GFP_ATOMIC */
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000107 for (i = 0; i < args->buffer_count; i++) {
Chris Wilson3b96eff2013-01-08 10:53:14 +0000108 obj = to_intel_bo(idr_find(&file->object_idr, exec[i].handle));
109 if (obj == NULL) {
110 spin_unlock(&file->table_lock);
111 DRM_DEBUG("Invalid object handle %d at index %d\n",
112 exec[i].handle, i);
Ben Widawsky27173f12013-08-14 11:38:36 +0200113 ret = -ENOENT;
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000114 goto err;
Chris Wilson3b96eff2013-01-08 10:53:14 +0000115 }
116
Ben Widawsky27173f12013-08-14 11:38:36 +0200117 if (!list_empty(&obj->obj_exec_link)) {
Chris Wilson3b96eff2013-01-08 10:53:14 +0000118 spin_unlock(&file->table_lock);
119 DRM_DEBUG("Object %p [handle %d, index %d] appears more than once in object list\n",
120 obj, exec[i].handle, i);
Ben Widawsky27173f12013-08-14 11:38:36 +0200121 ret = -EINVAL;
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000122 goto err;
Chris Wilson3b96eff2013-01-08 10:53:14 +0000123 }
124
125 drm_gem_object_reference(&obj->base);
Ben Widawsky27173f12013-08-14 11:38:36 +0200126 list_add_tail(&obj->obj_exec_link, &objects);
Chris Wilson3b96eff2013-01-08 10:53:14 +0000127 }
128 spin_unlock(&file->table_lock);
129
Ben Widawsky27173f12013-08-14 11:38:36 +0200130 i = 0;
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000131 while (!list_empty(&objects)) {
Ben Widawsky27173f12013-08-14 11:38:36 +0200132 struct i915_vma *vma;
Ben Widawsky6f65e292013-12-06 14:10:56 -0800133
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000134 obj = list_first_entry(&objects,
135 struct drm_i915_gem_object,
136 obj_exec_link);
137
Daniel Vettere656a6c2013-08-14 14:14:04 +0200138 /*
139 * NOTE: We can leak any vmas created here when something fails
140 * later on. But that's no issue since vma_unbind can deal with
141 * vmas which are not actually bound. And since only
142 * lookup_or_create exists as an interface to get at the vma
143 * from the (obj, vm) we don't run the risk of creating
144 * duplicated vmas for the same vm.
145 */
Daniel Vetterda51a1e2014-08-11 12:08:58 +0200146 vma = i915_gem_obj_lookup_or_create_vma(obj, vm);
Ben Widawsky27173f12013-08-14 11:38:36 +0200147 if (IS_ERR(vma)) {
Ben Widawsky27173f12013-08-14 11:38:36 +0200148 DRM_DEBUG("Failed to lookup VMA\n");
149 ret = PTR_ERR(vma);
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000150 goto err;
Ben Widawsky27173f12013-08-14 11:38:36 +0200151 }
152
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000153 /* Transfer ownership from the objects list to the vmas list. */
Ben Widawsky27173f12013-08-14 11:38:36 +0200154 list_add_tail(&vma->exec_list, &eb->vmas);
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000155 list_del_init(&obj->obj_exec_link);
Ben Widawsky27173f12013-08-14 11:38:36 +0200156
157 vma->exec_entry = &exec[i];
158 if (eb->and < 0) {
159 eb->lut[i] = vma;
160 } else {
161 uint32_t handle = args->flags & I915_EXEC_HANDLE_LUT ? i : exec[i].handle;
162 vma->exec_handle = handle;
163 hlist_add_head(&vma->exec_node,
164 &eb->buckets[handle & eb->and]);
165 }
166 ++i;
167 }
168
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000169 return 0;
Ben Widawsky27173f12013-08-14 11:38:36 +0200170
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000171
172err:
Ben Widawsky27173f12013-08-14 11:38:36 +0200173 while (!list_empty(&objects)) {
174 obj = list_first_entry(&objects,
175 struct drm_i915_gem_object,
176 obj_exec_link);
177 list_del_init(&obj->obj_exec_link);
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000178 drm_gem_object_unreference(&obj->base);
Ben Widawsky27173f12013-08-14 11:38:36 +0200179 }
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000180 /*
181 * Objects already transfered to the vmas list will be unreferenced by
182 * eb_destroy.
183 */
184
Ben Widawsky27173f12013-08-14 11:38:36 +0200185 return ret;
Chris Wilson3b96eff2013-01-08 10:53:14 +0000186}
187
Ben Widawsky27173f12013-08-14 11:38:36 +0200188static struct i915_vma *eb_get_vma(struct eb_vmas *eb, unsigned long handle)
Chris Wilson67731b82010-12-08 10:38:14 +0000189{
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000190 if (eb->and < 0) {
191 if (handle >= -eb->and)
192 return NULL;
193 return eb->lut[handle];
194 } else {
195 struct hlist_head *head;
196 struct hlist_node *node;
Chris Wilson67731b82010-12-08 10:38:14 +0000197
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000198 head = &eb->buckets[handle & eb->and];
199 hlist_for_each(node, head) {
Ben Widawsky27173f12013-08-14 11:38:36 +0200200 struct i915_vma *vma;
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000201
Ben Widawsky27173f12013-08-14 11:38:36 +0200202 vma = hlist_entry(node, struct i915_vma, exec_node);
203 if (vma->exec_handle == handle)
204 return vma;
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000205 }
206 return NULL;
Chris Wilson67731b82010-12-08 10:38:14 +0000207 }
Chris Wilson67731b82010-12-08 10:38:14 +0000208}
209
Chris Wilsona415d352013-11-26 11:23:15 +0000210static void
211i915_gem_execbuffer_unreserve_vma(struct i915_vma *vma)
212{
213 struct drm_i915_gem_exec_object2 *entry;
214 struct drm_i915_gem_object *obj = vma->obj;
215
216 if (!drm_mm_node_allocated(&vma->node))
217 return;
218
219 entry = vma->exec_entry;
220
221 if (entry->flags & __EXEC_OBJECT_HAS_FENCE)
222 i915_gem_object_unpin_fence(obj);
223
224 if (entry->flags & __EXEC_OBJECT_HAS_PIN)
Daniel Vetter3d7f0f92013-12-18 16:23:37 +0100225 vma->pin_count--;
Chris Wilsona415d352013-11-26 11:23:15 +0000226
Chris Wilsonde4e7832015-04-07 16:20:35 +0100227 entry->flags &= ~(__EXEC_OBJECT_HAS_FENCE | __EXEC_OBJECT_HAS_PIN);
Chris Wilsona415d352013-11-26 11:23:15 +0000228}
229
230static void eb_destroy(struct eb_vmas *eb)
231{
Ben Widawsky27173f12013-08-14 11:38:36 +0200232 while (!list_empty(&eb->vmas)) {
233 struct i915_vma *vma;
Chris Wilsonbcffc3f2013-01-08 10:53:15 +0000234
Ben Widawsky27173f12013-08-14 11:38:36 +0200235 vma = list_first_entry(&eb->vmas,
236 struct i915_vma,
Chris Wilsonbcffc3f2013-01-08 10:53:15 +0000237 exec_list);
Ben Widawsky27173f12013-08-14 11:38:36 +0200238 list_del_init(&vma->exec_list);
Chris Wilsona415d352013-11-26 11:23:15 +0000239 i915_gem_execbuffer_unreserve_vma(vma);
Ben Widawsky27173f12013-08-14 11:38:36 +0200240 drm_gem_object_unreference(&vma->obj->base);
Chris Wilsonbcffc3f2013-01-08 10:53:15 +0000241 }
Chris Wilson67731b82010-12-08 10:38:14 +0000242 kfree(eb);
243}
244
Chris Wilsondabdfe02012-03-26 10:10:27 +0200245static inline int use_cpu_reloc(struct drm_i915_gem_object *obj)
246{
Chris Wilson2cc86b82013-08-26 19:51:00 -0300247 return (HAS_LLC(obj->base.dev) ||
248 obj->base.write_domain == I915_GEM_DOMAIN_CPU ||
Chris Wilsondabdfe02012-03-26 10:10:27 +0200249 obj->cache_level != I915_CACHE_NONE);
250}
251
Chris Wilson54cf91d2010-11-25 18:00:26 +0000252static int
Rafael Barbalho5032d872013-08-21 17:10:51 +0100253relocate_entry_cpu(struct drm_i915_gem_object *obj,
Ben Widawskyd9ceb952014-04-28 17:18:28 -0700254 struct drm_i915_gem_relocation_entry *reloc,
255 uint64_t target_offset)
Rafael Barbalho5032d872013-08-21 17:10:51 +0100256{
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700257 struct drm_device *dev = obj->base.dev;
Rafael Barbalho5032d872013-08-21 17:10:51 +0100258 uint32_t page_offset = offset_in_page(reloc->offset);
Ben Widawskyd9ceb952014-04-28 17:18:28 -0700259 uint64_t delta = reloc->delta + target_offset;
Rafael Barbalho5032d872013-08-21 17:10:51 +0100260 char *vaddr;
Ben Widawsky8b78f0e2013-12-26 13:39:50 -0800261 int ret;
Rafael Barbalho5032d872013-08-21 17:10:51 +0100262
Chris Wilson2cc86b82013-08-26 19:51:00 -0300263 ret = i915_gem_object_set_to_cpu_domain(obj, true);
Rafael Barbalho5032d872013-08-21 17:10:51 +0100264 if (ret)
265 return ret;
266
267 vaddr = kmap_atomic(i915_gem_object_get_page(obj,
268 reloc->offset >> PAGE_SHIFT));
Ben Widawskyd9ceb952014-04-28 17:18:28 -0700269 *(uint32_t *)(vaddr + page_offset) = lower_32_bits(delta);
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700270
271 if (INTEL_INFO(dev)->gen >= 8) {
272 page_offset = offset_in_page(page_offset + sizeof(uint32_t));
273
274 if (page_offset == 0) {
275 kunmap_atomic(vaddr);
276 vaddr = kmap_atomic(i915_gem_object_get_page(obj,
277 (reloc->offset + sizeof(uint32_t)) >> PAGE_SHIFT));
278 }
279
Ben Widawskyd9ceb952014-04-28 17:18:28 -0700280 *(uint32_t *)(vaddr + page_offset) = upper_32_bits(delta);
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700281 }
282
Rafael Barbalho5032d872013-08-21 17:10:51 +0100283 kunmap_atomic(vaddr);
284
285 return 0;
286}
287
288static int
289relocate_entry_gtt(struct drm_i915_gem_object *obj,
Ben Widawskyd9ceb952014-04-28 17:18:28 -0700290 struct drm_i915_gem_relocation_entry *reloc,
291 uint64_t target_offset)
Rafael Barbalho5032d872013-08-21 17:10:51 +0100292{
293 struct drm_device *dev = obj->base.dev;
294 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskyd9ceb952014-04-28 17:18:28 -0700295 uint64_t delta = reloc->delta + target_offset;
Chris Wilson906843c2014-08-10 06:29:11 +0100296 uint64_t offset;
Rafael Barbalho5032d872013-08-21 17:10:51 +0100297 void __iomem *reloc_page;
Ben Widawsky8b78f0e2013-12-26 13:39:50 -0800298 int ret;
Rafael Barbalho5032d872013-08-21 17:10:51 +0100299
300 ret = i915_gem_object_set_to_gtt_domain(obj, true);
301 if (ret)
302 return ret;
303
304 ret = i915_gem_object_put_fence(obj);
305 if (ret)
306 return ret;
307
308 /* Map the page containing the relocation we're going to perform. */
Chris Wilson906843c2014-08-10 06:29:11 +0100309 offset = i915_gem_obj_ggtt_offset(obj);
310 offset += reloc->offset;
Rafael Barbalho5032d872013-08-21 17:10:51 +0100311 reloc_page = io_mapping_map_atomic_wc(dev_priv->gtt.mappable,
Chris Wilson906843c2014-08-10 06:29:11 +0100312 offset & PAGE_MASK);
313 iowrite32(lower_32_bits(delta), reloc_page + offset_in_page(offset));
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700314
315 if (INTEL_INFO(dev)->gen >= 8) {
Chris Wilson906843c2014-08-10 06:29:11 +0100316 offset += sizeof(uint32_t);
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700317
Chris Wilson906843c2014-08-10 06:29:11 +0100318 if (offset_in_page(offset) == 0) {
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700319 io_mapping_unmap_atomic(reloc_page);
Chris Wilson906843c2014-08-10 06:29:11 +0100320 reloc_page =
321 io_mapping_map_atomic_wc(dev_priv->gtt.mappable,
322 offset);
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700323 }
324
Chris Wilson906843c2014-08-10 06:29:11 +0100325 iowrite32(upper_32_bits(delta),
326 reloc_page + offset_in_page(offset));
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700327 }
328
Rafael Barbalho5032d872013-08-21 17:10:51 +0100329 io_mapping_unmap_atomic(reloc_page);
330
331 return 0;
332}
333
Chris Wilsonedf4427b2015-01-14 11:20:56 +0000334static void
335clflush_write32(void *addr, uint32_t value)
336{
337 /* This is not a fast path, so KISS. */
338 drm_clflush_virt_range(addr, sizeof(uint32_t));
339 *(uint32_t *)addr = value;
340 drm_clflush_virt_range(addr, sizeof(uint32_t));
341}
342
343static int
344relocate_entry_clflush(struct drm_i915_gem_object *obj,
345 struct drm_i915_gem_relocation_entry *reloc,
346 uint64_t target_offset)
347{
348 struct drm_device *dev = obj->base.dev;
349 uint32_t page_offset = offset_in_page(reloc->offset);
350 uint64_t delta = (int)reloc->delta + target_offset;
351 char *vaddr;
352 int ret;
353
354 ret = i915_gem_object_set_to_gtt_domain(obj, true);
355 if (ret)
356 return ret;
357
358 vaddr = kmap_atomic(i915_gem_object_get_page(obj,
359 reloc->offset >> PAGE_SHIFT));
360 clflush_write32(vaddr + page_offset, lower_32_bits(delta));
361
362 if (INTEL_INFO(dev)->gen >= 8) {
363 page_offset = offset_in_page(page_offset + sizeof(uint32_t));
364
365 if (page_offset == 0) {
366 kunmap_atomic(vaddr);
367 vaddr = kmap_atomic(i915_gem_object_get_page(obj,
368 (reloc->offset + sizeof(uint32_t)) >> PAGE_SHIFT));
369 }
370
371 clflush_write32(vaddr + page_offset, upper_32_bits(delta));
372 }
373
374 kunmap_atomic(vaddr);
375
376 return 0;
377}
378
Rafael Barbalho5032d872013-08-21 17:10:51 +0100379static int
Chris Wilson54cf91d2010-11-25 18:00:26 +0000380i915_gem_execbuffer_relocate_entry(struct drm_i915_gem_object *obj,
Ben Widawsky27173f12013-08-14 11:38:36 +0200381 struct eb_vmas *eb,
Ben Widawsky3e7a0322013-12-06 14:10:57 -0800382 struct drm_i915_gem_relocation_entry *reloc)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000383{
384 struct drm_device *dev = obj->base.dev;
385 struct drm_gem_object *target_obj;
Daniel Vetter149c8402012-02-15 23:50:23 +0100386 struct drm_i915_gem_object *target_i915_obj;
Ben Widawsky27173f12013-08-14 11:38:36 +0200387 struct i915_vma *target_vma;
Ben Widawskyd9ceb952014-04-28 17:18:28 -0700388 uint64_t target_offset;
Ben Widawsky8b78f0e2013-12-26 13:39:50 -0800389 int ret;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000390
Chris Wilson67731b82010-12-08 10:38:14 +0000391 /* we've already hold a reference to all valid objects */
Ben Widawsky27173f12013-08-14 11:38:36 +0200392 target_vma = eb_get_vma(eb, reloc->target_handle);
393 if (unlikely(target_vma == NULL))
Chris Wilson54cf91d2010-11-25 18:00:26 +0000394 return -ENOENT;
Ben Widawsky27173f12013-08-14 11:38:36 +0200395 target_i915_obj = target_vma->obj;
396 target_obj = &target_vma->obj->base;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000397
Ben Widawsky5ce09722013-11-25 09:54:40 -0800398 target_offset = target_vma->node.start;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000399
Eric Anholte844b992012-07-31 15:35:01 -0700400 /* Sandybridge PPGTT errata: We need a global gtt mapping for MI and
401 * pipe_control writes because the gpu doesn't properly redirect them
402 * through the ppgtt for non_secure batchbuffers. */
403 if (unlikely(IS_GEN6(dev) &&
Daniel Vetter08755462015-04-20 09:04:05 -0700404 reloc->write_domain == I915_GEM_DOMAIN_INSTRUCTION)) {
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +0000405 ret = i915_vma_bind(target_vma, target_i915_obj->cache_level,
Daniel Vetter08755462015-04-20 09:04:05 -0700406 PIN_GLOBAL);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +0000407 if (WARN_ONCE(ret, "Unexpected failure to bind target VMA!"))
408 return ret;
409 }
Eric Anholte844b992012-07-31 15:35:01 -0700410
Chris Wilson54cf91d2010-11-25 18:00:26 +0000411 /* Validate that the target is in a valid r/w GPU domain */
Chris Wilsonb8f7ab12010-12-08 10:43:06 +0000412 if (unlikely(reloc->write_domain & (reloc->write_domain - 1))) {
Daniel Vetterff240192012-01-31 21:08:14 +0100413 DRM_DEBUG("reloc with multiple write domains: "
Chris Wilson54cf91d2010-11-25 18:00:26 +0000414 "obj %p target %d offset %d "
415 "read %08x write %08x",
416 obj, reloc->target_handle,
417 (int) reloc->offset,
418 reloc->read_domains,
419 reloc->write_domain);
Ben Widawsky8b78f0e2013-12-26 13:39:50 -0800420 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000421 }
Daniel Vetter4ca4a252011-12-14 13:57:27 +0100422 if (unlikely((reloc->write_domain | reloc->read_domains)
423 & ~I915_GEM_GPU_DOMAINS)) {
Daniel Vetterff240192012-01-31 21:08:14 +0100424 DRM_DEBUG("reloc with read/write non-GPU domains: "
Chris Wilson54cf91d2010-11-25 18:00:26 +0000425 "obj %p target %d offset %d "
426 "read %08x write %08x",
427 obj, reloc->target_handle,
428 (int) reloc->offset,
429 reloc->read_domains,
430 reloc->write_domain);
Ben Widawsky8b78f0e2013-12-26 13:39:50 -0800431 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000432 }
Chris Wilson54cf91d2010-11-25 18:00:26 +0000433
434 target_obj->pending_read_domains |= reloc->read_domains;
435 target_obj->pending_write_domain |= reloc->write_domain;
436
437 /* If the relocation already has the right value in it, no
438 * more work needs to be done.
439 */
440 if (target_offset == reloc->presumed_offset)
Chris Wilson67731b82010-12-08 10:38:14 +0000441 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000442
443 /* Check that the relocation address is valid... */
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700444 if (unlikely(reloc->offset >
445 obj->base.size - (INTEL_INFO(dev)->gen >= 8 ? 8 : 4))) {
Daniel Vetterff240192012-01-31 21:08:14 +0100446 DRM_DEBUG("Relocation beyond object bounds: "
Chris Wilson54cf91d2010-11-25 18:00:26 +0000447 "obj %p target %d offset %d size %d.\n",
448 obj, reloc->target_handle,
449 (int) reloc->offset,
450 (int) obj->base.size);
Ben Widawsky8b78f0e2013-12-26 13:39:50 -0800451 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000452 }
Chris Wilsonb8f7ab12010-12-08 10:43:06 +0000453 if (unlikely(reloc->offset & 3)) {
Daniel Vetterff240192012-01-31 21:08:14 +0100454 DRM_DEBUG("Relocation not 4-byte aligned: "
Chris Wilson54cf91d2010-11-25 18:00:26 +0000455 "obj %p target %d offset %d.\n",
456 obj, reloc->target_handle,
457 (int) reloc->offset);
Ben Widawsky8b78f0e2013-12-26 13:39:50 -0800458 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000459 }
460
Chris Wilsondabdfe02012-03-26 10:10:27 +0200461 /* We can't wait for rendering with pagefaults disabled */
David Hildenbrand32d82062015-05-11 17:52:12 +0200462 if (obj->active && pagefault_disabled())
Chris Wilsondabdfe02012-03-26 10:10:27 +0200463 return -EFAULT;
464
Rafael Barbalho5032d872013-08-21 17:10:51 +0100465 if (use_cpu_reloc(obj))
Ben Widawskyd9ceb952014-04-28 17:18:28 -0700466 ret = relocate_entry_cpu(obj, reloc, target_offset);
Chris Wilsonedf4427b2015-01-14 11:20:56 +0000467 else if (obj->map_and_fenceable)
Ben Widawskyd9ceb952014-04-28 17:18:28 -0700468 ret = relocate_entry_gtt(obj, reloc, target_offset);
Chris Wilsonedf4427b2015-01-14 11:20:56 +0000469 else if (cpu_has_clflush)
470 ret = relocate_entry_clflush(obj, reloc, target_offset);
471 else {
472 WARN_ONCE(1, "Impossible case in relocation handling\n");
473 ret = -ENODEV;
474 }
Chris Wilson54cf91d2010-11-25 18:00:26 +0000475
Daniel Vetterd4d36012013-09-02 20:56:23 +0200476 if (ret)
477 return ret;
478
Chris Wilson54cf91d2010-11-25 18:00:26 +0000479 /* and update the user's relocation entry */
480 reloc->presumed_offset = target_offset;
481
Chris Wilson67731b82010-12-08 10:38:14 +0000482 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000483}
484
485static int
Ben Widawsky27173f12013-08-14 11:38:36 +0200486i915_gem_execbuffer_relocate_vma(struct i915_vma *vma,
487 struct eb_vmas *eb)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000488{
Chris Wilson1d83f442012-03-24 20:12:53 +0000489#define N_RELOC(x) ((x) / sizeof(struct drm_i915_gem_relocation_entry))
490 struct drm_i915_gem_relocation_entry stack_reloc[N_RELOC(512)];
Chris Wilson54cf91d2010-11-25 18:00:26 +0000491 struct drm_i915_gem_relocation_entry __user *user_relocs;
Ben Widawsky27173f12013-08-14 11:38:36 +0200492 struct drm_i915_gem_exec_object2 *entry = vma->exec_entry;
Chris Wilson1d83f442012-03-24 20:12:53 +0000493 int remain, ret;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000494
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200495 user_relocs = to_user_ptr(entry->relocs_ptr);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000496
Chris Wilson1d83f442012-03-24 20:12:53 +0000497 remain = entry->relocation_count;
498 while (remain) {
499 struct drm_i915_gem_relocation_entry *r = stack_reloc;
500 int count = remain;
501 if (count > ARRAY_SIZE(stack_reloc))
502 count = ARRAY_SIZE(stack_reloc);
503 remain -= count;
504
505 if (__copy_from_user_inatomic(r, user_relocs, count*sizeof(r[0])))
Chris Wilson54cf91d2010-11-25 18:00:26 +0000506 return -EFAULT;
507
Chris Wilson1d83f442012-03-24 20:12:53 +0000508 do {
509 u64 offset = r->presumed_offset;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000510
Ben Widawsky3e7a0322013-12-06 14:10:57 -0800511 ret = i915_gem_execbuffer_relocate_entry(vma->obj, eb, r);
Chris Wilson1d83f442012-03-24 20:12:53 +0000512 if (ret)
513 return ret;
514
515 if (r->presumed_offset != offset &&
516 __copy_to_user_inatomic(&user_relocs->presumed_offset,
517 &r->presumed_offset,
518 sizeof(r->presumed_offset))) {
519 return -EFAULT;
520 }
521
522 user_relocs++;
523 r++;
524 } while (--count);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000525 }
526
527 return 0;
Chris Wilson1d83f442012-03-24 20:12:53 +0000528#undef N_RELOC
Chris Wilson54cf91d2010-11-25 18:00:26 +0000529}
530
531static int
Ben Widawsky27173f12013-08-14 11:38:36 +0200532i915_gem_execbuffer_relocate_vma_slow(struct i915_vma *vma,
533 struct eb_vmas *eb,
534 struct drm_i915_gem_relocation_entry *relocs)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000535{
Ben Widawsky27173f12013-08-14 11:38:36 +0200536 const struct drm_i915_gem_exec_object2 *entry = vma->exec_entry;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000537 int i, ret;
538
539 for (i = 0; i < entry->relocation_count; i++) {
Ben Widawsky3e7a0322013-12-06 14:10:57 -0800540 ret = i915_gem_execbuffer_relocate_entry(vma->obj, eb, &relocs[i]);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000541 if (ret)
542 return ret;
543 }
544
545 return 0;
546}
547
548static int
Ben Widawsky17601cbc2013-11-25 09:54:38 -0800549i915_gem_execbuffer_relocate(struct eb_vmas *eb)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000550{
Ben Widawsky27173f12013-08-14 11:38:36 +0200551 struct i915_vma *vma;
Chris Wilsond4aeee72011-03-14 15:11:24 +0000552 int ret = 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000553
Chris Wilsond4aeee72011-03-14 15:11:24 +0000554 /* This is the fast path and we cannot handle a pagefault whilst
555 * holding the struct mutex lest the user pass in the relocations
556 * contained within a mmaped bo. For in such a case we, the page
557 * fault handler would call i915_gem_fault() and we would try to
558 * acquire the struct mutex again. Obviously this is bad and so
559 * lockdep complains vehemently.
560 */
561 pagefault_disable();
Ben Widawsky27173f12013-08-14 11:38:36 +0200562 list_for_each_entry(vma, &eb->vmas, exec_list) {
563 ret = i915_gem_execbuffer_relocate_vma(vma, eb);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000564 if (ret)
Chris Wilsond4aeee72011-03-14 15:11:24 +0000565 break;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000566 }
Chris Wilsond4aeee72011-03-14 15:11:24 +0000567 pagefault_enable();
Chris Wilson54cf91d2010-11-25 18:00:26 +0000568
Chris Wilsond4aeee72011-03-14 15:11:24 +0000569 return ret;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000570}
571
Chris Wilsonedf4427b2015-01-14 11:20:56 +0000572static bool only_mappable_for_reloc(unsigned int flags)
573{
574 return (flags & (EXEC_OBJECT_NEEDS_FENCE | __EXEC_OBJECT_NEEDS_MAP)) ==
575 __EXEC_OBJECT_NEEDS_MAP;
576}
577
Chris Wilson1690e1e2011-12-14 13:57:08 +0100578static int
Ben Widawsky27173f12013-08-14 11:38:36 +0200579i915_gem_execbuffer_reserve_vma(struct i915_vma *vma,
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100580 struct intel_engine_cs *ring,
Ben Widawsky27173f12013-08-14 11:38:36 +0200581 bool *need_reloc)
Chris Wilson1690e1e2011-12-14 13:57:08 +0100582{
Ben Widawsky6f65e292013-12-06 14:10:56 -0800583 struct drm_i915_gem_object *obj = vma->obj;
Ben Widawsky27173f12013-08-14 11:38:36 +0200584 struct drm_i915_gem_exec_object2 *entry = vma->exec_entry;
Chris Wilsond23db882014-05-23 08:48:08 +0200585 uint64_t flags;
Chris Wilson1690e1e2011-12-14 13:57:08 +0100586 int ret;
587
Daniel Vetter08755462015-04-20 09:04:05 -0700588 flags = PIN_USER;
Daniel Vetter0229da32015-04-14 19:01:54 +0200589 if (entry->flags & EXEC_OBJECT_NEEDS_GTT)
590 flags |= PIN_GLOBAL;
591
Chris Wilsonedf4427b2015-01-14 11:20:56 +0000592 if (!drm_mm_node_allocated(&vma->node)) {
Michel Thierry101b5062015-10-01 13:33:57 +0100593 /* Wa32bitGeneralStateOffset & Wa32bitInstructionBaseOffset,
594 * limit address to the first 4GBs for unflagged objects.
595 */
596 if ((entry->flags & EXEC_OBJECT_SUPPORTS_48B_ADDRESS) == 0)
597 flags |= PIN_ZONE_4G;
Chris Wilsonedf4427b2015-01-14 11:20:56 +0000598 if (entry->flags & __EXEC_OBJECT_NEEDS_MAP)
599 flags |= PIN_GLOBAL | PIN_MAPPABLE;
Chris Wilsonedf4427b2015-01-14 11:20:56 +0000600 if (entry->flags & __EXEC_OBJECT_NEEDS_BIAS)
601 flags |= BATCH_OFFSET_BIAS | PIN_OFFSET_BIAS;
Michel Thierry101b5062015-10-01 13:33:57 +0100602 if ((flags & PIN_MAPPABLE) == 0)
603 flags |= PIN_HIGH;
Chris Wilsonedf4427b2015-01-14 11:20:56 +0000604 }
Daniel Vetter1ec9e262014-02-14 14:01:11 +0100605
606 ret = i915_gem_object_pin(obj, vma->vm, entry->alignment, flags);
Chris Wilsonedf4427b2015-01-14 11:20:56 +0000607 if ((ret == -ENOSPC || ret == -E2BIG) &&
608 only_mappable_for_reloc(entry->flags))
609 ret = i915_gem_object_pin(obj, vma->vm,
610 entry->alignment,
Daniel Vetter0229da32015-04-14 19:01:54 +0200611 flags & ~PIN_MAPPABLE);
Chris Wilson1690e1e2011-12-14 13:57:08 +0100612 if (ret)
613 return ret;
614
Chris Wilson7788a762012-08-24 19:18:18 +0100615 entry->flags |= __EXEC_OBJECT_HAS_PIN;
616
Chris Wilson82b6b6d2014-08-09 17:37:24 +0100617 if (entry->flags & EXEC_OBJECT_NEEDS_FENCE) {
618 ret = i915_gem_object_get_fence(obj);
619 if (ret)
620 return ret;
Chris Wilson1690e1e2011-12-14 13:57:08 +0100621
Chris Wilson82b6b6d2014-08-09 17:37:24 +0100622 if (i915_gem_object_pin_fence(obj))
623 entry->flags |= __EXEC_OBJECT_HAS_FENCE;
Chris Wilson1690e1e2011-12-14 13:57:08 +0100624 }
625
Ben Widawsky27173f12013-08-14 11:38:36 +0200626 if (entry->offset != vma->node.start) {
627 entry->offset = vma->node.start;
Daniel Vettered5982e2013-01-17 22:23:36 +0100628 *need_reloc = true;
629 }
630
631 if (entry->flags & EXEC_OBJECT_WRITE) {
632 obj->base.pending_read_domains = I915_GEM_DOMAIN_RENDER;
633 obj->base.pending_write_domain = I915_GEM_DOMAIN_RENDER;
634 }
635
Chris Wilson1690e1e2011-12-14 13:57:08 +0100636 return 0;
Chris Wilson7788a762012-08-24 19:18:18 +0100637}
Chris Wilson1690e1e2011-12-14 13:57:08 +0100638
Chris Wilsond23db882014-05-23 08:48:08 +0200639static bool
Chris Wilsone6a84462014-08-11 12:00:12 +0200640need_reloc_mappable(struct i915_vma *vma)
641{
642 struct drm_i915_gem_exec_object2 *entry = vma->exec_entry;
643
644 if (entry->relocation_count == 0)
645 return false;
646
647 if (!i915_is_ggtt(vma->vm))
648 return false;
649
650 /* See also use_cpu_reloc() */
651 if (HAS_LLC(vma->obj->base.dev))
652 return false;
653
654 if (vma->obj->base.write_domain == I915_GEM_DOMAIN_CPU)
655 return false;
656
657 return true;
658}
659
660static bool
661eb_vma_misplaced(struct i915_vma *vma)
Chris Wilsond23db882014-05-23 08:48:08 +0200662{
663 struct drm_i915_gem_exec_object2 *entry = vma->exec_entry;
664 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilsond23db882014-05-23 08:48:08 +0200665
Chris Wilsone6a84462014-08-11 12:00:12 +0200666 WARN_ON(entry->flags & __EXEC_OBJECT_NEEDS_MAP &&
Chris Wilsond23db882014-05-23 08:48:08 +0200667 !i915_is_ggtt(vma->vm));
668
669 if (entry->alignment &&
670 vma->node.start & (entry->alignment - 1))
671 return true;
672
Chris Wilsond23db882014-05-23 08:48:08 +0200673 if (entry->flags & __EXEC_OBJECT_NEEDS_BIAS &&
674 vma->node.start < BATCH_OFFSET_BIAS)
675 return true;
676
Chris Wilsonedf4427b2015-01-14 11:20:56 +0000677 /* avoid costly ping-pong once a batch bo ended up non-mappable */
678 if (entry->flags & __EXEC_OBJECT_NEEDS_MAP && !obj->map_and_fenceable)
679 return !only_mappable_for_reloc(entry->flags);
680
Michel Thierry101b5062015-10-01 13:33:57 +0100681 if ((entry->flags & EXEC_OBJECT_SUPPORTS_48B_ADDRESS) == 0 &&
682 (vma->node.start + vma->node.size - 1) >> 32)
683 return true;
684
Chris Wilsond23db882014-05-23 08:48:08 +0200685 return false;
686}
687
Chris Wilson54cf91d2010-11-25 18:00:26 +0000688static int
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100689i915_gem_execbuffer_reserve(struct intel_engine_cs *ring,
Ben Widawsky27173f12013-08-14 11:38:36 +0200690 struct list_head *vmas,
David Weinehallb1b38272015-05-20 17:00:13 +0300691 struct intel_context *ctx,
Daniel Vettered5982e2013-01-17 22:23:36 +0100692 bool *need_relocs)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000693{
Chris Wilson432e58e2010-11-25 19:32:06 +0000694 struct drm_i915_gem_object *obj;
Ben Widawsky27173f12013-08-14 11:38:36 +0200695 struct i915_vma *vma;
Ben Widawsky68c8c172013-09-11 14:57:50 -0700696 struct i915_address_space *vm;
Ben Widawsky27173f12013-08-14 11:38:36 +0200697 struct list_head ordered_vmas;
Chris Wilson7788a762012-08-24 19:18:18 +0100698 bool has_fenced_gpu_access = INTEL_INFO(ring->dev)->gen < 4;
699 int retry;
Chris Wilson6fe4f142011-01-10 17:35:37 +0000700
Chris Wilson227f7822014-05-15 10:41:42 +0100701 i915_gem_retire_requests_ring(ring);
702
Ben Widawsky68c8c172013-09-11 14:57:50 -0700703 vm = list_first_entry(vmas, struct i915_vma, exec_list)->vm;
704
Ben Widawsky27173f12013-08-14 11:38:36 +0200705 INIT_LIST_HEAD(&ordered_vmas);
706 while (!list_empty(vmas)) {
Chris Wilson6fe4f142011-01-10 17:35:37 +0000707 struct drm_i915_gem_exec_object2 *entry;
708 bool need_fence, need_mappable;
709
Ben Widawsky27173f12013-08-14 11:38:36 +0200710 vma = list_first_entry(vmas, struct i915_vma, exec_list);
711 obj = vma->obj;
712 entry = vma->exec_entry;
Chris Wilson6fe4f142011-01-10 17:35:37 +0000713
David Weinehallb1b38272015-05-20 17:00:13 +0300714 if (ctx->flags & CONTEXT_NO_ZEROMAP)
715 entry->flags |= __EXEC_OBJECT_NEEDS_BIAS;
716
Chris Wilson82b6b6d2014-08-09 17:37:24 +0100717 if (!has_fenced_gpu_access)
718 entry->flags &= ~EXEC_OBJECT_NEEDS_FENCE;
Chris Wilson6fe4f142011-01-10 17:35:37 +0000719 need_fence =
Chris Wilson6fe4f142011-01-10 17:35:37 +0000720 entry->flags & EXEC_OBJECT_NEEDS_FENCE &&
721 obj->tiling_mode != I915_TILING_NONE;
Ben Widawsky27173f12013-08-14 11:38:36 +0200722 need_mappable = need_fence || need_reloc_mappable(vma);
Chris Wilson6fe4f142011-01-10 17:35:37 +0000723
Chris Wilsone6a84462014-08-11 12:00:12 +0200724 if (need_mappable) {
725 entry->flags |= __EXEC_OBJECT_NEEDS_MAP;
Ben Widawsky27173f12013-08-14 11:38:36 +0200726 list_move(&vma->exec_list, &ordered_vmas);
Chris Wilsone6a84462014-08-11 12:00:12 +0200727 } else
Ben Widawsky27173f12013-08-14 11:38:36 +0200728 list_move_tail(&vma->exec_list, &ordered_vmas);
Chris Wilson595dad72011-01-13 11:03:48 +0000729
Daniel Vettered5982e2013-01-17 22:23:36 +0100730 obj->base.pending_read_domains = I915_GEM_GPU_DOMAINS & ~I915_GEM_DOMAIN_COMMAND;
Chris Wilson595dad72011-01-13 11:03:48 +0000731 obj->base.pending_write_domain = 0;
Chris Wilson6fe4f142011-01-10 17:35:37 +0000732 }
Ben Widawsky27173f12013-08-14 11:38:36 +0200733 list_splice(&ordered_vmas, vmas);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000734
735 /* Attempt to pin all of the buffers into the GTT.
736 * This is done in 3 phases:
737 *
738 * 1a. Unbind all objects that do not match the GTT constraints for
739 * the execbuffer (fenceable, mappable, alignment etc).
740 * 1b. Increment pin count for already bound objects.
741 * 2. Bind new objects.
742 * 3. Decrement pin count.
743 *
Chris Wilson7788a762012-08-24 19:18:18 +0100744 * This avoid unnecessary unbinding of later objects in order to make
Chris Wilson54cf91d2010-11-25 18:00:26 +0000745 * room for the earlier objects *unless* we need to defragment.
746 */
747 retry = 0;
748 do {
Chris Wilson7788a762012-08-24 19:18:18 +0100749 int ret = 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000750
751 /* Unbind any ill-fitting objects or pin. */
Ben Widawsky27173f12013-08-14 11:38:36 +0200752 list_for_each_entry(vma, vmas, exec_list) {
Ben Widawsky27173f12013-08-14 11:38:36 +0200753 if (!drm_mm_node_allocated(&vma->node))
Chris Wilson54cf91d2010-11-25 18:00:26 +0000754 continue;
755
Chris Wilsone6a84462014-08-11 12:00:12 +0200756 if (eb_vma_misplaced(vma))
Ben Widawsky27173f12013-08-14 11:38:36 +0200757 ret = i915_vma_unbind(vma);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000758 else
Ben Widawsky27173f12013-08-14 11:38:36 +0200759 ret = i915_gem_execbuffer_reserve_vma(vma, ring, need_relocs);
Chris Wilson432e58e2010-11-25 19:32:06 +0000760 if (ret)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000761 goto err;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000762 }
763
764 /* Bind fresh objects */
Ben Widawsky27173f12013-08-14 11:38:36 +0200765 list_for_each_entry(vma, vmas, exec_list) {
766 if (drm_mm_node_allocated(&vma->node))
Chris Wilson1690e1e2011-12-14 13:57:08 +0100767 continue;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000768
Ben Widawsky27173f12013-08-14 11:38:36 +0200769 ret = i915_gem_execbuffer_reserve_vma(vma, ring, need_relocs);
Chris Wilson7788a762012-08-24 19:18:18 +0100770 if (ret)
771 goto err;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000772 }
773
Chris Wilsona415d352013-11-26 11:23:15 +0000774err:
Chris Wilson6c085a72012-08-20 11:40:46 +0200775 if (ret != -ENOSPC || retry++)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000776 return ret;
777
Chris Wilsona415d352013-11-26 11:23:15 +0000778 /* Decrement pin count for bound objects */
779 list_for_each_entry(vma, vmas, exec_list)
780 i915_gem_execbuffer_unreserve_vma(vma);
781
Ben Widawsky68c8c172013-09-11 14:57:50 -0700782 ret = i915_gem_evict_vm(vm, true);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000783 if (ret)
784 return ret;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000785 } while (1);
786}
787
788static int
789i915_gem_execbuffer_relocate_slow(struct drm_device *dev,
Daniel Vettered5982e2013-01-17 22:23:36 +0100790 struct drm_i915_gem_execbuffer2 *args,
Chris Wilson54cf91d2010-11-25 18:00:26 +0000791 struct drm_file *file,
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100792 struct intel_engine_cs *ring,
Ben Widawsky27173f12013-08-14 11:38:36 +0200793 struct eb_vmas *eb,
David Weinehallb1b38272015-05-20 17:00:13 +0300794 struct drm_i915_gem_exec_object2 *exec,
795 struct intel_context *ctx)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000796{
797 struct drm_i915_gem_relocation_entry *reloc;
Ben Widawsky27173f12013-08-14 11:38:36 +0200798 struct i915_address_space *vm;
799 struct i915_vma *vma;
Daniel Vettered5982e2013-01-17 22:23:36 +0100800 bool need_relocs;
Chris Wilsondd6864a2011-01-12 23:49:13 +0000801 int *reloc_offset;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000802 int i, total, ret;
Daniel Vetterb205ca52013-09-19 14:00:11 +0200803 unsigned count = args->buffer_count;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000804
Ben Widawsky27173f12013-08-14 11:38:36 +0200805 vm = list_first_entry(&eb->vmas, struct i915_vma, exec_list)->vm;
806
Chris Wilson67731b82010-12-08 10:38:14 +0000807 /* We may process another execbuffer during the unlock... */
Ben Widawsky27173f12013-08-14 11:38:36 +0200808 while (!list_empty(&eb->vmas)) {
809 vma = list_first_entry(&eb->vmas, struct i915_vma, exec_list);
810 list_del_init(&vma->exec_list);
Chris Wilsona415d352013-11-26 11:23:15 +0000811 i915_gem_execbuffer_unreserve_vma(vma);
Ben Widawsky27173f12013-08-14 11:38:36 +0200812 drm_gem_object_unreference(&vma->obj->base);
Chris Wilson67731b82010-12-08 10:38:14 +0000813 }
814
Chris Wilson54cf91d2010-11-25 18:00:26 +0000815 mutex_unlock(&dev->struct_mutex);
816
817 total = 0;
818 for (i = 0; i < count; i++)
Chris Wilson432e58e2010-11-25 19:32:06 +0000819 total += exec[i].relocation_count;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000820
Chris Wilsondd6864a2011-01-12 23:49:13 +0000821 reloc_offset = drm_malloc_ab(count, sizeof(*reloc_offset));
Chris Wilson54cf91d2010-11-25 18:00:26 +0000822 reloc = drm_malloc_ab(total, sizeof(*reloc));
Chris Wilsondd6864a2011-01-12 23:49:13 +0000823 if (reloc == NULL || reloc_offset == NULL) {
824 drm_free_large(reloc);
825 drm_free_large(reloc_offset);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000826 mutex_lock(&dev->struct_mutex);
827 return -ENOMEM;
828 }
829
830 total = 0;
831 for (i = 0; i < count; i++) {
832 struct drm_i915_gem_relocation_entry __user *user_relocs;
Chris Wilson262b6d32013-01-15 16:17:54 +0000833 u64 invalid_offset = (u64)-1;
834 int j;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000835
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200836 user_relocs = to_user_ptr(exec[i].relocs_ptr);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000837
838 if (copy_from_user(reloc+total, user_relocs,
Chris Wilson432e58e2010-11-25 19:32:06 +0000839 exec[i].relocation_count * sizeof(*reloc))) {
Chris Wilson54cf91d2010-11-25 18:00:26 +0000840 ret = -EFAULT;
841 mutex_lock(&dev->struct_mutex);
842 goto err;
843 }
844
Chris Wilson262b6d32013-01-15 16:17:54 +0000845 /* As we do not update the known relocation offsets after
846 * relocating (due to the complexities in lock handling),
847 * we need to mark them as invalid now so that we force the
848 * relocation processing next time. Just in case the target
849 * object is evicted and then rebound into its old
850 * presumed_offset before the next execbuffer - if that
851 * happened we would make the mistake of assuming that the
852 * relocations were valid.
853 */
854 for (j = 0; j < exec[i].relocation_count; j++) {
Chris Wilson9aab8bf2014-05-23 10:45:52 +0100855 if (__copy_to_user(&user_relocs[j].presumed_offset,
856 &invalid_offset,
857 sizeof(invalid_offset))) {
Chris Wilson262b6d32013-01-15 16:17:54 +0000858 ret = -EFAULT;
859 mutex_lock(&dev->struct_mutex);
860 goto err;
861 }
862 }
863
Chris Wilsondd6864a2011-01-12 23:49:13 +0000864 reloc_offset[i] = total;
Chris Wilson432e58e2010-11-25 19:32:06 +0000865 total += exec[i].relocation_count;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000866 }
867
868 ret = i915_mutex_lock_interruptible(dev);
869 if (ret) {
870 mutex_lock(&dev->struct_mutex);
871 goto err;
872 }
873
Chris Wilson67731b82010-12-08 10:38:14 +0000874 /* reacquire the objects */
Chris Wilson67731b82010-12-08 10:38:14 +0000875 eb_reset(eb);
Ben Widawsky27173f12013-08-14 11:38:36 +0200876 ret = eb_lookup_vmas(eb, exec, args, vm, file);
Chris Wilson3b96eff2013-01-08 10:53:14 +0000877 if (ret)
878 goto err;
Chris Wilson67731b82010-12-08 10:38:14 +0000879
Daniel Vettered5982e2013-01-17 22:23:36 +0100880 need_relocs = (args->flags & I915_EXEC_NO_RELOC) == 0;
David Weinehallb1b38272015-05-20 17:00:13 +0300881 ret = i915_gem_execbuffer_reserve(ring, &eb->vmas, ctx, &need_relocs);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000882 if (ret)
883 goto err;
884
Ben Widawsky27173f12013-08-14 11:38:36 +0200885 list_for_each_entry(vma, &eb->vmas, exec_list) {
886 int offset = vma->exec_entry - exec;
887 ret = i915_gem_execbuffer_relocate_vma_slow(vma, eb,
888 reloc + reloc_offset[offset]);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000889 if (ret)
890 goto err;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000891 }
892
893 /* Leave the user relocations as are, this is the painfully slow path,
894 * and we want to avoid the complication of dropping the lock whilst
895 * having buffers reserved in the aperture and so causing spurious
896 * ENOSPC for random operations.
897 */
898
899err:
900 drm_free_large(reloc);
Chris Wilsondd6864a2011-01-12 23:49:13 +0000901 drm_free_large(reloc_offset);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000902 return ret;
903}
904
Chris Wilson54cf91d2010-11-25 18:00:26 +0000905static int
John Harrison535fbe82015-05-29 17:43:32 +0100906i915_gem_execbuffer_move_to_gpu(struct drm_i915_gem_request *req,
Ben Widawsky27173f12013-08-14 11:38:36 +0200907 struct list_head *vmas)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000908{
John Harrison535fbe82015-05-29 17:43:32 +0100909 const unsigned other_rings = ~intel_ring_flag(req->ring);
Ben Widawsky27173f12013-08-14 11:38:36 +0200910 struct i915_vma *vma;
Daniel Vetter6ac42f42012-07-21 12:25:01 +0200911 uint32_t flush_domains = 0;
Chris Wilson000433b2013-08-08 14:41:09 +0100912 bool flush_chipset = false;
Chris Wilson432e58e2010-11-25 19:32:06 +0000913 int ret;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000914
Ben Widawsky27173f12013-08-14 11:38:36 +0200915 list_for_each_entry(vma, vmas, exec_list) {
916 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilson03ade512015-04-27 13:41:18 +0100917
918 if (obj->active & other_rings) {
John Harrison91af1272015-06-18 13:14:56 +0100919 ret = i915_gem_object_sync(obj, req->ring, &req);
Chris Wilson03ade512015-04-27 13:41:18 +0100920 if (ret)
921 return ret;
922 }
Daniel Vetter6ac42f42012-07-21 12:25:01 +0200923
924 if (obj->base.write_domain & I915_GEM_DOMAIN_CPU)
Chris Wilson000433b2013-08-08 14:41:09 +0100925 flush_chipset |= i915_gem_clflush_object(obj, false);
Daniel Vetter6ac42f42012-07-21 12:25:01 +0200926
Daniel Vetter6ac42f42012-07-21 12:25:01 +0200927 flush_domains |= obj->base.write_domain;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000928 }
929
Chris Wilson000433b2013-08-08 14:41:09 +0100930 if (flush_chipset)
John Harrison535fbe82015-05-29 17:43:32 +0100931 i915_gem_chipset_flush(req->ring->dev);
Daniel Vetter6ac42f42012-07-21 12:25:01 +0200932
933 if (flush_domains & I915_GEM_DOMAIN_GTT)
934 wmb();
935
Chris Wilson09cf7c92012-07-13 14:14:08 +0100936 /* Unconditionally invalidate gpu caches and ensure that we do flush
937 * any residual writes from the previous batch.
938 */
John Harrison2f200552015-05-29 17:43:53 +0100939 return intel_ring_invalidate_all_caches(req);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000940}
941
Chris Wilson432e58e2010-11-25 19:32:06 +0000942static bool
943i915_gem_check_execbuffer(struct drm_i915_gem_execbuffer2 *exec)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000944{
Daniel Vettered5982e2013-01-17 22:23:36 +0100945 if (exec->flags & __I915_EXEC_UNKNOWN_FLAGS)
946 return false;
947
Chris Wilson2f5945b2015-10-06 11:39:55 +0100948 /* Kernel clipping was a DRI1 misfeature */
949 if (exec->num_cliprects || exec->cliprects_ptr)
950 return false;
951
952 if (exec->DR4 == 0xffffffff) {
953 DRM_DEBUG("UXA submitting garbage DR4, fixing up\n");
954 exec->DR4 = 0;
955 }
956 if (exec->DR1 || exec->DR4)
957 return false;
958
959 if ((exec->batch_start_offset | exec->batch_len) & 0x7)
960 return false;
961
962 return true;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000963}
964
965static int
Chris Wilsonad19f102014-08-10 06:29:08 +0100966validate_exec_list(struct drm_device *dev,
967 struct drm_i915_gem_exec_object2 *exec,
Chris Wilson54cf91d2010-11-25 18:00:26 +0000968 int count)
969{
Daniel Vetterb205ca52013-09-19 14:00:11 +0200970 unsigned relocs_total = 0;
971 unsigned relocs_max = UINT_MAX / sizeof(struct drm_i915_gem_relocation_entry);
Chris Wilsonad19f102014-08-10 06:29:08 +0100972 unsigned invalid_flags;
973 int i;
974
975 invalid_flags = __EXEC_OBJECT_UNKNOWN_FLAGS;
976 if (USES_FULL_PPGTT(dev))
977 invalid_flags |= EXEC_OBJECT_NEEDS_GTT;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000978
979 for (i = 0; i < count; i++) {
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200980 char __user *ptr = to_user_ptr(exec[i].relocs_ptr);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000981 int length; /* limited by fault_in_pages_readable() */
982
Chris Wilsonad19f102014-08-10 06:29:08 +0100983 if (exec[i].flags & invalid_flags)
Daniel Vettered5982e2013-01-17 22:23:36 +0100984 return -EINVAL;
985
Chris Wilson55a97852015-06-19 13:59:46 +0100986 if (exec[i].alignment && !is_power_of_2(exec[i].alignment))
987 return -EINVAL;
988
Kees Cook3118a4f2013-03-11 17:31:45 -0700989 /* First check for malicious input causing overflow in
990 * the worst case where we need to allocate the entire
991 * relocation tree as a single array.
992 */
993 if (exec[i].relocation_count > relocs_max - relocs_total)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000994 return -EINVAL;
Kees Cook3118a4f2013-03-11 17:31:45 -0700995 relocs_total += exec[i].relocation_count;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000996
997 length = exec[i].relocation_count *
998 sizeof(struct drm_i915_gem_relocation_entry);
Kees Cook30587532013-03-11 14:37:35 -0700999 /*
1000 * We must check that the entire relocation array is safe
1001 * to read, but since we may need to update the presumed
1002 * offsets during execution, check for full write access.
1003 */
Chris Wilson54cf91d2010-11-25 18:00:26 +00001004 if (!access_ok(VERIFY_WRITE, ptr, length))
1005 return -EFAULT;
1006
Jani Nikulad330a952014-01-21 11:24:25 +02001007 if (likely(!i915.prefault_disable)) {
Xiong Zhang0b74b502013-07-19 13:51:24 +08001008 if (fault_in_multipages_readable(ptr, length))
1009 return -EFAULT;
1010 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001011 }
1012
1013 return 0;
1014}
1015
Oscar Mateo273497e2014-05-22 14:13:37 +01001016static struct intel_context *
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001017i915_gem_validate_context(struct drm_device *dev, struct drm_file *file,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001018 struct intel_engine_cs *ring, const u32 ctx_id)
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001019{
Oscar Mateo273497e2014-05-22 14:13:37 +01001020 struct intel_context *ctx = NULL;
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001021 struct i915_ctx_hang_stats *hs;
1022
Oscar Mateo821d66d2014-07-03 16:28:00 +01001023 if (ring->id != RCS && ctx_id != DEFAULT_CONTEXT_HANDLE)
Daniel Vetter7c9c4b82013-12-18 16:37:49 +01001024 return ERR_PTR(-EINVAL);
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001025
Ben Widawsky41bde552013-12-06 14:11:21 -08001026 ctx = i915_gem_context_get(file->driver_priv, ctx_id);
Ben Widawsky72ad5c42014-01-02 19:50:27 -10001027 if (IS_ERR(ctx))
Ben Widawsky41bde552013-12-06 14:11:21 -08001028 return ctx;
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001029
Ben Widawsky41bde552013-12-06 14:11:21 -08001030 hs = &ctx->hang_stats;
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001031 if (hs->banned) {
1032 DRM_DEBUG("Context %u tried to submit while banned\n", ctx_id);
Ben Widawsky41bde552013-12-06 14:11:21 -08001033 return ERR_PTR(-EIO);
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001034 }
1035
Oscar Mateoec3e9962014-07-24 17:04:18 +01001036 if (i915.enable_execlists && !ctx->engine[ring->id].state) {
Nick Hoathe84fe802015-09-11 12:53:46 +01001037 int ret = intel_lr_context_deferred_alloc(ctx, ring);
Oscar Mateoec3e9962014-07-24 17:04:18 +01001038 if (ret) {
1039 DRM_DEBUG("Could not create LRC %u: %d\n", ctx_id, ret);
1040 return ERR_PTR(ret);
1041 }
1042 }
1043
Ben Widawsky41bde552013-12-06 14:11:21 -08001044 return ctx;
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001045}
1046
Oscar Mateoba8b7cc2014-07-24 17:04:33 +01001047void
Ben Widawsky27173f12013-08-14 11:38:36 +02001048i915_gem_execbuffer_move_to_active(struct list_head *vmas,
John Harrison8a8edb52015-05-29 17:43:33 +01001049 struct drm_i915_gem_request *req)
Chris Wilson432e58e2010-11-25 19:32:06 +00001050{
John Harrison8a8edb52015-05-29 17:43:33 +01001051 struct intel_engine_cs *ring = i915_gem_request_get_ring(req);
Ben Widawsky27173f12013-08-14 11:38:36 +02001052 struct i915_vma *vma;
Chris Wilson432e58e2010-11-25 19:32:06 +00001053
Ben Widawsky27173f12013-08-14 11:38:36 +02001054 list_for_each_entry(vma, vmas, exec_list) {
Chris Wilson82b6b6d2014-08-09 17:37:24 +01001055 struct drm_i915_gem_exec_object2 *entry = vma->exec_entry;
Ben Widawsky27173f12013-08-14 11:38:36 +02001056 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilson69c2fc82012-07-20 12:41:03 +01001057 u32 old_read = obj->base.read_domains;
1058 u32 old_write = obj->base.write_domain;
Chris Wilsondb53a302011-02-03 11:57:46 +00001059
Chris Wilson51bc1402015-08-31 15:10:39 +01001060 obj->dirty = 1; /* be paranoid */
Chris Wilson432e58e2010-11-25 19:32:06 +00001061 obj->base.write_domain = obj->base.pending_write_domain;
Daniel Vettered5982e2013-01-17 22:23:36 +01001062 if (obj->base.write_domain == 0)
1063 obj->base.pending_read_domains |= obj->base.read_domains;
1064 obj->base.read_domains = obj->base.pending_read_domains;
Chris Wilson432e58e2010-11-25 19:32:06 +00001065
John Harrisonb2af0372015-05-29 17:43:50 +01001066 i915_vma_move_to_active(vma, req);
Chris Wilson432e58e2010-11-25 19:32:06 +00001067 if (obj->base.write_domain) {
John Harrison97b2a6a2014-11-24 18:49:26 +00001068 i915_gem_request_assign(&obj->last_write_req, req);
Daniel Vetterf99d7062014-06-19 16:01:59 +02001069
Rodrigo Vivi77a0d1c2015-06-18 11:43:24 -07001070 intel_fb_obj_invalidate(obj, ORIGIN_CS);
Chris Wilsonc8725f32014-03-17 12:21:55 +00001071
1072 /* update for the implicit flush after a batch */
1073 obj->base.write_domain &= ~I915_GEM_GPU_DOMAINS;
Chris Wilson432e58e2010-11-25 19:32:06 +00001074 }
Chris Wilson82b6b6d2014-08-09 17:37:24 +01001075 if (entry->flags & EXEC_OBJECT_NEEDS_FENCE) {
John Harrison97b2a6a2014-11-24 18:49:26 +00001076 i915_gem_request_assign(&obj->last_fenced_req, req);
Chris Wilson82b6b6d2014-08-09 17:37:24 +01001077 if (entry->flags & __EXEC_OBJECT_HAS_FENCE) {
1078 struct drm_i915_private *dev_priv = to_i915(ring->dev);
1079 list_move_tail(&dev_priv->fence_regs[obj->fence_reg].lru_list,
1080 &dev_priv->mm.fence_list);
1081 }
1082 }
Chris Wilson432e58e2010-11-25 19:32:06 +00001083
Chris Wilsondb53a302011-02-03 11:57:46 +00001084 trace_i915_gem_object_change_domain(obj, old_read, old_write);
Chris Wilson432e58e2010-11-25 19:32:06 +00001085 }
1086}
1087
Oscar Mateoba8b7cc2014-07-24 17:04:33 +01001088void
John Harrisonadeca762015-05-29 17:43:28 +01001089i915_gem_execbuffer_retire_commands(struct i915_execbuffer_params *params)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001090{
Daniel Vettercc889e02012-06-13 20:45:19 +02001091 /* Unconditionally force add_request to emit a full flush. */
John Harrisonadeca762015-05-29 17:43:28 +01001092 params->ring->gpu_caches_dirty = true;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001093
Chris Wilson432e58e2010-11-25 19:32:06 +00001094 /* Add a breadcrumb for the completion of the batch buffer */
John Harrisonfcfa423c2015-05-29 17:44:12 +01001095 __i915_add_request(params->request, params->batch_obj, true);
Chris Wilson432e58e2010-11-25 19:32:06 +00001096}
Chris Wilson54cf91d2010-11-25 18:00:26 +00001097
1098static int
Eric Anholtae662d32012-01-03 09:23:29 -08001099i915_reset_gen7_sol_offsets(struct drm_device *dev,
John Harrison2f200552015-05-29 17:43:53 +01001100 struct drm_i915_gem_request *req)
Eric Anholtae662d32012-01-03 09:23:29 -08001101{
John Harrison2f200552015-05-29 17:43:53 +01001102 struct intel_engine_cs *ring = req->ring;
Jani Nikula50227e12014-03-31 14:27:21 +03001103 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholtae662d32012-01-03 09:23:29 -08001104 int ret, i;
1105
Daniel Vetter9d662da2014-04-24 08:09:09 +02001106 if (!IS_GEN7(dev) || ring != &dev_priv->ring[RCS]) {
1107 DRM_DEBUG("sol reset is gen7/rcs only\n");
1108 return -EINVAL;
1109 }
Eric Anholtae662d32012-01-03 09:23:29 -08001110
John Harrison5fb9de12015-05-29 17:44:07 +01001111 ret = intel_ring_begin(req, 4 * 3);
Eric Anholtae662d32012-01-03 09:23:29 -08001112 if (ret)
1113 return ret;
1114
1115 for (i = 0; i < 4; i++) {
1116 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
1117 intel_ring_emit(ring, GEN7_SO_WRITE_OFFSET(i));
1118 intel_ring_emit(ring, 0);
1119 }
1120
1121 intel_ring_advance(ring);
1122
1123 return 0;
1124}
1125
Brad Volkin71745372014-12-11 12:13:12 -08001126static struct drm_i915_gem_object*
1127i915_gem_execbuffer_parse(struct intel_engine_cs *ring,
1128 struct drm_i915_gem_exec_object2 *shadow_exec_entry,
1129 struct eb_vmas *eb,
1130 struct drm_i915_gem_object *batch_obj,
1131 u32 batch_start_offset,
1132 u32 batch_len,
Chris Wilson17cabf52015-01-14 11:20:57 +00001133 bool is_master)
Brad Volkin71745372014-12-11 12:13:12 -08001134{
Brad Volkin71745372014-12-11 12:13:12 -08001135 struct drm_i915_gem_object *shadow_batch_obj;
Chris Wilson17cabf52015-01-14 11:20:57 +00001136 struct i915_vma *vma;
Brad Volkin71745372014-12-11 12:13:12 -08001137 int ret;
1138
Chris Wilson06fbca72015-04-07 16:20:36 +01001139 shadow_batch_obj = i915_gem_batch_pool_get(&ring->batch_pool,
Chris Wilson17cabf52015-01-14 11:20:57 +00001140 PAGE_ALIGN(batch_len));
Brad Volkin71745372014-12-11 12:13:12 -08001141 if (IS_ERR(shadow_batch_obj))
1142 return shadow_batch_obj;
1143
1144 ret = i915_parse_cmds(ring,
1145 batch_obj,
1146 shadow_batch_obj,
1147 batch_start_offset,
1148 batch_len,
1149 is_master);
Chris Wilson17cabf52015-01-14 11:20:57 +00001150 if (ret)
1151 goto err;
Brad Volkin71745372014-12-11 12:13:12 -08001152
Chris Wilson17cabf52015-01-14 11:20:57 +00001153 ret = i915_gem_obj_ggtt_pin(shadow_batch_obj, 0, 0);
1154 if (ret)
1155 goto err;
Brad Volkin71745372014-12-11 12:13:12 -08001156
Chris Wilsonde4e7832015-04-07 16:20:35 +01001157 i915_gem_object_unpin_pages(shadow_batch_obj);
1158
Chris Wilson17cabf52015-01-14 11:20:57 +00001159 memset(shadow_exec_entry, 0, sizeof(*shadow_exec_entry));
Brad Volkin71745372014-12-11 12:13:12 -08001160
Chris Wilson17cabf52015-01-14 11:20:57 +00001161 vma = i915_gem_obj_to_ggtt(shadow_batch_obj);
1162 vma->exec_entry = shadow_exec_entry;
Chris Wilsonde4e7832015-04-07 16:20:35 +01001163 vma->exec_entry->flags = __EXEC_OBJECT_HAS_PIN;
Chris Wilson17cabf52015-01-14 11:20:57 +00001164 drm_gem_object_reference(&shadow_batch_obj->base);
1165 list_add_tail(&vma->exec_list, &eb->vmas);
Brad Volkin71745372014-12-11 12:13:12 -08001166
Chris Wilson17cabf52015-01-14 11:20:57 +00001167 shadow_batch_obj->base.pending_read_domains = I915_GEM_DOMAIN_COMMAND;
Brad Volkin71745372014-12-11 12:13:12 -08001168
Chris Wilson17cabf52015-01-14 11:20:57 +00001169 return shadow_batch_obj;
1170
1171err:
Chris Wilsonde4e7832015-04-07 16:20:35 +01001172 i915_gem_object_unpin_pages(shadow_batch_obj);
Chris Wilson17cabf52015-01-14 11:20:57 +00001173 if (ret == -EACCES) /* unhandled chained batch */
1174 return batch_obj;
1175 else
1176 return ERR_PTR(ret);
Brad Volkin71745372014-12-11 12:13:12 -08001177}
Chris Wilson5c6c6002014-09-06 10:28:27 +01001178
Oscar Mateoa83014d2014-07-24 17:04:21 +01001179int
John Harrison5f19e2b2015-05-29 17:43:27 +01001180i915_gem_ringbuffer_submission(struct i915_execbuffer_params *params,
Oscar Mateoa83014d2014-07-24 17:04:21 +01001181 struct drm_i915_gem_execbuffer2 *args,
John Harrison5f19e2b2015-05-29 17:43:27 +01001182 struct list_head *vmas)
Oscar Mateo78382592014-07-03 16:28:05 +01001183{
John Harrison5f19e2b2015-05-29 17:43:27 +01001184 struct drm_device *dev = params->dev;
1185 struct intel_engine_cs *ring = params->ring;
Oscar Mateo78382592014-07-03 16:28:05 +01001186 struct drm_i915_private *dev_priv = dev->dev_private;
John Harrison5f19e2b2015-05-29 17:43:27 +01001187 u64 exec_start, exec_len;
Oscar Mateo78382592014-07-03 16:28:05 +01001188 int instp_mode;
1189 u32 instp_mask;
Chris Wilson2f5945b2015-10-06 11:39:55 +01001190 int ret;
Oscar Mateo78382592014-07-03 16:28:05 +01001191
John Harrison535fbe82015-05-29 17:43:32 +01001192 ret = i915_gem_execbuffer_move_to_gpu(params->request, vmas);
Oscar Mateo78382592014-07-03 16:28:05 +01001193 if (ret)
Chris Wilson2f5945b2015-10-06 11:39:55 +01001194 return ret;
Oscar Mateo78382592014-07-03 16:28:05 +01001195
John Harrisonba01cc92015-05-29 17:43:41 +01001196 ret = i915_switch_context(params->request);
Oscar Mateo78382592014-07-03 16:28:05 +01001197 if (ret)
Chris Wilson2f5945b2015-10-06 11:39:55 +01001198 return ret;
Oscar Mateo78382592014-07-03 16:28:05 +01001199
John Harrison5f19e2b2015-05-29 17:43:27 +01001200 WARN(params->ctx->ppgtt && params->ctx->ppgtt->pd_dirty_rings & (1<<ring->id),
Daniel Vetter92588112015-04-14 17:35:19 +02001201 "%s didn't clear reload\n", ring->name);
Ben Widawsky563222a2015-03-19 12:53:28 +00001202
Oscar Mateo78382592014-07-03 16:28:05 +01001203 instp_mode = args->flags & I915_EXEC_CONSTANTS_MASK;
1204 instp_mask = I915_EXEC_CONSTANTS_MASK;
1205 switch (instp_mode) {
1206 case I915_EXEC_CONSTANTS_REL_GENERAL:
1207 case I915_EXEC_CONSTANTS_ABSOLUTE:
1208 case I915_EXEC_CONSTANTS_REL_SURFACE:
1209 if (instp_mode != 0 && ring != &dev_priv->ring[RCS]) {
1210 DRM_DEBUG("non-0 rel constants mode on non-RCS\n");
Chris Wilson2f5945b2015-10-06 11:39:55 +01001211 return -EINVAL;
Oscar Mateo78382592014-07-03 16:28:05 +01001212 }
1213
1214 if (instp_mode != dev_priv->relative_constants_mode) {
1215 if (INTEL_INFO(dev)->gen < 4) {
1216 DRM_DEBUG("no rel constants on pre-gen4\n");
Chris Wilson2f5945b2015-10-06 11:39:55 +01001217 return -EINVAL;
Oscar Mateo78382592014-07-03 16:28:05 +01001218 }
1219
1220 if (INTEL_INFO(dev)->gen > 5 &&
1221 instp_mode == I915_EXEC_CONSTANTS_REL_SURFACE) {
1222 DRM_DEBUG("rel surface constants mode invalid on gen5+\n");
Chris Wilson2f5945b2015-10-06 11:39:55 +01001223 return -EINVAL;
Oscar Mateo78382592014-07-03 16:28:05 +01001224 }
1225
1226 /* The HW changed the meaning on this bit on gen6 */
1227 if (INTEL_INFO(dev)->gen >= 6)
1228 instp_mask &= ~I915_EXEC_CONSTANTS_REL_SURFACE;
1229 }
1230 break;
1231 default:
1232 DRM_DEBUG("execbuf with unknown constants: %d\n", instp_mode);
Chris Wilson2f5945b2015-10-06 11:39:55 +01001233 return -EINVAL;
Oscar Mateo78382592014-07-03 16:28:05 +01001234 }
1235
1236 if (ring == &dev_priv->ring[RCS] &&
Chris Wilson2f5945b2015-10-06 11:39:55 +01001237 instp_mode != dev_priv->relative_constants_mode) {
John Harrison5fb9de12015-05-29 17:44:07 +01001238 ret = intel_ring_begin(params->request, 4);
Oscar Mateo78382592014-07-03 16:28:05 +01001239 if (ret)
Chris Wilson2f5945b2015-10-06 11:39:55 +01001240 return ret;
Oscar Mateo78382592014-07-03 16:28:05 +01001241
1242 intel_ring_emit(ring, MI_NOOP);
1243 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
1244 intel_ring_emit(ring, INSTPM);
1245 intel_ring_emit(ring, instp_mask << 16 | instp_mode);
1246 intel_ring_advance(ring);
1247
1248 dev_priv->relative_constants_mode = instp_mode;
1249 }
1250
1251 if (args->flags & I915_EXEC_GEN7_SOL_RESET) {
John Harrison2f200552015-05-29 17:43:53 +01001252 ret = i915_reset_gen7_sol_offsets(dev, params->request);
Oscar Mateo78382592014-07-03 16:28:05 +01001253 if (ret)
Chris Wilson2f5945b2015-10-06 11:39:55 +01001254 return ret;
Oscar Mateo78382592014-07-03 16:28:05 +01001255 }
1256
John Harrison5f19e2b2015-05-29 17:43:27 +01001257 exec_len = args->batch_len;
1258 exec_start = params->batch_obj_vm_offset +
1259 params->args_batch_start_offset;
1260
Chris Wilson2f5945b2015-10-06 11:39:55 +01001261 ret = ring->dispatch_execbuffer(params->request,
1262 exec_start, exec_len,
1263 params->dispatch_flags);
1264 if (ret)
1265 return ret;
Oscar Mateo78382592014-07-03 16:28:05 +01001266
John Harrison95c24162015-05-29 17:43:31 +01001267 trace_i915_gem_ring_dispatch(params->request, params->dispatch_flags);
Oscar Mateo78382592014-07-03 16:28:05 +01001268
John Harrison8a8edb52015-05-29 17:43:33 +01001269 i915_gem_execbuffer_move_to_active(vmas, params->request);
John Harrisonadeca762015-05-29 17:43:28 +01001270 i915_gem_execbuffer_retire_commands(params);
Oscar Mateo78382592014-07-03 16:28:05 +01001271
Chris Wilson2f5945b2015-10-06 11:39:55 +01001272 return 0;
Oscar Mateo78382592014-07-03 16:28:05 +01001273}
1274
Zhao Yakuia8ebba72014-04-17 10:37:40 +08001275/**
1276 * Find one BSD ring to dispatch the corresponding BSD command.
1277 * The Ring ID is returned.
1278 */
1279static int gen8_dispatch_bsd_ring(struct drm_device *dev,
1280 struct drm_file *file)
1281{
1282 struct drm_i915_private *dev_priv = dev->dev_private;
1283 struct drm_i915_file_private *file_priv = file->driver_priv;
1284
1285 /* Check whether the file_priv is using one ring */
1286 if (file_priv->bsd_ring)
1287 return file_priv->bsd_ring->id;
1288 else {
1289 /* If no, use the ping-pong mechanism to select one ring */
1290 int ring_id;
1291
1292 mutex_lock(&dev->struct_mutex);
Daniel Vetterbdf1e7e2014-05-21 17:37:52 +02001293 if (dev_priv->mm.bsd_ring_dispatch_index == 0) {
Zhao Yakuia8ebba72014-04-17 10:37:40 +08001294 ring_id = VCS;
Daniel Vetterbdf1e7e2014-05-21 17:37:52 +02001295 dev_priv->mm.bsd_ring_dispatch_index = 1;
Zhao Yakuia8ebba72014-04-17 10:37:40 +08001296 } else {
1297 ring_id = VCS2;
Daniel Vetterbdf1e7e2014-05-21 17:37:52 +02001298 dev_priv->mm.bsd_ring_dispatch_index = 0;
Zhao Yakuia8ebba72014-04-17 10:37:40 +08001299 }
1300 file_priv->bsd_ring = &dev_priv->ring[ring_id];
1301 mutex_unlock(&dev->struct_mutex);
1302 return ring_id;
1303 }
1304}
1305
Chris Wilsond23db882014-05-23 08:48:08 +02001306static struct drm_i915_gem_object *
1307eb_get_batch(struct eb_vmas *eb)
1308{
1309 struct i915_vma *vma = list_entry(eb->vmas.prev, typeof(*vma), exec_list);
1310
1311 /*
1312 * SNA is doing fancy tricks with compressing batch buffers, which leads
1313 * to negative relocation deltas. Usually that works out ok since the
1314 * relocate address is still positive, except when the batch is placed
1315 * very low in the GTT. Ensure this doesn't happen.
1316 *
1317 * Note that actual hangs have only been observed on gen7, but for
1318 * paranoia do it everywhere.
1319 */
1320 vma->exec_entry->flags |= __EXEC_OBJECT_NEEDS_BIAS;
1321
1322 return vma->obj;
1323}
1324
Eric Anholtae662d32012-01-03 09:23:29 -08001325static int
Chris Wilson54cf91d2010-11-25 18:00:26 +00001326i915_gem_do_execbuffer(struct drm_device *dev, void *data,
1327 struct drm_file *file,
1328 struct drm_i915_gem_execbuffer2 *args,
Ben Widawsky41bde552013-12-06 14:11:21 -08001329 struct drm_i915_gem_exec_object2 *exec)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001330{
Jani Nikula50227e12014-03-31 14:27:21 +03001331 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky27173f12013-08-14 11:38:36 +02001332 struct eb_vmas *eb;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001333 struct drm_i915_gem_object *batch_obj;
Brad Volkin78a42372014-12-11 12:13:09 -08001334 struct drm_i915_gem_exec_object2 shadow_exec_entry;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001335 struct intel_engine_cs *ring;
Oscar Mateo273497e2014-05-22 14:13:37 +01001336 struct intel_context *ctx;
Ben Widawsky41bde552013-12-06 14:11:21 -08001337 struct i915_address_space *vm;
John Harrison5f19e2b2015-05-29 17:43:27 +01001338 struct i915_execbuffer_params params_master; /* XXX: will be removed later */
1339 struct i915_execbuffer_params *params = &params_master;
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001340 const u32 ctx_id = i915_execbuffer2_get_context_id(*args);
John Harrison8e004ef2015-02-13 11:48:10 +00001341 u32 dispatch_flags;
Oscar Mateo78382592014-07-03 16:28:05 +01001342 int ret;
Daniel Vettered5982e2013-01-17 22:23:36 +01001343 bool need_relocs;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001344
Daniel Vettered5982e2013-01-17 22:23:36 +01001345 if (!i915_gem_check_execbuffer(args))
Chris Wilson432e58e2010-11-25 19:32:06 +00001346 return -EINVAL;
Chris Wilson432e58e2010-11-25 19:32:06 +00001347
Chris Wilsonad19f102014-08-10 06:29:08 +01001348 ret = validate_exec_list(dev, exec, args->buffer_count);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001349 if (ret)
1350 return ret;
1351
John Harrison8e004ef2015-02-13 11:48:10 +00001352 dispatch_flags = 0;
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001353 if (args->flags & I915_EXEC_SECURE) {
1354 if (!file->is_master || !capable(CAP_SYS_ADMIN))
1355 return -EPERM;
1356
John Harrison8e004ef2015-02-13 11:48:10 +00001357 dispatch_flags |= I915_DISPATCH_SECURE;
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001358 }
Daniel Vetterb45305f2012-12-17 16:21:27 +01001359 if (args->flags & I915_EXEC_IS_PINNED)
John Harrison8e004ef2015-02-13 11:48:10 +00001360 dispatch_flags |= I915_DISPATCH_PINNED;
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001361
Zhao Yakuib1a93302014-04-17 10:37:36 +08001362 if ((args->flags & I915_EXEC_RING_MASK) > LAST_USER_RING) {
Daniel Vetterff240192012-01-31 21:08:14 +01001363 DRM_DEBUG("execbuf with unknown ring: %d\n",
Chris Wilson54cf91d2010-11-25 18:00:26 +00001364 (int)(args->flags & I915_EXEC_RING_MASK));
1365 return -EINVAL;
1366 }
Ben Widawskyca01b122013-12-06 14:11:00 -08001367
Zhipeng Gong8d360df2015-01-13 08:48:24 +08001368 if (((args->flags & I915_EXEC_RING_MASK) != I915_EXEC_BSD) &&
1369 ((args->flags & I915_EXEC_BSD_MASK) != 0)) {
1370 DRM_DEBUG("execbuf with non bsd ring but with invalid "
1371 "bsd dispatch flags: %d\n", (int)(args->flags));
1372 return -EINVAL;
1373 }
1374
Ben Widawskyca01b122013-12-06 14:11:00 -08001375 if ((args->flags & I915_EXEC_RING_MASK) == I915_EXEC_DEFAULT)
1376 ring = &dev_priv->ring[RCS];
Zhao Yakuia8ebba72014-04-17 10:37:40 +08001377 else if ((args->flags & I915_EXEC_RING_MASK) == I915_EXEC_BSD) {
1378 if (HAS_BSD2(dev)) {
1379 int ring_id;
Zhipeng Gong8d360df2015-01-13 08:48:24 +08001380
1381 switch (args->flags & I915_EXEC_BSD_MASK) {
1382 case I915_EXEC_BSD_DEFAULT:
1383 ring_id = gen8_dispatch_bsd_ring(dev, file);
1384 ring = &dev_priv->ring[ring_id];
1385 break;
1386 case I915_EXEC_BSD_RING1:
1387 ring = &dev_priv->ring[VCS];
1388 break;
1389 case I915_EXEC_BSD_RING2:
1390 ring = &dev_priv->ring[VCS2];
1391 break;
1392 default:
1393 DRM_DEBUG("execbuf with unknown bsd ring: %d\n",
1394 (int)(args->flags & I915_EXEC_BSD_MASK));
1395 return -EINVAL;
1396 }
Zhao Yakuia8ebba72014-04-17 10:37:40 +08001397 } else
1398 ring = &dev_priv->ring[VCS];
1399 } else
Ben Widawskyca01b122013-12-06 14:11:00 -08001400 ring = &dev_priv->ring[(args->flags & I915_EXEC_RING_MASK) - 1];
1401
Chris Wilsona15817c2012-05-11 14:29:31 +01001402 if (!intel_ring_initialized(ring)) {
1403 DRM_DEBUG("execbuf with invalid ring: %d\n",
1404 (int)(args->flags & I915_EXEC_RING_MASK));
1405 return -EINVAL;
1406 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001407
1408 if (args->buffer_count < 1) {
Daniel Vetterff240192012-01-31 21:08:14 +01001409 DRM_DEBUG("execbuf with %d buffers\n", args->buffer_count);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001410 return -EINVAL;
1411 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001412
Abdiel Janulguea9ed33c2015-07-01 10:12:23 +03001413 if (args->flags & I915_EXEC_RESOURCE_STREAMER) {
1414 if (!HAS_RESOURCE_STREAMER(dev)) {
1415 DRM_DEBUG("RS is only allowed for Haswell, Gen8 and above\n");
1416 return -EINVAL;
1417 }
1418 if (ring->id != RCS) {
1419 DRM_DEBUG("RS is not available on %s\n",
1420 ring->name);
1421 return -EINVAL;
1422 }
1423
1424 dispatch_flags |= I915_DISPATCH_RS;
1425 }
1426
Paulo Zanonif65c9162013-11-27 18:20:34 -02001427 intel_runtime_pm_get(dev_priv);
1428
Chris Wilson54cf91d2010-11-25 18:00:26 +00001429 ret = i915_mutex_lock_interruptible(dev);
1430 if (ret)
1431 goto pre_mutex_err;
1432
Daniel Vetter7c9c4b82013-12-18 16:37:49 +01001433 ctx = i915_gem_validate_context(dev, file, ring, ctx_id);
Ben Widawsky72ad5c42014-01-02 19:50:27 -10001434 if (IS_ERR(ctx)) {
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001435 mutex_unlock(&dev->struct_mutex);
Ben Widawsky41bde552013-12-06 14:11:21 -08001436 ret = PTR_ERR(ctx);
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001437 goto pre_mutex_err;
Ben Widawsky935f38d2014-04-04 22:41:07 -07001438 }
Ben Widawsky41bde552013-12-06 14:11:21 -08001439
1440 i915_gem_context_reference(ctx);
1441
Daniel Vetterae6c4802014-08-06 15:04:53 +02001442 if (ctx->ppgtt)
1443 vm = &ctx->ppgtt->base;
1444 else
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08001445 vm = &dev_priv->gtt.base;
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001446
John Harrison5f19e2b2015-05-29 17:43:27 +01001447 memset(&params_master, 0x00, sizeof(params_master));
1448
Ben Widawsky17601cbc2013-11-25 09:54:38 -08001449 eb = eb_create(args);
Chris Wilson67731b82010-12-08 10:38:14 +00001450 if (eb == NULL) {
Ben Widawsky935f38d2014-04-04 22:41:07 -07001451 i915_gem_context_unreference(ctx);
Chris Wilson67731b82010-12-08 10:38:14 +00001452 mutex_unlock(&dev->struct_mutex);
1453 ret = -ENOMEM;
1454 goto pre_mutex_err;
1455 }
1456
Chris Wilson54cf91d2010-11-25 18:00:26 +00001457 /* Look up object handles */
Ben Widawsky27173f12013-08-14 11:38:36 +02001458 ret = eb_lookup_vmas(eb, exec, args, vm, file);
Chris Wilson3b96eff2013-01-08 10:53:14 +00001459 if (ret)
1460 goto err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001461
Chris Wilson6fe4f142011-01-10 17:35:37 +00001462 /* take note of the batch buffer before we might reorder the lists */
Chris Wilsond23db882014-05-23 08:48:08 +02001463 batch_obj = eb_get_batch(eb);
Chris Wilson6fe4f142011-01-10 17:35:37 +00001464
Chris Wilson54cf91d2010-11-25 18:00:26 +00001465 /* Move the objects en-masse into the GTT, evicting if necessary. */
Daniel Vettered5982e2013-01-17 22:23:36 +01001466 need_relocs = (args->flags & I915_EXEC_NO_RELOC) == 0;
David Weinehallb1b38272015-05-20 17:00:13 +03001467 ret = i915_gem_execbuffer_reserve(ring, &eb->vmas, ctx, &need_relocs);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001468 if (ret)
1469 goto err;
1470
1471 /* The objects are in their final locations, apply the relocations. */
Daniel Vettered5982e2013-01-17 22:23:36 +01001472 if (need_relocs)
Ben Widawsky17601cbc2013-11-25 09:54:38 -08001473 ret = i915_gem_execbuffer_relocate(eb);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001474 if (ret) {
1475 if (ret == -EFAULT) {
Daniel Vettered5982e2013-01-17 22:23:36 +01001476 ret = i915_gem_execbuffer_relocate_slow(dev, args, file, ring,
David Weinehallb1b38272015-05-20 17:00:13 +03001477 eb, exec, ctx);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001478 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1479 }
1480 if (ret)
1481 goto err;
1482 }
1483
1484 /* Set the pending read domains for the batch buffer to COMMAND */
Chris Wilson54cf91d2010-11-25 18:00:26 +00001485 if (batch_obj->base.pending_write_domain) {
Daniel Vetterff240192012-01-31 21:08:14 +01001486 DRM_DEBUG("Attempting to use self-modifying batch buffer\n");
Chris Wilson54cf91d2010-11-25 18:00:26 +00001487 ret = -EINVAL;
1488 goto err;
1489 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001490
John Harrison5f19e2b2015-05-29 17:43:27 +01001491 params->args_batch_start_offset = args->batch_start_offset;
Chris Wilson743e78c2015-03-27 11:02:10 +00001492 if (i915_needs_cmd_parser(ring) && args->batch_len) {
Rebecca N. Palmerc7c73722015-05-08 14:26:50 +01001493 struct drm_i915_gem_object *parsed_batch_obj;
1494
1495 parsed_batch_obj = i915_gem_execbuffer_parse(ring,
Brad Volkin71745372014-12-11 12:13:12 -08001496 &shadow_exec_entry,
1497 eb,
1498 batch_obj,
1499 args->batch_start_offset,
1500 args->batch_len,
Chris Wilson17cabf52015-01-14 11:20:57 +00001501 file->is_master);
Rebecca N. Palmerc7c73722015-05-08 14:26:50 +01001502 if (IS_ERR(parsed_batch_obj)) {
1503 ret = PTR_ERR(parsed_batch_obj);
Brad Volkin78a42372014-12-11 12:13:09 -08001504 goto err;
1505 }
Chris Wilson17cabf52015-01-14 11:20:57 +00001506
1507 /*
Rebecca N. Palmerc7c73722015-05-08 14:26:50 +01001508 * parsed_batch_obj == batch_obj means batch not fully parsed:
1509 * Accept, but don't promote to secure.
Chris Wilson17cabf52015-01-14 11:20:57 +00001510 */
Chris Wilson17cabf52015-01-14 11:20:57 +00001511
Rebecca N. Palmerc7c73722015-05-08 14:26:50 +01001512 if (parsed_batch_obj != batch_obj) {
1513 /*
1514 * Batch parsed and accepted:
1515 *
1516 * Set the DISPATCH_SECURE bit to remove the NON_SECURE
1517 * bit from MI_BATCH_BUFFER_START commands issued in
1518 * the dispatch_execbuffer implementations. We
1519 * specifically don't want that set on batches the
1520 * command parser has accepted.
1521 */
1522 dispatch_flags |= I915_DISPATCH_SECURE;
John Harrison5f19e2b2015-05-29 17:43:27 +01001523 params->args_batch_start_offset = 0;
Rebecca N. Palmerc7c73722015-05-08 14:26:50 +01001524 batch_obj = parsed_batch_obj;
1525 }
Brad Volkin351e3db2014-02-18 10:15:46 -08001526 }
1527
Brad Volkin78a42372014-12-11 12:13:09 -08001528 batch_obj->base.pending_read_domains |= I915_GEM_DOMAIN_COMMAND;
1529
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001530 /* snb/ivb/vlv conflate the "batch in ppgtt" bit with the "non-secure
1531 * batch" bit. Hence we need to pin secure batches into the global gtt.
Ben Widawsky28cf5412013-11-02 21:07:26 -07001532 * hsw should have this fixed, but bdw mucks it up again. */
John Harrison8e004ef2015-02-13 11:48:10 +00001533 if (dispatch_flags & I915_DISPATCH_SECURE) {
Daniel Vetterda51a1e2014-08-11 12:08:58 +02001534 /*
1535 * So on first glance it looks freaky that we pin the batch here
1536 * outside of the reservation loop. But:
1537 * - The batch is already pinned into the relevant ppgtt, so we
1538 * already have the backing storage fully allocated.
1539 * - No other BO uses the global gtt (well contexts, but meh),
Yannick Guerrinifd0753c2015-02-28 17:20:41 +01001540 * so we don't really have issues with multiple objects not
Daniel Vetterda51a1e2014-08-11 12:08:58 +02001541 * fitting due to fragmentation.
1542 * So this is actually safe.
1543 */
1544 ret = i915_gem_obj_ggtt_pin(batch_obj, 0, 0);
1545 if (ret)
1546 goto err;
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001547
John Harrison5f19e2b2015-05-29 17:43:27 +01001548 params->batch_obj_vm_offset = i915_gem_obj_ggtt_offset(batch_obj);
Daniel Vetterda51a1e2014-08-11 12:08:58 +02001549 } else
John Harrison5f19e2b2015-05-29 17:43:27 +01001550 params->batch_obj_vm_offset = i915_gem_obj_offset(batch_obj, vm);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001551
John Harrison0c8dac82015-05-29 17:43:25 +01001552 /* Allocate a request for this batch buffer nice and early. */
John Harrison6a6ae792015-05-29 17:43:30 +01001553 ret = i915_gem_request_alloc(ring, ctx, &params->request);
John Harrison0c8dac82015-05-29 17:43:25 +01001554 if (ret)
1555 goto err_batch_unpin;
1556
John Harrisonfcfa423c2015-05-29 17:44:12 +01001557 ret = i915_gem_request_add_to_client(params->request, file);
1558 if (ret)
1559 goto err_batch_unpin;
1560
John Harrison5f19e2b2015-05-29 17:43:27 +01001561 /*
1562 * Save assorted stuff away to pass through to *_submission().
1563 * NB: This data should be 'persistent' and not local as it will
1564 * kept around beyond the duration of the IOCTL once the GPU
1565 * scheduler arrives.
1566 */
1567 params->dev = dev;
1568 params->file = file;
1569 params->ring = ring;
1570 params->dispatch_flags = dispatch_flags;
1571 params->batch_obj = batch_obj;
1572 params->ctx = ctx;
1573
1574 ret = dev_priv->gt.execbuf_submit(params, args, &eb->vmas);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001575
John Harrison0c8dac82015-05-29 17:43:25 +01001576err_batch_unpin:
Daniel Vetterda51a1e2014-08-11 12:08:58 +02001577 /*
1578 * FIXME: We crucially rely upon the active tracking for the (ppgtt)
1579 * batch vma for correctness. For less ugly and less fragility this
1580 * needs to be adjusted to also track the ggtt batch vma properly as
1581 * active.
1582 */
John Harrison8e004ef2015-02-13 11:48:10 +00001583 if (dispatch_flags & I915_DISPATCH_SECURE)
Daniel Vetterda51a1e2014-08-11 12:08:58 +02001584 i915_gem_object_ggtt_unpin(batch_obj);
John Harrison0c8dac82015-05-29 17:43:25 +01001585
Chris Wilson54cf91d2010-11-25 18:00:26 +00001586err:
Ben Widawsky41bde552013-12-06 14:11:21 -08001587 /* the request owns the ref now */
1588 i915_gem_context_unreference(ctx);
Chris Wilson67731b82010-12-08 10:38:14 +00001589 eb_destroy(eb);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001590
John Harrison6a6ae792015-05-29 17:43:30 +01001591 /*
1592 * If the request was created but not successfully submitted then it
1593 * must be freed again. If it was submitted then it is being tracked
1594 * on the active request list and no clean up is required here.
1595 */
John Harrisonbccca492015-05-29 17:44:11 +01001596 if (ret && params->request)
John Harrison6a6ae792015-05-29 17:43:30 +01001597 i915_gem_request_cancel(params->request);
John Harrison6a6ae792015-05-29 17:43:30 +01001598
Chris Wilson54cf91d2010-11-25 18:00:26 +00001599 mutex_unlock(&dev->struct_mutex);
1600
1601pre_mutex_err:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001602 /* intel_gpu_busy should also get a ref, so it will free when the device
1603 * is really idle. */
1604 intel_runtime_pm_put(dev_priv);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001605 return ret;
1606}
1607
1608/*
1609 * Legacy execbuffer just creates an exec2 list from the original exec object
1610 * list array and passes it to the real function.
1611 */
1612int
1613i915_gem_execbuffer(struct drm_device *dev, void *data,
1614 struct drm_file *file)
1615{
1616 struct drm_i915_gem_execbuffer *args = data;
1617 struct drm_i915_gem_execbuffer2 exec2;
1618 struct drm_i915_gem_exec_object *exec_list = NULL;
1619 struct drm_i915_gem_exec_object2 *exec2_list = NULL;
1620 int ret, i;
1621
Chris Wilson54cf91d2010-11-25 18:00:26 +00001622 if (args->buffer_count < 1) {
Daniel Vetterff240192012-01-31 21:08:14 +01001623 DRM_DEBUG("execbuf with %d buffers\n", args->buffer_count);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001624 return -EINVAL;
1625 }
1626
1627 /* Copy in the exec list from userland */
1628 exec_list = drm_malloc_ab(sizeof(*exec_list), args->buffer_count);
1629 exec2_list = drm_malloc_ab(sizeof(*exec2_list), args->buffer_count);
1630 if (exec_list == NULL || exec2_list == NULL) {
Daniel Vetterff240192012-01-31 21:08:14 +01001631 DRM_DEBUG("Failed to allocate exec list for %d buffers\n",
Chris Wilson54cf91d2010-11-25 18:00:26 +00001632 args->buffer_count);
1633 drm_free_large(exec_list);
1634 drm_free_large(exec2_list);
1635 return -ENOMEM;
1636 }
1637 ret = copy_from_user(exec_list,
Ville Syrjälä2bb46292013-02-22 16:12:51 +02001638 to_user_ptr(args->buffers_ptr),
Chris Wilson54cf91d2010-11-25 18:00:26 +00001639 sizeof(*exec_list) * args->buffer_count);
1640 if (ret != 0) {
Daniel Vetterff240192012-01-31 21:08:14 +01001641 DRM_DEBUG("copy %d exec entries failed %d\n",
Chris Wilson54cf91d2010-11-25 18:00:26 +00001642 args->buffer_count, ret);
1643 drm_free_large(exec_list);
1644 drm_free_large(exec2_list);
1645 return -EFAULT;
1646 }
1647
1648 for (i = 0; i < args->buffer_count; i++) {
1649 exec2_list[i].handle = exec_list[i].handle;
1650 exec2_list[i].relocation_count = exec_list[i].relocation_count;
1651 exec2_list[i].relocs_ptr = exec_list[i].relocs_ptr;
1652 exec2_list[i].alignment = exec_list[i].alignment;
1653 exec2_list[i].offset = exec_list[i].offset;
1654 if (INTEL_INFO(dev)->gen < 4)
1655 exec2_list[i].flags = EXEC_OBJECT_NEEDS_FENCE;
1656 else
1657 exec2_list[i].flags = 0;
1658 }
1659
1660 exec2.buffers_ptr = args->buffers_ptr;
1661 exec2.buffer_count = args->buffer_count;
1662 exec2.batch_start_offset = args->batch_start_offset;
1663 exec2.batch_len = args->batch_len;
1664 exec2.DR1 = args->DR1;
1665 exec2.DR4 = args->DR4;
1666 exec2.num_cliprects = args->num_cliprects;
1667 exec2.cliprects_ptr = args->cliprects_ptr;
1668 exec2.flags = I915_EXEC_RENDER;
Ben Widawsky6e0a69d2012-06-04 14:42:55 -07001669 i915_execbuffer2_set_context_id(exec2, 0);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001670
Ben Widawsky41bde552013-12-06 14:11:21 -08001671 ret = i915_gem_do_execbuffer(dev, data, file, &exec2, exec2_list);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001672 if (!ret) {
Chris Wilson9aab8bf2014-05-23 10:45:52 +01001673 struct drm_i915_gem_exec_object __user *user_exec_list =
1674 to_user_ptr(args->buffers_ptr);
1675
Chris Wilson54cf91d2010-11-25 18:00:26 +00001676 /* Copy the new buffer offsets back to the user's exec list. */
Chris Wilson9aab8bf2014-05-23 10:45:52 +01001677 for (i = 0; i < args->buffer_count; i++) {
1678 ret = __copy_to_user(&user_exec_list[i].offset,
1679 &exec2_list[i].offset,
1680 sizeof(user_exec_list[i].offset));
1681 if (ret) {
1682 ret = -EFAULT;
1683 DRM_DEBUG("failed to copy %d exec entries "
1684 "back to user (%d)\n",
1685 args->buffer_count, ret);
1686 break;
1687 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001688 }
1689 }
1690
1691 drm_free_large(exec_list);
1692 drm_free_large(exec2_list);
1693 return ret;
1694}
1695
1696int
1697i915_gem_execbuffer2(struct drm_device *dev, void *data,
1698 struct drm_file *file)
1699{
1700 struct drm_i915_gem_execbuffer2 *args = data;
1701 struct drm_i915_gem_exec_object2 *exec2_list = NULL;
1702 int ret;
1703
Xi Wanged8cd3b2012-04-23 04:06:41 -04001704 if (args->buffer_count < 1 ||
1705 args->buffer_count > UINT_MAX / sizeof(*exec2_list)) {
Daniel Vetterff240192012-01-31 21:08:14 +01001706 DRM_DEBUG("execbuf2 with %d buffers\n", args->buffer_count);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001707 return -EINVAL;
1708 }
1709
Daniel Vetter9cb34662014-04-24 08:09:11 +02001710 if (args->rsvd2 != 0) {
1711 DRM_DEBUG("dirty rvsd2 field\n");
1712 return -EINVAL;
1713 }
1714
Chris Wilson8408c282011-02-21 12:54:48 +00001715 exec2_list = kmalloc(sizeof(*exec2_list)*args->buffer_count,
Chris Wilson419fa722013-01-08 10:53:13 +00001716 GFP_TEMPORARY | __GFP_NOWARN | __GFP_NORETRY);
Chris Wilson8408c282011-02-21 12:54:48 +00001717 if (exec2_list == NULL)
1718 exec2_list = drm_malloc_ab(sizeof(*exec2_list),
1719 args->buffer_count);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001720 if (exec2_list == NULL) {
Daniel Vetterff240192012-01-31 21:08:14 +01001721 DRM_DEBUG("Failed to allocate exec list for %d buffers\n",
Chris Wilson54cf91d2010-11-25 18:00:26 +00001722 args->buffer_count);
1723 return -ENOMEM;
1724 }
1725 ret = copy_from_user(exec2_list,
Ville Syrjälä2bb46292013-02-22 16:12:51 +02001726 to_user_ptr(args->buffers_ptr),
Chris Wilson54cf91d2010-11-25 18:00:26 +00001727 sizeof(*exec2_list) * args->buffer_count);
1728 if (ret != 0) {
Daniel Vetterff240192012-01-31 21:08:14 +01001729 DRM_DEBUG("copy %d exec entries failed %d\n",
Chris Wilson54cf91d2010-11-25 18:00:26 +00001730 args->buffer_count, ret);
1731 drm_free_large(exec2_list);
1732 return -EFAULT;
1733 }
1734
Ben Widawsky41bde552013-12-06 14:11:21 -08001735 ret = i915_gem_do_execbuffer(dev, data, file, args, exec2_list);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001736 if (!ret) {
1737 /* Copy the new buffer offsets back to the user's exec list. */
Ville Syrjäläd593d992014-06-13 16:42:51 +03001738 struct drm_i915_gem_exec_object2 __user *user_exec_list =
Chris Wilson9aab8bf2014-05-23 10:45:52 +01001739 to_user_ptr(args->buffers_ptr);
1740 int i;
1741
1742 for (i = 0; i < args->buffer_count; i++) {
1743 ret = __copy_to_user(&user_exec_list[i].offset,
1744 &exec2_list[i].offset,
1745 sizeof(user_exec_list[i].offset));
1746 if (ret) {
1747 ret = -EFAULT;
1748 DRM_DEBUG("failed to copy %d exec entries "
1749 "back to user\n",
1750 args->buffer_count);
1751 break;
1752 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001753 }
1754 }
1755
1756 drm_free_large(exec2_list);
1757 return ret;
1758}