blob: 82ed80f68103c6bc348c267344753e935518dc1a [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
Dave Gordon9e2793f62016-07-14 14:52:03 +010037#define __EXEC_OBJECT_HAS_PIN (1<<31)
38#define __EXEC_OBJECT_HAS_FENCE (1<<30)
39#define __EXEC_OBJECT_NEEDS_MAP (1<<29)
40#define __EXEC_OBJECT_NEEDS_BIAS (1<<28)
41#define __EXEC_OBJECT_INTERNAL_FLAGS (0xf<<28) /* all of the above */
Chris Wilsond23db882014-05-23 08:48:08 +020042
43#define BATCH_OFFSET_BIAS (256*1024)
Chris Wilsona415d352013-11-26 11:23:15 +000044
Chris Wilson5b043f42016-08-02 22:50:38 +010045struct i915_execbuffer_params {
46 struct drm_device *dev;
47 struct drm_file *file;
48 u32 dispatch_flags;
49 u32 args_batch_start_offset;
50 u32 batch_obj_vm_offset;
51 struct intel_engine_cs *engine;
52 struct drm_i915_gem_object *batch_obj;
53 struct i915_gem_context *ctx;
54 struct drm_i915_gem_request *request;
55};
56
Ben Widawsky27173f12013-08-14 11:38:36 +020057struct eb_vmas {
58 struct list_head vmas;
Chris Wilson67731b82010-12-08 10:38:14 +000059 int and;
Chris Wilsoneef90cc2013-01-08 10:53:17 +000060 union {
Ben Widawsky27173f12013-08-14 11:38:36 +020061 struct i915_vma *lut[0];
Chris Wilsoneef90cc2013-01-08 10:53:17 +000062 struct hlist_head buckets[0];
63 };
Chris Wilson67731b82010-12-08 10:38:14 +000064};
65
Ben Widawsky27173f12013-08-14 11:38:36 +020066static struct eb_vmas *
Ben Widawsky17601cbc2013-11-25 09:54:38 -080067eb_create(struct drm_i915_gem_execbuffer2 *args)
Chris Wilson67731b82010-12-08 10:38:14 +000068{
Ben Widawsky27173f12013-08-14 11:38:36 +020069 struct eb_vmas *eb = NULL;
Chris Wilson67731b82010-12-08 10:38:14 +000070
Chris Wilsoneef90cc2013-01-08 10:53:17 +000071 if (args->flags & I915_EXEC_HANDLE_LUT) {
Daniel Vetterb205ca52013-09-19 14:00:11 +020072 unsigned size = args->buffer_count;
Ben Widawsky27173f12013-08-14 11:38:36 +020073 size *= sizeof(struct i915_vma *);
74 size += sizeof(struct eb_vmas);
Chris Wilsoneef90cc2013-01-08 10:53:17 +000075 eb = kmalloc(size, GFP_TEMPORARY | __GFP_NOWARN | __GFP_NORETRY);
76 }
77
78 if (eb == NULL) {
Daniel Vetterb205ca52013-09-19 14:00:11 +020079 unsigned size = args->buffer_count;
80 unsigned count = PAGE_SIZE / sizeof(struct hlist_head) / 2;
Lauri Kasanen27b7c632013-03-27 15:04:55 +020081 BUILD_BUG_ON_NOT_POWER_OF_2(PAGE_SIZE / sizeof(struct hlist_head));
Chris Wilsoneef90cc2013-01-08 10:53:17 +000082 while (count > 2*size)
83 count >>= 1;
84 eb = kzalloc(count*sizeof(struct hlist_head) +
Ben Widawsky27173f12013-08-14 11:38:36 +020085 sizeof(struct eb_vmas),
Chris Wilsoneef90cc2013-01-08 10:53:17 +000086 GFP_TEMPORARY);
87 if (eb == NULL)
88 return eb;
89
90 eb->and = count - 1;
91 } else
92 eb->and = -args->buffer_count;
93
Ben Widawsky27173f12013-08-14 11:38:36 +020094 INIT_LIST_HEAD(&eb->vmas);
Chris Wilson67731b82010-12-08 10:38:14 +000095 return eb;
96}
97
98static void
Ben Widawsky27173f12013-08-14 11:38:36 +020099eb_reset(struct eb_vmas *eb)
Chris Wilson67731b82010-12-08 10:38:14 +0000100{
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000101 if (eb->and >= 0)
102 memset(eb->buckets, 0, (eb->and+1)*sizeof(struct hlist_head));
Chris Wilson67731b82010-12-08 10:38:14 +0000103}
104
Chris Wilson3b96eff2013-01-08 10:53:14 +0000105static int
Ben Widawsky27173f12013-08-14 11:38:36 +0200106eb_lookup_vmas(struct eb_vmas *eb,
107 struct drm_i915_gem_exec_object2 *exec,
108 const struct drm_i915_gem_execbuffer2 *args,
109 struct i915_address_space *vm,
110 struct drm_file *file)
Chris Wilson3b96eff2013-01-08 10:53:14 +0000111{
Ben Widawsky27173f12013-08-14 11:38:36 +0200112 struct drm_i915_gem_object *obj;
113 struct list_head objects;
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000114 int i, ret;
Chris Wilson3b96eff2013-01-08 10:53:14 +0000115
Ben Widawsky27173f12013-08-14 11:38:36 +0200116 INIT_LIST_HEAD(&objects);
Chris Wilson3b96eff2013-01-08 10:53:14 +0000117 spin_lock(&file->table_lock);
Ben Widawsky27173f12013-08-14 11:38:36 +0200118 /* Grab a reference to the object and release the lock so we can lookup
119 * or create the VMA without using GFP_ATOMIC */
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000120 for (i = 0; i < args->buffer_count; i++) {
Chris Wilson3b96eff2013-01-08 10:53:14 +0000121 obj = to_intel_bo(idr_find(&file->object_idr, exec[i].handle));
122 if (obj == NULL) {
123 spin_unlock(&file->table_lock);
124 DRM_DEBUG("Invalid object handle %d at index %d\n",
125 exec[i].handle, i);
Ben Widawsky27173f12013-08-14 11:38:36 +0200126 ret = -ENOENT;
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000127 goto err;
Chris Wilson3b96eff2013-01-08 10:53:14 +0000128 }
129
Ben Widawsky27173f12013-08-14 11:38:36 +0200130 if (!list_empty(&obj->obj_exec_link)) {
Chris Wilson3b96eff2013-01-08 10:53:14 +0000131 spin_unlock(&file->table_lock);
132 DRM_DEBUG("Object %p [handle %d, index %d] appears more than once in object list\n",
133 obj, exec[i].handle, i);
Ben Widawsky27173f12013-08-14 11:38:36 +0200134 ret = -EINVAL;
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000135 goto err;
Chris Wilson3b96eff2013-01-08 10:53:14 +0000136 }
137
Chris Wilson25dc5562016-07-20 13:31:52 +0100138 i915_gem_object_get(obj);
Ben Widawsky27173f12013-08-14 11:38:36 +0200139 list_add_tail(&obj->obj_exec_link, &objects);
Chris Wilson3b96eff2013-01-08 10:53:14 +0000140 }
141 spin_unlock(&file->table_lock);
142
Ben Widawsky27173f12013-08-14 11:38:36 +0200143 i = 0;
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000144 while (!list_empty(&objects)) {
Ben Widawsky27173f12013-08-14 11:38:36 +0200145 struct i915_vma *vma;
Ben Widawsky6f65e292013-12-06 14:10:56 -0800146
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000147 obj = list_first_entry(&objects,
148 struct drm_i915_gem_object,
149 obj_exec_link);
150
Daniel Vettere656a6c2013-08-14 14:14:04 +0200151 /*
152 * NOTE: We can leak any vmas created here when something fails
153 * later on. But that's no issue since vma_unbind can deal with
154 * vmas which are not actually bound. And since only
155 * lookup_or_create exists as an interface to get at the vma
156 * from the (obj, vm) we don't run the risk of creating
157 * duplicated vmas for the same vm.
158 */
Daniel Vetterda51a1e2014-08-11 12:08:58 +0200159 vma = i915_gem_obj_lookup_or_create_vma(obj, vm);
Ben Widawsky27173f12013-08-14 11:38:36 +0200160 if (IS_ERR(vma)) {
Ben Widawsky27173f12013-08-14 11:38:36 +0200161 DRM_DEBUG("Failed to lookup VMA\n");
162 ret = PTR_ERR(vma);
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000163 goto err;
Ben Widawsky27173f12013-08-14 11:38:36 +0200164 }
165
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000166 /* Transfer ownership from the objects list to the vmas list. */
Ben Widawsky27173f12013-08-14 11:38:36 +0200167 list_add_tail(&vma->exec_list, &eb->vmas);
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000168 list_del_init(&obj->obj_exec_link);
Ben Widawsky27173f12013-08-14 11:38:36 +0200169
170 vma->exec_entry = &exec[i];
171 if (eb->and < 0) {
172 eb->lut[i] = vma;
173 } else {
174 uint32_t handle = args->flags & I915_EXEC_HANDLE_LUT ? i : exec[i].handle;
175 vma->exec_handle = handle;
176 hlist_add_head(&vma->exec_node,
177 &eb->buckets[handle & eb->and]);
178 }
179 ++i;
180 }
181
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000182 return 0;
Ben Widawsky27173f12013-08-14 11:38:36 +0200183
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000184
185err:
Ben Widawsky27173f12013-08-14 11:38:36 +0200186 while (!list_empty(&objects)) {
187 obj = list_first_entry(&objects,
188 struct drm_i915_gem_object,
189 obj_exec_link);
190 list_del_init(&obj->obj_exec_link);
Chris Wilsonf8c417c2016-07-20 13:31:53 +0100191 i915_gem_object_put(obj);
Ben Widawsky27173f12013-08-14 11:38:36 +0200192 }
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000193 /*
194 * Objects already transfered to the vmas list will be unreferenced by
195 * eb_destroy.
196 */
197
Ben Widawsky27173f12013-08-14 11:38:36 +0200198 return ret;
Chris Wilson3b96eff2013-01-08 10:53:14 +0000199}
200
Dave Gordon4bfa3392016-07-14 14:52:04 +0100201static inline struct i915_vma *
202eb_get_batch_vma(struct eb_vmas *eb)
203{
204 /* The batch is always the LAST item in the VMA list */
205 struct i915_vma *vma = list_last_entry(&eb->vmas, typeof(*vma), exec_list);
206
207 return vma;
208}
209
210static struct drm_i915_gem_object *
211eb_get_batch(struct eb_vmas *eb)
212{
213 struct i915_vma *vma = eb_get_batch_vma(eb);
214
215 /*
216 * SNA is doing fancy tricks with compressing batch buffers, which leads
217 * to negative relocation deltas. Usually that works out ok since the
218 * relocate address is still positive, except when the batch is placed
219 * very low in the GTT. Ensure this doesn't happen.
220 *
221 * Note that actual hangs have only been observed on gen7, but for
222 * paranoia do it everywhere.
223 */
224 if ((vma->exec_entry->flags & EXEC_OBJECT_PINNED) == 0)
225 vma->exec_entry->flags |= __EXEC_OBJECT_NEEDS_BIAS;
226
227 return vma->obj;
228}
229
Ben Widawsky27173f12013-08-14 11:38:36 +0200230static struct i915_vma *eb_get_vma(struct eb_vmas *eb, unsigned long handle)
Chris Wilson67731b82010-12-08 10:38:14 +0000231{
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000232 if (eb->and < 0) {
233 if (handle >= -eb->and)
234 return NULL;
235 return eb->lut[handle];
236 } else {
237 struct hlist_head *head;
Geliang Tangaa459502016-01-18 23:54:20 +0800238 struct i915_vma *vma;
Chris Wilson67731b82010-12-08 10:38:14 +0000239
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000240 head = &eb->buckets[handle & eb->and];
Geliang Tangaa459502016-01-18 23:54:20 +0800241 hlist_for_each_entry(vma, head, exec_node) {
Ben Widawsky27173f12013-08-14 11:38:36 +0200242 if (vma->exec_handle == handle)
243 return vma;
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000244 }
245 return NULL;
Chris Wilson67731b82010-12-08 10:38:14 +0000246 }
Chris Wilson67731b82010-12-08 10:38:14 +0000247}
248
Chris Wilsona415d352013-11-26 11:23:15 +0000249static void
250i915_gem_execbuffer_unreserve_vma(struct i915_vma *vma)
251{
252 struct drm_i915_gem_exec_object2 *entry;
253 struct drm_i915_gem_object *obj = vma->obj;
254
255 if (!drm_mm_node_allocated(&vma->node))
256 return;
257
258 entry = vma->exec_entry;
259
260 if (entry->flags & __EXEC_OBJECT_HAS_FENCE)
261 i915_gem_object_unpin_fence(obj);
262
263 if (entry->flags & __EXEC_OBJECT_HAS_PIN)
Chris Wilson20dfbde2016-08-04 16:32:30 +0100264 __i915_vma_unpin(vma);
Chris Wilsona415d352013-11-26 11:23:15 +0000265
Chris Wilsonde4e7832015-04-07 16:20:35 +0100266 entry->flags &= ~(__EXEC_OBJECT_HAS_FENCE | __EXEC_OBJECT_HAS_PIN);
Chris Wilsona415d352013-11-26 11:23:15 +0000267}
268
269static void eb_destroy(struct eb_vmas *eb)
270{
Ben Widawsky27173f12013-08-14 11:38:36 +0200271 while (!list_empty(&eb->vmas)) {
272 struct i915_vma *vma;
Chris Wilsonbcffc3f2013-01-08 10:53:15 +0000273
Ben Widawsky27173f12013-08-14 11:38:36 +0200274 vma = list_first_entry(&eb->vmas,
275 struct i915_vma,
Chris Wilsonbcffc3f2013-01-08 10:53:15 +0000276 exec_list);
Ben Widawsky27173f12013-08-14 11:38:36 +0200277 list_del_init(&vma->exec_list);
Chris Wilsona415d352013-11-26 11:23:15 +0000278 i915_gem_execbuffer_unreserve_vma(vma);
Chris Wilsonf8c417c2016-07-20 13:31:53 +0100279 i915_gem_object_put(vma->obj);
Chris Wilsonbcffc3f2013-01-08 10:53:15 +0000280 }
Chris Wilson67731b82010-12-08 10:38:14 +0000281 kfree(eb);
282}
283
Chris Wilsondabdfe02012-03-26 10:10:27 +0200284static inline int use_cpu_reloc(struct drm_i915_gem_object *obj)
285{
Chris Wilson2cc86b82013-08-26 19:51:00 -0300286 return (HAS_LLC(obj->base.dev) ||
287 obj->base.write_domain == I915_GEM_DOMAIN_CPU ||
Chris Wilsondabdfe02012-03-26 10:10:27 +0200288 obj->cache_level != I915_CACHE_NONE);
289}
290
Michał Winiarski934acce2015-12-29 18:24:52 +0100291/* Used to convert any address to canonical form.
292 * Starting from gen8, some commands (e.g. STATE_BASE_ADDRESS,
293 * MI_LOAD_REGISTER_MEM and others, see Broadwell PRM Vol2a) require the
294 * addresses to be in a canonical form:
295 * "GraphicsAddress[63:48] are ignored by the HW and assumed to be in correct
296 * canonical form [63:48] == [47]."
297 */
298#define GEN8_HIGH_ADDRESS_BIT 47
299static inline uint64_t gen8_canonical_addr(uint64_t address)
300{
301 return sign_extend64(address, GEN8_HIGH_ADDRESS_BIT);
302}
303
304static inline uint64_t gen8_noncanonical_addr(uint64_t address)
305{
306 return address & ((1ULL << (GEN8_HIGH_ADDRESS_BIT + 1)) - 1);
307}
308
309static inline uint64_t
310relocation_target(struct drm_i915_gem_relocation_entry *reloc,
311 uint64_t target_offset)
312{
313 return gen8_canonical_addr((int)reloc->delta + target_offset);
314}
315
Chris Wilson54cf91d2010-11-25 18:00:26 +0000316static int
Rafael Barbalho5032d872013-08-21 17:10:51 +0100317relocate_entry_cpu(struct drm_i915_gem_object *obj,
Ben Widawskyd9ceb952014-04-28 17:18:28 -0700318 struct drm_i915_gem_relocation_entry *reloc,
319 uint64_t target_offset)
Rafael Barbalho5032d872013-08-21 17:10:51 +0100320{
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700321 struct drm_device *dev = obj->base.dev;
Rafael Barbalho5032d872013-08-21 17:10:51 +0100322 uint32_t page_offset = offset_in_page(reloc->offset);
Michał Winiarski934acce2015-12-29 18:24:52 +0100323 uint64_t delta = relocation_target(reloc, target_offset);
Rafael Barbalho5032d872013-08-21 17:10:51 +0100324 char *vaddr;
Ben Widawsky8b78f0e2013-12-26 13:39:50 -0800325 int ret;
Rafael Barbalho5032d872013-08-21 17:10:51 +0100326
Chris Wilson2cc86b82013-08-26 19:51:00 -0300327 ret = i915_gem_object_set_to_cpu_domain(obj, true);
Rafael Barbalho5032d872013-08-21 17:10:51 +0100328 if (ret)
329 return ret;
330
Dave Gordon033908a2015-12-10 18:51:23 +0000331 vaddr = kmap_atomic(i915_gem_object_get_dirty_page(obj,
Rafael Barbalho5032d872013-08-21 17:10:51 +0100332 reloc->offset >> PAGE_SHIFT));
Ben Widawskyd9ceb952014-04-28 17:18:28 -0700333 *(uint32_t *)(vaddr + page_offset) = lower_32_bits(delta);
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700334
335 if (INTEL_INFO(dev)->gen >= 8) {
336 page_offset = offset_in_page(page_offset + sizeof(uint32_t));
337
338 if (page_offset == 0) {
339 kunmap_atomic(vaddr);
Dave Gordon033908a2015-12-10 18:51:23 +0000340 vaddr = kmap_atomic(i915_gem_object_get_dirty_page(obj,
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700341 (reloc->offset + sizeof(uint32_t)) >> PAGE_SHIFT));
342 }
343
Ben Widawskyd9ceb952014-04-28 17:18:28 -0700344 *(uint32_t *)(vaddr + page_offset) = upper_32_bits(delta);
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700345 }
346
Rafael Barbalho5032d872013-08-21 17:10:51 +0100347 kunmap_atomic(vaddr);
348
349 return 0;
350}
351
352static int
353relocate_entry_gtt(struct drm_i915_gem_object *obj,
Ben Widawskyd9ceb952014-04-28 17:18:28 -0700354 struct drm_i915_gem_relocation_entry *reloc,
355 uint64_t target_offset)
Rafael Barbalho5032d872013-08-21 17:10:51 +0100356{
357 struct drm_device *dev = obj->base.dev;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300358 struct drm_i915_private *dev_priv = to_i915(dev);
359 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Michał Winiarski934acce2015-12-29 18:24:52 +0100360 uint64_t delta = relocation_target(reloc, target_offset);
Chris Wilson906843c2014-08-10 06:29:11 +0100361 uint64_t offset;
Rafael Barbalho5032d872013-08-21 17:10:51 +0100362 void __iomem *reloc_page;
Ben Widawsky8b78f0e2013-12-26 13:39:50 -0800363 int ret;
Rafael Barbalho5032d872013-08-21 17:10:51 +0100364
365 ret = i915_gem_object_set_to_gtt_domain(obj, true);
366 if (ret)
367 return ret;
368
369 ret = i915_gem_object_put_fence(obj);
370 if (ret)
371 return ret;
372
373 /* Map the page containing the relocation we're going to perform. */
Chris Wilson906843c2014-08-10 06:29:11 +0100374 offset = i915_gem_obj_ggtt_offset(obj);
375 offset += reloc->offset;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300376 reloc_page = io_mapping_map_atomic_wc(ggtt->mappable,
Chris Wilson906843c2014-08-10 06:29:11 +0100377 offset & PAGE_MASK);
378 iowrite32(lower_32_bits(delta), reloc_page + offset_in_page(offset));
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700379
380 if (INTEL_INFO(dev)->gen >= 8) {
Chris Wilson906843c2014-08-10 06:29:11 +0100381 offset += sizeof(uint32_t);
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700382
Chris Wilson906843c2014-08-10 06:29:11 +0100383 if (offset_in_page(offset) == 0) {
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700384 io_mapping_unmap_atomic(reloc_page);
Chris Wilson906843c2014-08-10 06:29:11 +0100385 reloc_page =
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300386 io_mapping_map_atomic_wc(ggtt->mappable,
Chris Wilson906843c2014-08-10 06:29:11 +0100387 offset);
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700388 }
389
Chris Wilson906843c2014-08-10 06:29:11 +0100390 iowrite32(upper_32_bits(delta),
391 reloc_page + offset_in_page(offset));
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700392 }
393
Rafael Barbalho5032d872013-08-21 17:10:51 +0100394 io_mapping_unmap_atomic(reloc_page);
395
396 return 0;
397}
398
Chris Wilsonedf44272015-01-14 11:20:56 +0000399static void
400clflush_write32(void *addr, uint32_t value)
401{
402 /* This is not a fast path, so KISS. */
403 drm_clflush_virt_range(addr, sizeof(uint32_t));
404 *(uint32_t *)addr = value;
405 drm_clflush_virt_range(addr, sizeof(uint32_t));
406}
407
408static int
409relocate_entry_clflush(struct drm_i915_gem_object *obj,
410 struct drm_i915_gem_relocation_entry *reloc,
411 uint64_t target_offset)
412{
413 struct drm_device *dev = obj->base.dev;
414 uint32_t page_offset = offset_in_page(reloc->offset);
Michał Winiarski934acce2015-12-29 18:24:52 +0100415 uint64_t delta = relocation_target(reloc, target_offset);
Chris Wilsonedf44272015-01-14 11:20:56 +0000416 char *vaddr;
417 int ret;
418
419 ret = i915_gem_object_set_to_gtt_domain(obj, true);
420 if (ret)
421 return ret;
422
Dave Gordon033908a2015-12-10 18:51:23 +0000423 vaddr = kmap_atomic(i915_gem_object_get_dirty_page(obj,
Chris Wilsonedf44272015-01-14 11:20:56 +0000424 reloc->offset >> PAGE_SHIFT));
425 clflush_write32(vaddr + page_offset, lower_32_bits(delta));
426
427 if (INTEL_INFO(dev)->gen >= 8) {
428 page_offset = offset_in_page(page_offset + sizeof(uint32_t));
429
430 if (page_offset == 0) {
431 kunmap_atomic(vaddr);
Dave Gordon033908a2015-12-10 18:51:23 +0000432 vaddr = kmap_atomic(i915_gem_object_get_dirty_page(obj,
Chris Wilsonedf44272015-01-14 11:20:56 +0000433 (reloc->offset + sizeof(uint32_t)) >> PAGE_SHIFT));
434 }
435
436 clflush_write32(vaddr + page_offset, upper_32_bits(delta));
437 }
438
439 kunmap_atomic(vaddr);
440
441 return 0;
442}
443
Chris Wilson909d0742016-08-04 07:52:41 +0100444static bool object_is_idle(struct drm_i915_gem_object *obj)
445{
446 unsigned long active = obj->active;
447 int idx;
448
449 for_each_active(active, idx) {
450 if (!i915_gem_active_is_idle(&obj->last_read[idx],
451 &obj->base.dev->struct_mutex))
452 return false;
453 }
454
455 return true;
456}
457
Rafael Barbalho5032d872013-08-21 17:10:51 +0100458static int
Chris Wilson54cf91d2010-11-25 18:00:26 +0000459i915_gem_execbuffer_relocate_entry(struct drm_i915_gem_object *obj,
Ben Widawsky27173f12013-08-14 11:38:36 +0200460 struct eb_vmas *eb,
Ben Widawsky3e7a0322013-12-06 14:10:57 -0800461 struct drm_i915_gem_relocation_entry *reloc)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000462{
463 struct drm_device *dev = obj->base.dev;
464 struct drm_gem_object *target_obj;
Daniel Vetter149c8402012-02-15 23:50:23 +0100465 struct drm_i915_gem_object *target_i915_obj;
Ben Widawsky27173f12013-08-14 11:38:36 +0200466 struct i915_vma *target_vma;
Ben Widawskyd9ceb952014-04-28 17:18:28 -0700467 uint64_t target_offset;
Ben Widawsky8b78f0e2013-12-26 13:39:50 -0800468 int ret;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000469
Chris Wilson67731b82010-12-08 10:38:14 +0000470 /* we've already hold a reference to all valid objects */
Ben Widawsky27173f12013-08-14 11:38:36 +0200471 target_vma = eb_get_vma(eb, reloc->target_handle);
472 if (unlikely(target_vma == NULL))
Chris Wilson54cf91d2010-11-25 18:00:26 +0000473 return -ENOENT;
Ben Widawsky27173f12013-08-14 11:38:36 +0200474 target_i915_obj = target_vma->obj;
475 target_obj = &target_vma->obj->base;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000476
Michał Winiarski934acce2015-12-29 18:24:52 +0100477 target_offset = gen8_canonical_addr(target_vma->node.start);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000478
Eric Anholte844b992012-07-31 15:35:01 -0700479 /* Sandybridge PPGTT errata: We need a global gtt mapping for MI and
480 * pipe_control writes because the gpu doesn't properly redirect them
481 * through the ppgtt for non_secure batchbuffers. */
482 if (unlikely(IS_GEN6(dev) &&
Daniel Vetter08755462015-04-20 09:04:05 -0700483 reloc->write_domain == I915_GEM_DOMAIN_INSTRUCTION)) {
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +0000484 ret = i915_vma_bind(target_vma, target_i915_obj->cache_level,
Daniel Vetter08755462015-04-20 09:04:05 -0700485 PIN_GLOBAL);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +0000486 if (WARN_ONCE(ret, "Unexpected failure to bind target VMA!"))
487 return ret;
488 }
Eric Anholte844b992012-07-31 15:35:01 -0700489
Chris Wilson54cf91d2010-11-25 18:00:26 +0000490 /* Validate that the target is in a valid r/w GPU domain */
Chris Wilsonb8f7ab12010-12-08 10:43:06 +0000491 if (unlikely(reloc->write_domain & (reloc->write_domain - 1))) {
Daniel Vetterff240192012-01-31 21:08:14 +0100492 DRM_DEBUG("reloc with multiple write domains: "
Chris Wilson54cf91d2010-11-25 18:00:26 +0000493 "obj %p target %d offset %d "
494 "read %08x write %08x",
495 obj, reloc->target_handle,
496 (int) reloc->offset,
497 reloc->read_domains,
498 reloc->write_domain);
Ben Widawsky8b78f0e2013-12-26 13:39:50 -0800499 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000500 }
Daniel Vetter4ca4a252011-12-14 13:57:27 +0100501 if (unlikely((reloc->write_domain | reloc->read_domains)
502 & ~I915_GEM_GPU_DOMAINS)) {
Daniel Vetterff240192012-01-31 21:08:14 +0100503 DRM_DEBUG("reloc with read/write non-GPU domains: "
Chris Wilson54cf91d2010-11-25 18:00:26 +0000504 "obj %p target %d offset %d "
505 "read %08x write %08x",
506 obj, reloc->target_handle,
507 (int) reloc->offset,
508 reloc->read_domains,
509 reloc->write_domain);
Ben Widawsky8b78f0e2013-12-26 13:39:50 -0800510 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000511 }
Chris Wilson54cf91d2010-11-25 18:00:26 +0000512
513 target_obj->pending_read_domains |= reloc->read_domains;
514 target_obj->pending_write_domain |= reloc->write_domain;
515
516 /* If the relocation already has the right value in it, no
517 * more work needs to be done.
518 */
519 if (target_offset == reloc->presumed_offset)
Chris Wilson67731b82010-12-08 10:38:14 +0000520 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000521
522 /* Check that the relocation address is valid... */
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700523 if (unlikely(reloc->offset >
524 obj->base.size - (INTEL_INFO(dev)->gen >= 8 ? 8 : 4))) {
Daniel Vetterff240192012-01-31 21:08:14 +0100525 DRM_DEBUG("Relocation beyond object bounds: "
Chris Wilson54cf91d2010-11-25 18:00:26 +0000526 "obj %p target %d offset %d size %d.\n",
527 obj, reloc->target_handle,
528 (int) reloc->offset,
529 (int) obj->base.size);
Ben Widawsky8b78f0e2013-12-26 13:39:50 -0800530 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000531 }
Chris Wilsonb8f7ab12010-12-08 10:43:06 +0000532 if (unlikely(reloc->offset & 3)) {
Daniel Vetterff240192012-01-31 21:08:14 +0100533 DRM_DEBUG("Relocation not 4-byte aligned: "
Chris Wilson54cf91d2010-11-25 18:00:26 +0000534 "obj %p target %d offset %d.\n",
535 obj, reloc->target_handle,
536 (int) reloc->offset);
Ben Widawsky8b78f0e2013-12-26 13:39:50 -0800537 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000538 }
539
Chris Wilsondabdfe02012-03-26 10:10:27 +0200540 /* We can't wait for rendering with pagefaults disabled */
Chris Wilson909d0742016-08-04 07:52:41 +0100541 if (pagefault_disabled() && !object_is_idle(obj))
Chris Wilsondabdfe02012-03-26 10:10:27 +0200542 return -EFAULT;
543
Rafael Barbalho5032d872013-08-21 17:10:51 +0100544 if (use_cpu_reloc(obj))
Ben Widawskyd9ceb952014-04-28 17:18:28 -0700545 ret = relocate_entry_cpu(obj, reloc, target_offset);
Chris Wilsonedf44272015-01-14 11:20:56 +0000546 else if (obj->map_and_fenceable)
Ben Widawskyd9ceb952014-04-28 17:18:28 -0700547 ret = relocate_entry_gtt(obj, reloc, target_offset);
Borislav Petkov906bf7f2016-03-29 17:41:59 +0200548 else if (static_cpu_has(X86_FEATURE_CLFLUSH))
Chris Wilsonedf44272015-01-14 11:20:56 +0000549 ret = relocate_entry_clflush(obj, reloc, target_offset);
550 else {
551 WARN_ONCE(1, "Impossible case in relocation handling\n");
552 ret = -ENODEV;
553 }
Chris Wilson54cf91d2010-11-25 18:00:26 +0000554
Daniel Vetterd4d36012013-09-02 20:56:23 +0200555 if (ret)
556 return ret;
557
Chris Wilson54cf91d2010-11-25 18:00:26 +0000558 /* and update the user's relocation entry */
559 reloc->presumed_offset = target_offset;
560
Chris Wilson67731b82010-12-08 10:38:14 +0000561 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000562}
563
564static int
Ben Widawsky27173f12013-08-14 11:38:36 +0200565i915_gem_execbuffer_relocate_vma(struct i915_vma *vma,
566 struct eb_vmas *eb)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000567{
Chris Wilson1d83f442012-03-24 20:12:53 +0000568#define N_RELOC(x) ((x) / sizeof(struct drm_i915_gem_relocation_entry))
569 struct drm_i915_gem_relocation_entry stack_reloc[N_RELOC(512)];
Chris Wilson54cf91d2010-11-25 18:00:26 +0000570 struct drm_i915_gem_relocation_entry __user *user_relocs;
Ben Widawsky27173f12013-08-14 11:38:36 +0200571 struct drm_i915_gem_exec_object2 *entry = vma->exec_entry;
Chris Wilson1d83f442012-03-24 20:12:53 +0000572 int remain, ret;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000573
Gustavo Padovan3ed605b2016-04-26 12:32:27 -0300574 user_relocs = u64_to_user_ptr(entry->relocs_ptr);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000575
Chris Wilson1d83f442012-03-24 20:12:53 +0000576 remain = entry->relocation_count;
577 while (remain) {
578 struct drm_i915_gem_relocation_entry *r = stack_reloc;
579 int count = remain;
580 if (count > ARRAY_SIZE(stack_reloc))
581 count = ARRAY_SIZE(stack_reloc);
582 remain -= count;
583
584 if (__copy_from_user_inatomic(r, user_relocs, count*sizeof(r[0])))
Chris Wilson54cf91d2010-11-25 18:00:26 +0000585 return -EFAULT;
586
Chris Wilson1d83f442012-03-24 20:12:53 +0000587 do {
588 u64 offset = r->presumed_offset;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000589
Ben Widawsky3e7a0322013-12-06 14:10:57 -0800590 ret = i915_gem_execbuffer_relocate_entry(vma->obj, eb, r);
Chris Wilson1d83f442012-03-24 20:12:53 +0000591 if (ret)
592 return ret;
593
594 if (r->presumed_offset != offset &&
Linus Torvalds5b09c3e2016-05-22 14:19:37 -0700595 __put_user(r->presumed_offset, &user_relocs->presumed_offset)) {
Chris Wilson1d83f442012-03-24 20:12:53 +0000596 return -EFAULT;
597 }
598
599 user_relocs++;
600 r++;
601 } while (--count);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000602 }
603
604 return 0;
Chris Wilson1d83f442012-03-24 20:12:53 +0000605#undef N_RELOC
Chris Wilson54cf91d2010-11-25 18:00:26 +0000606}
607
608static int
Ben Widawsky27173f12013-08-14 11:38:36 +0200609i915_gem_execbuffer_relocate_vma_slow(struct i915_vma *vma,
610 struct eb_vmas *eb,
611 struct drm_i915_gem_relocation_entry *relocs)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000612{
Ben Widawsky27173f12013-08-14 11:38:36 +0200613 const struct drm_i915_gem_exec_object2 *entry = vma->exec_entry;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000614 int i, ret;
615
616 for (i = 0; i < entry->relocation_count; i++) {
Ben Widawsky3e7a0322013-12-06 14:10:57 -0800617 ret = i915_gem_execbuffer_relocate_entry(vma->obj, eb, &relocs[i]);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000618 if (ret)
619 return ret;
620 }
621
622 return 0;
623}
624
625static int
Ben Widawsky17601cbc2013-11-25 09:54:38 -0800626i915_gem_execbuffer_relocate(struct eb_vmas *eb)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000627{
Ben Widawsky27173f12013-08-14 11:38:36 +0200628 struct i915_vma *vma;
Chris Wilsond4aeee72011-03-14 15:11:24 +0000629 int ret = 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000630
Chris Wilsond4aeee72011-03-14 15:11:24 +0000631 /* This is the fast path and we cannot handle a pagefault whilst
632 * holding the struct mutex lest the user pass in the relocations
633 * contained within a mmaped bo. For in such a case we, the page
634 * fault handler would call i915_gem_fault() and we would try to
635 * acquire the struct mutex again. Obviously this is bad and so
636 * lockdep complains vehemently.
637 */
638 pagefault_disable();
Ben Widawsky27173f12013-08-14 11:38:36 +0200639 list_for_each_entry(vma, &eb->vmas, exec_list) {
640 ret = i915_gem_execbuffer_relocate_vma(vma, eb);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000641 if (ret)
Chris Wilsond4aeee72011-03-14 15:11:24 +0000642 break;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000643 }
Chris Wilsond4aeee72011-03-14 15:11:24 +0000644 pagefault_enable();
Chris Wilson54cf91d2010-11-25 18:00:26 +0000645
Chris Wilsond4aeee72011-03-14 15:11:24 +0000646 return ret;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000647}
648
Chris Wilsonedf44272015-01-14 11:20:56 +0000649static bool only_mappable_for_reloc(unsigned int flags)
650{
651 return (flags & (EXEC_OBJECT_NEEDS_FENCE | __EXEC_OBJECT_NEEDS_MAP)) ==
652 __EXEC_OBJECT_NEEDS_MAP;
653}
654
Chris Wilson1690e1e2011-12-14 13:57:08 +0100655static int
Ben Widawsky27173f12013-08-14 11:38:36 +0200656i915_gem_execbuffer_reserve_vma(struct i915_vma *vma,
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +0000657 struct intel_engine_cs *engine,
Ben Widawsky27173f12013-08-14 11:38:36 +0200658 bool *need_reloc)
Chris Wilson1690e1e2011-12-14 13:57:08 +0100659{
Ben Widawsky6f65e292013-12-06 14:10:56 -0800660 struct drm_i915_gem_object *obj = vma->obj;
Ben Widawsky27173f12013-08-14 11:38:36 +0200661 struct drm_i915_gem_exec_object2 *entry = vma->exec_entry;
Chris Wilsond23db882014-05-23 08:48:08 +0200662 uint64_t flags;
Chris Wilson1690e1e2011-12-14 13:57:08 +0100663 int ret;
664
Daniel Vetter08755462015-04-20 09:04:05 -0700665 flags = PIN_USER;
Daniel Vetter0229da32015-04-14 19:01:54 +0200666 if (entry->flags & EXEC_OBJECT_NEEDS_GTT)
667 flags |= PIN_GLOBAL;
668
Chris Wilsonedf44272015-01-14 11:20:56 +0000669 if (!drm_mm_node_allocated(&vma->node)) {
Michel Thierry101b5062015-10-01 13:33:57 +0100670 /* Wa32bitGeneralStateOffset & Wa32bitInstructionBaseOffset,
671 * limit address to the first 4GBs for unflagged objects.
672 */
673 if ((entry->flags & EXEC_OBJECT_SUPPORTS_48B_ADDRESS) == 0)
674 flags |= PIN_ZONE_4G;
Chris Wilsonedf44272015-01-14 11:20:56 +0000675 if (entry->flags & __EXEC_OBJECT_NEEDS_MAP)
676 flags |= PIN_GLOBAL | PIN_MAPPABLE;
Chris Wilsonedf44272015-01-14 11:20:56 +0000677 if (entry->flags & __EXEC_OBJECT_NEEDS_BIAS)
678 flags |= BATCH_OFFSET_BIAS | PIN_OFFSET_BIAS;
Chris Wilson506a8e82015-12-08 11:55:07 +0000679 if (entry->flags & EXEC_OBJECT_PINNED)
680 flags |= entry->offset | PIN_OFFSET_FIXED;
Michel Thierry101b5062015-10-01 13:33:57 +0100681 if ((flags & PIN_MAPPABLE) == 0)
682 flags |= PIN_HIGH;
Chris Wilsonedf44272015-01-14 11:20:56 +0000683 }
Daniel Vetter1ec9e262014-02-14 14:01:11 +0100684
Chris Wilson91b2db62016-08-04 16:32:23 +0100685 ret = i915_gem_object_pin(obj, vma->vm,
686 entry->pad_to_size,
687 entry->alignment,
688 flags);
Chris Wilsonedf44272015-01-14 11:20:56 +0000689 if ((ret == -ENOSPC || ret == -E2BIG) &&
690 only_mappable_for_reloc(entry->flags))
691 ret = i915_gem_object_pin(obj, vma->vm,
Chris Wilson91b2db62016-08-04 16:32:23 +0100692 entry->pad_to_size,
Chris Wilsonedf44272015-01-14 11:20:56 +0000693 entry->alignment,
Daniel Vetter0229da32015-04-14 19:01:54 +0200694 flags & ~PIN_MAPPABLE);
Chris Wilson1690e1e2011-12-14 13:57:08 +0100695 if (ret)
696 return ret;
697
Chris Wilson7788a762012-08-24 19:18:18 +0100698 entry->flags |= __EXEC_OBJECT_HAS_PIN;
699
Chris Wilson82b6b6d2014-08-09 17:37:24 +0100700 if (entry->flags & EXEC_OBJECT_NEEDS_FENCE) {
701 ret = i915_gem_object_get_fence(obj);
702 if (ret)
703 return ret;
Chris Wilson1690e1e2011-12-14 13:57:08 +0100704
Chris Wilson82b6b6d2014-08-09 17:37:24 +0100705 if (i915_gem_object_pin_fence(obj))
706 entry->flags |= __EXEC_OBJECT_HAS_FENCE;
Chris Wilson1690e1e2011-12-14 13:57:08 +0100707 }
708
Ben Widawsky27173f12013-08-14 11:38:36 +0200709 if (entry->offset != vma->node.start) {
710 entry->offset = vma->node.start;
Daniel Vettered5982e2013-01-17 22:23:36 +0100711 *need_reloc = true;
712 }
713
714 if (entry->flags & EXEC_OBJECT_WRITE) {
715 obj->base.pending_read_domains = I915_GEM_DOMAIN_RENDER;
716 obj->base.pending_write_domain = I915_GEM_DOMAIN_RENDER;
717 }
718
Chris Wilson1690e1e2011-12-14 13:57:08 +0100719 return 0;
Chris Wilson7788a762012-08-24 19:18:18 +0100720}
Chris Wilson1690e1e2011-12-14 13:57:08 +0100721
Chris Wilsond23db882014-05-23 08:48:08 +0200722static bool
Chris Wilsone6a84462014-08-11 12:00:12 +0200723need_reloc_mappable(struct i915_vma *vma)
724{
725 struct drm_i915_gem_exec_object2 *entry = vma->exec_entry;
726
727 if (entry->relocation_count == 0)
728 return false;
729
Chris Wilson596c5922016-02-26 11:03:20 +0000730 if (!vma->is_ggtt)
Chris Wilsone6a84462014-08-11 12:00:12 +0200731 return false;
732
733 /* See also use_cpu_reloc() */
734 if (HAS_LLC(vma->obj->base.dev))
735 return false;
736
737 if (vma->obj->base.write_domain == I915_GEM_DOMAIN_CPU)
738 return false;
739
740 return true;
741}
742
743static bool
744eb_vma_misplaced(struct i915_vma *vma)
Chris Wilsond23db882014-05-23 08:48:08 +0200745{
746 struct drm_i915_gem_exec_object2 *entry = vma->exec_entry;
747 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilsond23db882014-05-23 08:48:08 +0200748
Chris Wilson596c5922016-02-26 11:03:20 +0000749 WARN_ON(entry->flags & __EXEC_OBJECT_NEEDS_MAP && !vma->is_ggtt);
Chris Wilsond23db882014-05-23 08:48:08 +0200750
751 if (entry->alignment &&
752 vma->node.start & (entry->alignment - 1))
753 return true;
754
Chris Wilson91b2db62016-08-04 16:32:23 +0100755 if (vma->node.size < entry->pad_to_size)
756 return true;
757
Chris Wilson506a8e82015-12-08 11:55:07 +0000758 if (entry->flags & EXEC_OBJECT_PINNED &&
759 vma->node.start != entry->offset)
760 return true;
761
Chris Wilsond23db882014-05-23 08:48:08 +0200762 if (entry->flags & __EXEC_OBJECT_NEEDS_BIAS &&
763 vma->node.start < BATCH_OFFSET_BIAS)
764 return true;
765
Chris Wilsonedf44272015-01-14 11:20:56 +0000766 /* avoid costly ping-pong once a batch bo ended up non-mappable */
767 if (entry->flags & __EXEC_OBJECT_NEEDS_MAP && !obj->map_and_fenceable)
768 return !only_mappable_for_reloc(entry->flags);
769
Michel Thierry101b5062015-10-01 13:33:57 +0100770 if ((entry->flags & EXEC_OBJECT_SUPPORTS_48B_ADDRESS) == 0 &&
771 (vma->node.start + vma->node.size - 1) >> 32)
772 return true;
773
Chris Wilsond23db882014-05-23 08:48:08 +0200774 return false;
775}
776
Chris Wilson54cf91d2010-11-25 18:00:26 +0000777static int
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +0000778i915_gem_execbuffer_reserve(struct intel_engine_cs *engine,
Ben Widawsky27173f12013-08-14 11:38:36 +0200779 struct list_head *vmas,
Chris Wilsone2efd132016-05-24 14:53:34 +0100780 struct i915_gem_context *ctx,
Daniel Vettered5982e2013-01-17 22:23:36 +0100781 bool *need_relocs)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000782{
Chris Wilson432e58e2010-11-25 19:32:06 +0000783 struct drm_i915_gem_object *obj;
Ben Widawsky27173f12013-08-14 11:38:36 +0200784 struct i915_vma *vma;
Ben Widawsky68c8c172013-09-11 14:57:50 -0700785 struct i915_address_space *vm;
Ben Widawsky27173f12013-08-14 11:38:36 +0200786 struct list_head ordered_vmas;
Chris Wilson506a8e82015-12-08 11:55:07 +0000787 struct list_head pinned_vmas;
Chris Wilsonc0336662016-05-06 15:40:21 +0100788 bool has_fenced_gpu_access = INTEL_GEN(engine->i915) < 4;
Chris Wilson7788a762012-08-24 19:18:18 +0100789 int retry;
Chris Wilson6fe4f142011-01-10 17:35:37 +0000790
Ben Widawsky68c8c172013-09-11 14:57:50 -0700791 vm = list_first_entry(vmas, struct i915_vma, exec_list)->vm;
792
Ben Widawsky27173f12013-08-14 11:38:36 +0200793 INIT_LIST_HEAD(&ordered_vmas);
Chris Wilson506a8e82015-12-08 11:55:07 +0000794 INIT_LIST_HEAD(&pinned_vmas);
Ben Widawsky27173f12013-08-14 11:38:36 +0200795 while (!list_empty(vmas)) {
Chris Wilson6fe4f142011-01-10 17:35:37 +0000796 struct drm_i915_gem_exec_object2 *entry;
797 bool need_fence, need_mappable;
798
Ben Widawsky27173f12013-08-14 11:38:36 +0200799 vma = list_first_entry(vmas, struct i915_vma, exec_list);
800 obj = vma->obj;
801 entry = vma->exec_entry;
Chris Wilson6fe4f142011-01-10 17:35:37 +0000802
David Weinehallb1b38272015-05-20 17:00:13 +0300803 if (ctx->flags & CONTEXT_NO_ZEROMAP)
804 entry->flags |= __EXEC_OBJECT_NEEDS_BIAS;
805
Chris Wilson82b6b6d2014-08-09 17:37:24 +0100806 if (!has_fenced_gpu_access)
807 entry->flags &= ~EXEC_OBJECT_NEEDS_FENCE;
Chris Wilson6fe4f142011-01-10 17:35:37 +0000808 need_fence =
Chris Wilson6fe4f142011-01-10 17:35:37 +0000809 entry->flags & EXEC_OBJECT_NEEDS_FENCE &&
810 obj->tiling_mode != I915_TILING_NONE;
Ben Widawsky27173f12013-08-14 11:38:36 +0200811 need_mappable = need_fence || need_reloc_mappable(vma);
Chris Wilson6fe4f142011-01-10 17:35:37 +0000812
Chris Wilson506a8e82015-12-08 11:55:07 +0000813 if (entry->flags & EXEC_OBJECT_PINNED)
814 list_move_tail(&vma->exec_list, &pinned_vmas);
815 else if (need_mappable) {
Chris Wilsone6a84462014-08-11 12:00:12 +0200816 entry->flags |= __EXEC_OBJECT_NEEDS_MAP;
Ben Widawsky27173f12013-08-14 11:38:36 +0200817 list_move(&vma->exec_list, &ordered_vmas);
Chris Wilsone6a84462014-08-11 12:00:12 +0200818 } else
Ben Widawsky27173f12013-08-14 11:38:36 +0200819 list_move_tail(&vma->exec_list, &ordered_vmas);
Chris Wilson595dad72011-01-13 11:03:48 +0000820
Daniel Vettered5982e2013-01-17 22:23:36 +0100821 obj->base.pending_read_domains = I915_GEM_GPU_DOMAINS & ~I915_GEM_DOMAIN_COMMAND;
Chris Wilson595dad72011-01-13 11:03:48 +0000822 obj->base.pending_write_domain = 0;
Chris Wilson6fe4f142011-01-10 17:35:37 +0000823 }
Ben Widawsky27173f12013-08-14 11:38:36 +0200824 list_splice(&ordered_vmas, vmas);
Chris Wilson506a8e82015-12-08 11:55:07 +0000825 list_splice(&pinned_vmas, vmas);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000826
827 /* Attempt to pin all of the buffers into the GTT.
828 * This is done in 3 phases:
829 *
830 * 1a. Unbind all objects that do not match the GTT constraints for
831 * the execbuffer (fenceable, mappable, alignment etc).
832 * 1b. Increment pin count for already bound objects.
833 * 2. Bind new objects.
834 * 3. Decrement pin count.
835 *
Chris Wilson7788a762012-08-24 19:18:18 +0100836 * This avoid unnecessary unbinding of later objects in order to make
Chris Wilson54cf91d2010-11-25 18:00:26 +0000837 * room for the earlier objects *unless* we need to defragment.
838 */
839 retry = 0;
840 do {
Chris Wilson7788a762012-08-24 19:18:18 +0100841 int ret = 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000842
843 /* Unbind any ill-fitting objects or pin. */
Ben Widawsky27173f12013-08-14 11:38:36 +0200844 list_for_each_entry(vma, vmas, exec_list) {
Ben Widawsky27173f12013-08-14 11:38:36 +0200845 if (!drm_mm_node_allocated(&vma->node))
Chris Wilson54cf91d2010-11-25 18:00:26 +0000846 continue;
847
Chris Wilsone6a84462014-08-11 12:00:12 +0200848 if (eb_vma_misplaced(vma))
Ben Widawsky27173f12013-08-14 11:38:36 +0200849 ret = i915_vma_unbind(vma);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000850 else
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +0000851 ret = i915_gem_execbuffer_reserve_vma(vma,
852 engine,
853 need_relocs);
Chris Wilson432e58e2010-11-25 19:32:06 +0000854 if (ret)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000855 goto err;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000856 }
857
858 /* Bind fresh objects */
Ben Widawsky27173f12013-08-14 11:38:36 +0200859 list_for_each_entry(vma, vmas, exec_list) {
860 if (drm_mm_node_allocated(&vma->node))
Chris Wilson1690e1e2011-12-14 13:57:08 +0100861 continue;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000862
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +0000863 ret = i915_gem_execbuffer_reserve_vma(vma, engine,
864 need_relocs);
Chris Wilson7788a762012-08-24 19:18:18 +0100865 if (ret)
866 goto err;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000867 }
868
Chris Wilsona415d352013-11-26 11:23:15 +0000869err:
Chris Wilson6c085a72012-08-20 11:40:46 +0200870 if (ret != -ENOSPC || retry++)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000871 return ret;
872
Chris Wilsona415d352013-11-26 11:23:15 +0000873 /* Decrement pin count for bound objects */
874 list_for_each_entry(vma, vmas, exec_list)
875 i915_gem_execbuffer_unreserve_vma(vma);
876
Ben Widawsky68c8c172013-09-11 14:57:50 -0700877 ret = i915_gem_evict_vm(vm, true);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000878 if (ret)
879 return ret;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000880 } while (1);
881}
882
883static int
884i915_gem_execbuffer_relocate_slow(struct drm_device *dev,
Daniel Vettered5982e2013-01-17 22:23:36 +0100885 struct drm_i915_gem_execbuffer2 *args,
Chris Wilson54cf91d2010-11-25 18:00:26 +0000886 struct drm_file *file,
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +0000887 struct intel_engine_cs *engine,
Ben Widawsky27173f12013-08-14 11:38:36 +0200888 struct eb_vmas *eb,
David Weinehallb1b38272015-05-20 17:00:13 +0300889 struct drm_i915_gem_exec_object2 *exec,
Chris Wilsone2efd132016-05-24 14:53:34 +0100890 struct i915_gem_context *ctx)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000891{
892 struct drm_i915_gem_relocation_entry *reloc;
Ben Widawsky27173f12013-08-14 11:38:36 +0200893 struct i915_address_space *vm;
894 struct i915_vma *vma;
Daniel Vettered5982e2013-01-17 22:23:36 +0100895 bool need_relocs;
Chris Wilsondd6864a2011-01-12 23:49:13 +0000896 int *reloc_offset;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000897 int i, total, ret;
Daniel Vetterb205ca52013-09-19 14:00:11 +0200898 unsigned count = args->buffer_count;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000899
Ben Widawsky27173f12013-08-14 11:38:36 +0200900 vm = list_first_entry(&eb->vmas, struct i915_vma, exec_list)->vm;
901
Chris Wilson67731b82010-12-08 10:38:14 +0000902 /* We may process another execbuffer during the unlock... */
Ben Widawsky27173f12013-08-14 11:38:36 +0200903 while (!list_empty(&eb->vmas)) {
904 vma = list_first_entry(&eb->vmas, struct i915_vma, exec_list);
905 list_del_init(&vma->exec_list);
Chris Wilsona415d352013-11-26 11:23:15 +0000906 i915_gem_execbuffer_unreserve_vma(vma);
Chris Wilsonf8c417c2016-07-20 13:31:53 +0100907 i915_gem_object_put(vma->obj);
Chris Wilson67731b82010-12-08 10:38:14 +0000908 }
909
Chris Wilson54cf91d2010-11-25 18:00:26 +0000910 mutex_unlock(&dev->struct_mutex);
911
912 total = 0;
913 for (i = 0; i < count; i++)
Chris Wilson432e58e2010-11-25 19:32:06 +0000914 total += exec[i].relocation_count;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000915
Chris Wilsondd6864a2011-01-12 23:49:13 +0000916 reloc_offset = drm_malloc_ab(count, sizeof(*reloc_offset));
Chris Wilson54cf91d2010-11-25 18:00:26 +0000917 reloc = drm_malloc_ab(total, sizeof(*reloc));
Chris Wilsondd6864a2011-01-12 23:49:13 +0000918 if (reloc == NULL || reloc_offset == NULL) {
919 drm_free_large(reloc);
920 drm_free_large(reloc_offset);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000921 mutex_lock(&dev->struct_mutex);
922 return -ENOMEM;
923 }
924
925 total = 0;
926 for (i = 0; i < count; i++) {
927 struct drm_i915_gem_relocation_entry __user *user_relocs;
Chris Wilson262b6d32013-01-15 16:17:54 +0000928 u64 invalid_offset = (u64)-1;
929 int j;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000930
Gustavo Padovan3ed605b2016-04-26 12:32:27 -0300931 user_relocs = u64_to_user_ptr(exec[i].relocs_ptr);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000932
933 if (copy_from_user(reloc+total, user_relocs,
Chris Wilson432e58e2010-11-25 19:32:06 +0000934 exec[i].relocation_count * sizeof(*reloc))) {
Chris Wilson54cf91d2010-11-25 18:00:26 +0000935 ret = -EFAULT;
936 mutex_lock(&dev->struct_mutex);
937 goto err;
938 }
939
Chris Wilson262b6d32013-01-15 16:17:54 +0000940 /* As we do not update the known relocation offsets after
941 * relocating (due to the complexities in lock handling),
942 * we need to mark them as invalid now so that we force the
943 * relocation processing next time. Just in case the target
944 * object is evicted and then rebound into its old
945 * presumed_offset before the next execbuffer - if that
946 * happened we would make the mistake of assuming that the
947 * relocations were valid.
948 */
949 for (j = 0; j < exec[i].relocation_count; j++) {
Chris Wilson9aab8bf2014-05-23 10:45:52 +0100950 if (__copy_to_user(&user_relocs[j].presumed_offset,
951 &invalid_offset,
952 sizeof(invalid_offset))) {
Chris Wilson262b6d32013-01-15 16:17:54 +0000953 ret = -EFAULT;
954 mutex_lock(&dev->struct_mutex);
955 goto err;
956 }
957 }
958
Chris Wilsondd6864a2011-01-12 23:49:13 +0000959 reloc_offset[i] = total;
Chris Wilson432e58e2010-11-25 19:32:06 +0000960 total += exec[i].relocation_count;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000961 }
962
963 ret = i915_mutex_lock_interruptible(dev);
964 if (ret) {
965 mutex_lock(&dev->struct_mutex);
966 goto err;
967 }
968
Chris Wilson67731b82010-12-08 10:38:14 +0000969 /* reacquire the objects */
Chris Wilson67731b82010-12-08 10:38:14 +0000970 eb_reset(eb);
Ben Widawsky27173f12013-08-14 11:38:36 +0200971 ret = eb_lookup_vmas(eb, exec, args, vm, file);
Chris Wilson3b96eff2013-01-08 10:53:14 +0000972 if (ret)
973 goto err;
Chris Wilson67731b82010-12-08 10:38:14 +0000974
Daniel Vettered5982e2013-01-17 22:23:36 +0100975 need_relocs = (args->flags & I915_EXEC_NO_RELOC) == 0;
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +0000976 ret = i915_gem_execbuffer_reserve(engine, &eb->vmas, ctx,
977 &need_relocs);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000978 if (ret)
979 goto err;
980
Ben Widawsky27173f12013-08-14 11:38:36 +0200981 list_for_each_entry(vma, &eb->vmas, exec_list) {
982 int offset = vma->exec_entry - exec;
983 ret = i915_gem_execbuffer_relocate_vma_slow(vma, eb,
984 reloc + reloc_offset[offset]);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000985 if (ret)
986 goto err;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000987 }
988
989 /* Leave the user relocations as are, this is the painfully slow path,
990 * and we want to avoid the complication of dropping the lock whilst
991 * having buffers reserved in the aperture and so causing spurious
992 * ENOSPC for random operations.
993 */
994
995err:
996 drm_free_large(reloc);
Chris Wilsondd6864a2011-01-12 23:49:13 +0000997 drm_free_large(reloc_offset);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000998 return ret;
999}
1000
Chris Wilson54cf91d2010-11-25 18:00:26 +00001001static int
John Harrison535fbe82015-05-29 17:43:32 +01001002i915_gem_execbuffer_move_to_gpu(struct drm_i915_gem_request *req,
Ben Widawsky27173f12013-08-14 11:38:36 +02001003 struct list_head *vmas)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001004{
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00001005 const unsigned other_rings = ~intel_engine_flag(req->engine);
Ben Widawsky27173f12013-08-14 11:38:36 +02001006 struct i915_vma *vma;
Daniel Vetter6ac42f42012-07-21 12:25:01 +02001007 uint32_t flush_domains = 0;
Chris Wilson000433b2013-08-08 14:41:09 +01001008 bool flush_chipset = false;
Chris Wilson432e58e2010-11-25 19:32:06 +00001009 int ret;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001010
Ben Widawsky27173f12013-08-14 11:38:36 +02001011 list_for_each_entry(vma, vmas, exec_list) {
1012 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilson03ade512015-04-27 13:41:18 +01001013
1014 if (obj->active & other_rings) {
Chris Wilson8e637172016-08-02 22:50:26 +01001015 ret = i915_gem_object_sync(obj, req);
Chris Wilson03ade512015-04-27 13:41:18 +01001016 if (ret)
1017 return ret;
1018 }
Daniel Vetter6ac42f42012-07-21 12:25:01 +02001019
1020 if (obj->base.write_domain & I915_GEM_DOMAIN_CPU)
Chris Wilson000433b2013-08-08 14:41:09 +01001021 flush_chipset |= i915_gem_clflush_object(obj, false);
Daniel Vetter6ac42f42012-07-21 12:25:01 +02001022
Daniel Vetter6ac42f42012-07-21 12:25:01 +02001023 flush_domains |= obj->base.write_domain;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001024 }
1025
Chris Wilson000433b2013-08-08 14:41:09 +01001026 if (flush_chipset)
Chris Wilsonc0336662016-05-06 15:40:21 +01001027 i915_gem_chipset_flush(req->engine->i915);
Daniel Vetter6ac42f42012-07-21 12:25:01 +02001028
1029 if (flush_domains & I915_GEM_DOMAIN_GTT)
1030 wmb();
1031
Chris Wilsonc7fe7d22016-08-02 22:50:24 +01001032 /* Unconditionally invalidate GPU caches and TLBs. */
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001033 return req->engine->emit_flush(req, EMIT_INVALIDATE);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001034}
1035
Chris Wilson432e58e2010-11-25 19:32:06 +00001036static bool
1037i915_gem_check_execbuffer(struct drm_i915_gem_execbuffer2 *exec)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001038{
Daniel Vettered5982e2013-01-17 22:23:36 +01001039 if (exec->flags & __I915_EXEC_UNKNOWN_FLAGS)
1040 return false;
1041
Chris Wilson2f5945b2015-10-06 11:39:55 +01001042 /* Kernel clipping was a DRI1 misfeature */
1043 if (exec->num_cliprects || exec->cliprects_ptr)
1044 return false;
1045
1046 if (exec->DR4 == 0xffffffff) {
1047 DRM_DEBUG("UXA submitting garbage DR4, fixing up\n");
1048 exec->DR4 = 0;
1049 }
1050 if (exec->DR1 || exec->DR4)
1051 return false;
1052
1053 if ((exec->batch_start_offset | exec->batch_len) & 0x7)
1054 return false;
1055
1056 return true;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001057}
1058
1059static int
Chris Wilsonad19f102014-08-10 06:29:08 +01001060validate_exec_list(struct drm_device *dev,
1061 struct drm_i915_gem_exec_object2 *exec,
Chris Wilson54cf91d2010-11-25 18:00:26 +00001062 int count)
1063{
Daniel Vetterb205ca52013-09-19 14:00:11 +02001064 unsigned relocs_total = 0;
1065 unsigned relocs_max = UINT_MAX / sizeof(struct drm_i915_gem_relocation_entry);
Chris Wilsonad19f102014-08-10 06:29:08 +01001066 unsigned invalid_flags;
1067 int i;
1068
Dave Gordon9e2793f62016-07-14 14:52:03 +01001069 /* INTERNAL flags must not overlap with external ones */
1070 BUILD_BUG_ON(__EXEC_OBJECT_INTERNAL_FLAGS & ~__EXEC_OBJECT_UNKNOWN_FLAGS);
1071
Chris Wilsonad19f102014-08-10 06:29:08 +01001072 invalid_flags = __EXEC_OBJECT_UNKNOWN_FLAGS;
1073 if (USES_FULL_PPGTT(dev))
1074 invalid_flags |= EXEC_OBJECT_NEEDS_GTT;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001075
1076 for (i = 0; i < count; i++) {
Gustavo Padovan3ed605b2016-04-26 12:32:27 -03001077 char __user *ptr = u64_to_user_ptr(exec[i].relocs_ptr);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001078 int length; /* limited by fault_in_pages_readable() */
1079
Chris Wilsonad19f102014-08-10 06:29:08 +01001080 if (exec[i].flags & invalid_flags)
Daniel Vettered5982e2013-01-17 22:23:36 +01001081 return -EINVAL;
1082
Michał Winiarski934acce2015-12-29 18:24:52 +01001083 /* Offset can be used as input (EXEC_OBJECT_PINNED), reject
1084 * any non-page-aligned or non-canonical addresses.
1085 */
1086 if (exec[i].flags & EXEC_OBJECT_PINNED) {
1087 if (exec[i].offset !=
1088 gen8_canonical_addr(exec[i].offset & PAGE_MASK))
1089 return -EINVAL;
1090
1091 /* From drm_mm perspective address space is continuous,
1092 * so from this point we're always using non-canonical
1093 * form internally.
1094 */
1095 exec[i].offset = gen8_noncanonical_addr(exec[i].offset);
1096 }
1097
Chris Wilson55a97852015-06-19 13:59:46 +01001098 if (exec[i].alignment && !is_power_of_2(exec[i].alignment))
1099 return -EINVAL;
1100
Chris Wilson91b2db62016-08-04 16:32:23 +01001101 /* pad_to_size was once a reserved field, so sanitize it */
1102 if (exec[i].flags & EXEC_OBJECT_PAD_TO_SIZE) {
1103 if (offset_in_page(exec[i].pad_to_size))
1104 return -EINVAL;
1105 } else {
1106 exec[i].pad_to_size = 0;
1107 }
1108
Kees Cook3118a4f2013-03-11 17:31:45 -07001109 /* First check for malicious input causing overflow in
1110 * the worst case where we need to allocate the entire
1111 * relocation tree as a single array.
1112 */
1113 if (exec[i].relocation_count > relocs_max - relocs_total)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001114 return -EINVAL;
Kees Cook3118a4f2013-03-11 17:31:45 -07001115 relocs_total += exec[i].relocation_count;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001116
1117 length = exec[i].relocation_count *
1118 sizeof(struct drm_i915_gem_relocation_entry);
Kees Cook30587532013-03-11 14:37:35 -07001119 /*
1120 * We must check that the entire relocation array is safe
1121 * to read, but since we may need to update the presumed
1122 * offsets during execution, check for full write access.
1123 */
Chris Wilson54cf91d2010-11-25 18:00:26 +00001124 if (!access_ok(VERIFY_WRITE, ptr, length))
1125 return -EFAULT;
1126
Jani Nikulad330a952014-01-21 11:24:25 +02001127 if (likely(!i915.prefault_disable)) {
Xiong Zhang0b74b502013-07-19 13:51:24 +08001128 if (fault_in_multipages_readable(ptr, length))
1129 return -EFAULT;
1130 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001131 }
1132
1133 return 0;
1134}
1135
Chris Wilsone2efd132016-05-24 14:53:34 +01001136static struct i915_gem_context *
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001137i915_gem_validate_context(struct drm_device *dev, struct drm_file *file,
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001138 struct intel_engine_cs *engine, const u32 ctx_id)
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001139{
Chris Wilsone2efd132016-05-24 14:53:34 +01001140 struct i915_gem_context *ctx = NULL;
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001141 struct i915_ctx_hang_stats *hs;
1142
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001143 if (engine->id != RCS && ctx_id != DEFAULT_CONTEXT_HANDLE)
Daniel Vetter7c9c4b82013-12-18 16:37:49 +01001144 return ERR_PTR(-EINVAL);
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001145
Chris Wilsonca585b52016-05-24 14:53:36 +01001146 ctx = i915_gem_context_lookup(file->driver_priv, ctx_id);
Ben Widawsky72ad5c42014-01-02 19:50:27 -10001147 if (IS_ERR(ctx))
Ben Widawsky41bde552013-12-06 14:11:21 -08001148 return ctx;
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001149
Ben Widawsky41bde552013-12-06 14:11:21 -08001150 hs = &ctx->hang_stats;
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001151 if (hs->banned) {
1152 DRM_DEBUG("Context %u tried to submit while banned\n", ctx_id);
Ben Widawsky41bde552013-12-06 14:11:21 -08001153 return ERR_PTR(-EIO);
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001154 }
1155
Ben Widawsky41bde552013-12-06 14:11:21 -08001156 return ctx;
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001157}
1158
Chris Wilson5cf3d282016-08-04 07:52:43 +01001159void i915_vma_move_to_active(struct i915_vma *vma,
1160 struct drm_i915_gem_request *req,
1161 unsigned int flags)
1162{
1163 struct drm_i915_gem_object *obj = vma->obj;
1164 const unsigned int idx = req->engine->id;
1165
1166 GEM_BUG_ON(!drm_mm_node_allocated(&vma->node));
1167
1168 obj->dirty = 1; /* be paranoid */
1169
Chris Wilsonb0decaf2016-08-04 07:52:44 +01001170 /* Add a reference if we're newly entering the active list.
1171 * The order in which we add operations to the retirement queue is
1172 * vital here: mark_active adds to the start of the callback list,
1173 * such that subsequent callbacks are called first. Therefore we
1174 * add the active reference first and queue for it to be dropped
1175 * *last*.
1176 */
Chris Wilson5cf3d282016-08-04 07:52:43 +01001177 if (obj->active == 0)
1178 i915_gem_object_get(obj);
1179 obj->active |= 1 << idx;
1180 i915_gem_active_set(&obj->last_read[idx], req);
1181
1182 if (flags & EXEC_OBJECT_WRITE) {
1183 i915_gem_active_set(&obj->last_write, req);
1184
1185 intel_fb_obj_invalidate(obj, ORIGIN_CS);
1186
1187 /* update for the implicit flush after a batch */
1188 obj->base.write_domain &= ~I915_GEM_GPU_DOMAINS;
1189 }
1190
1191 if (flags & EXEC_OBJECT_NEEDS_FENCE) {
1192 i915_gem_active_set(&obj->last_fence, req);
1193 if (flags & __EXEC_OBJECT_HAS_FENCE) {
1194 struct drm_i915_private *dev_priv = req->i915;
1195
1196 list_move_tail(&dev_priv->fence_regs[obj->fence_reg].lru_list,
1197 &dev_priv->mm.fence_list);
1198 }
1199 }
1200
Chris Wilsonb0decaf2016-08-04 07:52:44 +01001201 i915_vma_set_active(vma, idx);
1202 i915_gem_active_set(&vma->last_read[idx], req);
Chris Wilson5cf3d282016-08-04 07:52:43 +01001203 list_move_tail(&vma->vm_link, &vma->vm->active_list);
1204}
1205
Chris Wilson5b043f42016-08-02 22:50:38 +01001206static void
Ben Widawsky27173f12013-08-14 11:38:36 +02001207i915_gem_execbuffer_move_to_active(struct list_head *vmas,
John Harrison8a8edb52015-05-29 17:43:33 +01001208 struct drm_i915_gem_request *req)
Chris Wilson432e58e2010-11-25 19:32:06 +00001209{
Ben Widawsky27173f12013-08-14 11:38:36 +02001210 struct i915_vma *vma;
Chris Wilson432e58e2010-11-25 19:32:06 +00001211
Ben Widawsky27173f12013-08-14 11:38:36 +02001212 list_for_each_entry(vma, vmas, exec_list) {
1213 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilson69c2fc82012-07-20 12:41:03 +01001214 u32 old_read = obj->base.read_domains;
1215 u32 old_write = obj->base.write_domain;
Chris Wilsondb53a302011-02-03 11:57:46 +00001216
Chris Wilson432e58e2010-11-25 19:32:06 +00001217 obj->base.write_domain = obj->base.pending_write_domain;
Chris Wilson5cf3d282016-08-04 07:52:43 +01001218 if (obj->base.write_domain)
1219 vma->exec_entry->flags |= EXEC_OBJECT_WRITE;
1220 else
Daniel Vettered5982e2013-01-17 22:23:36 +01001221 obj->base.pending_read_domains |= obj->base.read_domains;
1222 obj->base.read_domains = obj->base.pending_read_domains;
Chris Wilson432e58e2010-11-25 19:32:06 +00001223
Chris Wilson5cf3d282016-08-04 07:52:43 +01001224 i915_vma_move_to_active(vma, req, vma->exec_entry->flags);
Chris Wilsondb53a302011-02-03 11:57:46 +00001225 trace_i915_gem_object_change_domain(obj, old_read, old_write);
Chris Wilson432e58e2010-11-25 19:32:06 +00001226 }
1227}
1228
Chris Wilson54cf91d2010-11-25 18:00:26 +00001229static int
Chris Wilsonb5321f32016-08-02 22:50:18 +01001230i915_reset_gen7_sol_offsets(struct drm_i915_gem_request *req)
Eric Anholtae662d32012-01-03 09:23:29 -08001231{
Chris Wilson7e37f882016-08-02 22:50:21 +01001232 struct intel_ring *ring = req->ring;
Eric Anholtae662d32012-01-03 09:23:29 -08001233 int ret, i;
1234
Chris Wilsonb5321f32016-08-02 22:50:18 +01001235 if (!IS_GEN7(req->i915) || req->engine->id != RCS) {
Daniel Vetter9d662da2014-04-24 08:09:09 +02001236 DRM_DEBUG("sol reset is gen7/rcs only\n");
1237 return -EINVAL;
1238 }
Eric Anholtae662d32012-01-03 09:23:29 -08001239
John Harrison5fb9de12015-05-29 17:44:07 +01001240 ret = intel_ring_begin(req, 4 * 3);
Eric Anholtae662d32012-01-03 09:23:29 -08001241 if (ret)
1242 return ret;
1243
1244 for (i = 0; i < 4; i++) {
Chris Wilsonb5321f32016-08-02 22:50:18 +01001245 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
1246 intel_ring_emit_reg(ring, GEN7_SO_WRITE_OFFSET(i));
1247 intel_ring_emit(ring, 0);
Eric Anholtae662d32012-01-03 09:23:29 -08001248 }
1249
Chris Wilsonb5321f32016-08-02 22:50:18 +01001250 intel_ring_advance(ring);
Eric Anholtae662d32012-01-03 09:23:29 -08001251
1252 return 0;
1253}
1254
Brad Volkin71745372014-12-11 12:13:12 -08001255static struct drm_i915_gem_object*
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001256i915_gem_execbuffer_parse(struct intel_engine_cs *engine,
Brad Volkin71745372014-12-11 12:13:12 -08001257 struct drm_i915_gem_exec_object2 *shadow_exec_entry,
1258 struct eb_vmas *eb,
1259 struct drm_i915_gem_object *batch_obj,
1260 u32 batch_start_offset,
1261 u32 batch_len,
Chris Wilson17cabf52015-01-14 11:20:57 +00001262 bool is_master)
Brad Volkin71745372014-12-11 12:13:12 -08001263{
Brad Volkin71745372014-12-11 12:13:12 -08001264 struct drm_i915_gem_object *shadow_batch_obj;
Chris Wilson17cabf52015-01-14 11:20:57 +00001265 struct i915_vma *vma;
Brad Volkin71745372014-12-11 12:13:12 -08001266 int ret;
1267
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001268 shadow_batch_obj = i915_gem_batch_pool_get(&engine->batch_pool,
Chris Wilson17cabf52015-01-14 11:20:57 +00001269 PAGE_ALIGN(batch_len));
Brad Volkin71745372014-12-11 12:13:12 -08001270 if (IS_ERR(shadow_batch_obj))
1271 return shadow_batch_obj;
1272
Chris Wilson33a051a2016-07-27 09:07:26 +01001273 ret = intel_engine_cmd_parser(engine,
1274 batch_obj,
1275 shadow_batch_obj,
1276 batch_start_offset,
1277 batch_len,
1278 is_master);
Chris Wilson17cabf52015-01-14 11:20:57 +00001279 if (ret)
1280 goto err;
Brad Volkin71745372014-12-11 12:13:12 -08001281
Chris Wilson17cabf52015-01-14 11:20:57 +00001282 ret = i915_gem_obj_ggtt_pin(shadow_batch_obj, 0, 0);
1283 if (ret)
1284 goto err;
Brad Volkin71745372014-12-11 12:13:12 -08001285
Chris Wilsonde4e7832015-04-07 16:20:35 +01001286 i915_gem_object_unpin_pages(shadow_batch_obj);
1287
Chris Wilson17cabf52015-01-14 11:20:57 +00001288 memset(shadow_exec_entry, 0, sizeof(*shadow_exec_entry));
Brad Volkin71745372014-12-11 12:13:12 -08001289
Chris Wilson17cabf52015-01-14 11:20:57 +00001290 vma = i915_gem_obj_to_ggtt(shadow_batch_obj);
1291 vma->exec_entry = shadow_exec_entry;
Chris Wilsonde4e7832015-04-07 16:20:35 +01001292 vma->exec_entry->flags = __EXEC_OBJECT_HAS_PIN;
Chris Wilson25dc5562016-07-20 13:31:52 +01001293 i915_gem_object_get(shadow_batch_obj);
Chris Wilson17cabf52015-01-14 11:20:57 +00001294 list_add_tail(&vma->exec_list, &eb->vmas);
Brad Volkin71745372014-12-11 12:13:12 -08001295
Chris Wilson17cabf52015-01-14 11:20:57 +00001296 shadow_batch_obj->base.pending_read_domains = I915_GEM_DOMAIN_COMMAND;
Brad Volkin71745372014-12-11 12:13:12 -08001297
Chris Wilson17cabf52015-01-14 11:20:57 +00001298 return shadow_batch_obj;
1299
1300err:
Chris Wilsonde4e7832015-04-07 16:20:35 +01001301 i915_gem_object_unpin_pages(shadow_batch_obj);
Chris Wilson17cabf52015-01-14 11:20:57 +00001302 if (ret == -EACCES) /* unhandled chained batch */
1303 return batch_obj;
1304 else
1305 return ERR_PTR(ret);
Brad Volkin71745372014-12-11 12:13:12 -08001306}
Chris Wilson5c6c6002014-09-06 10:28:27 +01001307
Chris Wilson5b043f42016-08-02 22:50:38 +01001308static int
1309execbuf_submit(struct i915_execbuffer_params *params,
1310 struct drm_i915_gem_execbuffer2 *args,
1311 struct list_head *vmas)
Oscar Mateo78382592014-07-03 16:28:05 +01001312{
Chris Wilsonb5321f32016-08-02 22:50:18 +01001313 struct drm_i915_private *dev_priv = params->request->i915;
John Harrison5f19e2b2015-05-29 17:43:27 +01001314 u64 exec_start, exec_len;
Oscar Mateo78382592014-07-03 16:28:05 +01001315 int instp_mode;
1316 u32 instp_mask;
Chris Wilson2f5945b2015-10-06 11:39:55 +01001317 int ret;
Oscar Mateo78382592014-07-03 16:28:05 +01001318
John Harrison535fbe82015-05-29 17:43:32 +01001319 ret = i915_gem_execbuffer_move_to_gpu(params->request, vmas);
Oscar Mateo78382592014-07-03 16:28:05 +01001320 if (ret)
Chris Wilson2f5945b2015-10-06 11:39:55 +01001321 return ret;
Oscar Mateo78382592014-07-03 16:28:05 +01001322
John Harrisonba01cc92015-05-29 17:43:41 +01001323 ret = i915_switch_context(params->request);
Oscar Mateo78382592014-07-03 16:28:05 +01001324 if (ret)
Chris Wilson2f5945b2015-10-06 11:39:55 +01001325 return ret;
Oscar Mateo78382592014-07-03 16:28:05 +01001326
1327 instp_mode = args->flags & I915_EXEC_CONSTANTS_MASK;
1328 instp_mask = I915_EXEC_CONSTANTS_MASK;
1329 switch (instp_mode) {
1330 case I915_EXEC_CONSTANTS_REL_GENERAL:
1331 case I915_EXEC_CONSTANTS_ABSOLUTE:
1332 case I915_EXEC_CONSTANTS_REL_SURFACE:
Chris Wilsonb5321f32016-08-02 22:50:18 +01001333 if (instp_mode != 0 && params->engine->id != RCS) {
Oscar Mateo78382592014-07-03 16:28:05 +01001334 DRM_DEBUG("non-0 rel constants mode on non-RCS\n");
Chris Wilson2f5945b2015-10-06 11:39:55 +01001335 return -EINVAL;
Oscar Mateo78382592014-07-03 16:28:05 +01001336 }
1337
1338 if (instp_mode != dev_priv->relative_constants_mode) {
Chris Wilsonb5321f32016-08-02 22:50:18 +01001339 if (INTEL_INFO(dev_priv)->gen < 4) {
Oscar Mateo78382592014-07-03 16:28:05 +01001340 DRM_DEBUG("no rel constants on pre-gen4\n");
Chris Wilson2f5945b2015-10-06 11:39:55 +01001341 return -EINVAL;
Oscar Mateo78382592014-07-03 16:28:05 +01001342 }
1343
Chris Wilsonb5321f32016-08-02 22:50:18 +01001344 if (INTEL_INFO(dev_priv)->gen > 5 &&
Oscar Mateo78382592014-07-03 16:28:05 +01001345 instp_mode == I915_EXEC_CONSTANTS_REL_SURFACE) {
1346 DRM_DEBUG("rel surface constants mode invalid on gen5+\n");
Chris Wilson2f5945b2015-10-06 11:39:55 +01001347 return -EINVAL;
Oscar Mateo78382592014-07-03 16:28:05 +01001348 }
1349
1350 /* The HW changed the meaning on this bit on gen6 */
Chris Wilsonb5321f32016-08-02 22:50:18 +01001351 if (INTEL_INFO(dev_priv)->gen >= 6)
Oscar Mateo78382592014-07-03 16:28:05 +01001352 instp_mask &= ~I915_EXEC_CONSTANTS_REL_SURFACE;
1353 }
1354 break;
1355 default:
1356 DRM_DEBUG("execbuf with unknown constants: %d\n", instp_mode);
Chris Wilson2f5945b2015-10-06 11:39:55 +01001357 return -EINVAL;
Oscar Mateo78382592014-07-03 16:28:05 +01001358 }
1359
Chris Wilsonb5321f32016-08-02 22:50:18 +01001360 if (params->engine->id == RCS &&
Chris Wilson2f5945b2015-10-06 11:39:55 +01001361 instp_mode != dev_priv->relative_constants_mode) {
Chris Wilson7e37f882016-08-02 22:50:21 +01001362 struct intel_ring *ring = params->request->ring;
Chris Wilsonb5321f32016-08-02 22:50:18 +01001363
John Harrison5fb9de12015-05-29 17:44:07 +01001364 ret = intel_ring_begin(params->request, 4);
Oscar Mateo78382592014-07-03 16:28:05 +01001365 if (ret)
Chris Wilson2f5945b2015-10-06 11:39:55 +01001366 return ret;
Oscar Mateo78382592014-07-03 16:28:05 +01001367
Chris Wilsonb5321f32016-08-02 22:50:18 +01001368 intel_ring_emit(ring, MI_NOOP);
1369 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
1370 intel_ring_emit_reg(ring, INSTPM);
1371 intel_ring_emit(ring, instp_mask << 16 | instp_mode);
1372 intel_ring_advance(ring);
Oscar Mateo78382592014-07-03 16:28:05 +01001373
1374 dev_priv->relative_constants_mode = instp_mode;
1375 }
1376
1377 if (args->flags & I915_EXEC_GEN7_SOL_RESET) {
Chris Wilsonb5321f32016-08-02 22:50:18 +01001378 ret = i915_reset_gen7_sol_offsets(params->request);
Oscar Mateo78382592014-07-03 16:28:05 +01001379 if (ret)
Chris Wilson2f5945b2015-10-06 11:39:55 +01001380 return ret;
Oscar Mateo78382592014-07-03 16:28:05 +01001381 }
1382
John Harrison5f19e2b2015-05-29 17:43:27 +01001383 exec_len = args->batch_len;
1384 exec_start = params->batch_obj_vm_offset +
1385 params->args_batch_start_offset;
1386
Ville Syrjälä9d611c02015-12-14 18:23:49 +02001387 if (exec_len == 0)
1388 exec_len = params->batch_obj->base.size;
1389
Chris Wilson803688b2016-08-02 22:50:27 +01001390 ret = params->engine->emit_bb_start(params->request,
1391 exec_start, exec_len,
1392 params->dispatch_flags);
Chris Wilson2f5945b2015-10-06 11:39:55 +01001393 if (ret)
1394 return ret;
Oscar Mateo78382592014-07-03 16:28:05 +01001395
John Harrison95c24162015-05-29 17:43:31 +01001396 trace_i915_gem_ring_dispatch(params->request, params->dispatch_flags);
Oscar Mateo78382592014-07-03 16:28:05 +01001397
John Harrison8a8edb52015-05-29 17:43:33 +01001398 i915_gem_execbuffer_move_to_active(vmas, params->request);
Oscar Mateo78382592014-07-03 16:28:05 +01001399
Chris Wilson2f5945b2015-10-06 11:39:55 +01001400 return 0;
Oscar Mateo78382592014-07-03 16:28:05 +01001401}
1402
Zhao Yakuia8ebba72014-04-17 10:37:40 +08001403/**
1404 * Find one BSD ring to dispatch the corresponding BSD command.
Chris Wilsonc80ff162016-07-27 09:07:27 +01001405 * The engine index is returned.
Zhao Yakuia8ebba72014-04-17 10:37:40 +08001406 */
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001407static unsigned int
Chris Wilsonc80ff162016-07-27 09:07:27 +01001408gen8_dispatch_bsd_engine(struct drm_i915_private *dev_priv,
1409 struct drm_file *file)
Zhao Yakuia8ebba72014-04-17 10:37:40 +08001410{
Zhao Yakuia8ebba72014-04-17 10:37:40 +08001411 struct drm_i915_file_private *file_priv = file->driver_priv;
1412
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001413 /* Check whether the file_priv has already selected one ring. */
Chris Wilsonc80ff162016-07-27 09:07:27 +01001414 if ((int)file_priv->bsd_engine < 0) {
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001415 /* If not, use the ping-pong mechanism to select one. */
Chris Wilson91c8a322016-07-05 10:40:23 +01001416 mutex_lock(&dev_priv->drm.struct_mutex);
Chris Wilsonc80ff162016-07-27 09:07:27 +01001417 file_priv->bsd_engine = dev_priv->mm.bsd_engine_dispatch_index;
1418 dev_priv->mm.bsd_engine_dispatch_index ^= 1;
Chris Wilson91c8a322016-07-05 10:40:23 +01001419 mutex_unlock(&dev_priv->drm.struct_mutex);
Zhao Yakuia8ebba72014-04-17 10:37:40 +08001420 }
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001421
Chris Wilsonc80ff162016-07-27 09:07:27 +01001422 return file_priv->bsd_engine;
Zhao Yakuia8ebba72014-04-17 10:37:40 +08001423}
1424
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001425#define I915_USER_RINGS (4)
1426
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00001427static const enum intel_engine_id user_ring_map[I915_USER_RINGS + 1] = {
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001428 [I915_EXEC_DEFAULT] = RCS,
1429 [I915_EXEC_RENDER] = RCS,
1430 [I915_EXEC_BLT] = BCS,
1431 [I915_EXEC_BSD] = VCS,
1432 [I915_EXEC_VEBOX] = VECS
1433};
1434
Dave Gordonf8ca0c02016-07-20 18:16:07 +01001435static struct intel_engine_cs *
1436eb_select_engine(struct drm_i915_private *dev_priv,
1437 struct drm_file *file,
1438 struct drm_i915_gem_execbuffer2 *args)
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001439{
1440 unsigned int user_ring_id = args->flags & I915_EXEC_RING_MASK;
Dave Gordonf8ca0c02016-07-20 18:16:07 +01001441 struct intel_engine_cs *engine;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001442
1443 if (user_ring_id > I915_USER_RINGS) {
1444 DRM_DEBUG("execbuf with unknown ring: %u\n", user_ring_id);
Dave Gordonf8ca0c02016-07-20 18:16:07 +01001445 return NULL;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001446 }
1447
1448 if ((user_ring_id != I915_EXEC_BSD) &&
1449 ((args->flags & I915_EXEC_BSD_MASK) != 0)) {
1450 DRM_DEBUG("execbuf with non bsd ring but with invalid "
1451 "bsd dispatch flags: %d\n", (int)(args->flags));
Dave Gordonf8ca0c02016-07-20 18:16:07 +01001452 return NULL;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001453 }
1454
1455 if (user_ring_id == I915_EXEC_BSD && HAS_BSD2(dev_priv)) {
1456 unsigned int bsd_idx = args->flags & I915_EXEC_BSD_MASK;
1457
1458 if (bsd_idx == I915_EXEC_BSD_DEFAULT) {
Chris Wilsonc80ff162016-07-27 09:07:27 +01001459 bsd_idx = gen8_dispatch_bsd_engine(dev_priv, file);
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001460 } else if (bsd_idx >= I915_EXEC_BSD_RING1 &&
1461 bsd_idx <= I915_EXEC_BSD_RING2) {
Tvrtko Ursulind9da6aa2016-01-27 13:41:09 +00001462 bsd_idx >>= I915_EXEC_BSD_SHIFT;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001463 bsd_idx--;
1464 } else {
1465 DRM_DEBUG("execbuf with unknown bsd ring: %u\n",
1466 bsd_idx);
Dave Gordonf8ca0c02016-07-20 18:16:07 +01001467 return NULL;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001468 }
1469
Dave Gordonf8ca0c02016-07-20 18:16:07 +01001470 engine = &dev_priv->engine[_VCS(bsd_idx)];
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001471 } else {
Dave Gordonf8ca0c02016-07-20 18:16:07 +01001472 engine = &dev_priv->engine[user_ring_map[user_ring_id]];
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001473 }
1474
Dave Gordonf8ca0c02016-07-20 18:16:07 +01001475 if (!intel_engine_initialized(engine)) {
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001476 DRM_DEBUG("execbuf with invalid ring: %u\n", user_ring_id);
Dave Gordonf8ca0c02016-07-20 18:16:07 +01001477 return NULL;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001478 }
1479
Dave Gordonf8ca0c02016-07-20 18:16:07 +01001480 return engine;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001481}
1482
Eric Anholtae662d32012-01-03 09:23:29 -08001483static int
Chris Wilson54cf91d2010-11-25 18:00:26 +00001484i915_gem_do_execbuffer(struct drm_device *dev, void *data,
1485 struct drm_file *file,
1486 struct drm_i915_gem_execbuffer2 *args,
Ben Widawsky41bde552013-12-06 14:11:21 -08001487 struct drm_i915_gem_exec_object2 *exec)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001488{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001489 struct drm_i915_private *dev_priv = to_i915(dev);
1490 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Ben Widawsky27173f12013-08-14 11:38:36 +02001491 struct eb_vmas *eb;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001492 struct drm_i915_gem_object *batch_obj;
Brad Volkin78a42372014-12-11 12:13:09 -08001493 struct drm_i915_gem_exec_object2 shadow_exec_entry;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001494 struct intel_engine_cs *engine;
Chris Wilsone2efd132016-05-24 14:53:34 +01001495 struct i915_gem_context *ctx;
Ben Widawsky41bde552013-12-06 14:11:21 -08001496 struct i915_address_space *vm;
John Harrison5f19e2b2015-05-29 17:43:27 +01001497 struct i915_execbuffer_params params_master; /* XXX: will be removed later */
1498 struct i915_execbuffer_params *params = &params_master;
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001499 const u32 ctx_id = i915_execbuffer2_get_context_id(*args);
John Harrison8e004ef2015-02-13 11:48:10 +00001500 u32 dispatch_flags;
Oscar Mateo78382592014-07-03 16:28:05 +01001501 int ret;
Daniel Vettered5982e2013-01-17 22:23:36 +01001502 bool need_relocs;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001503
Daniel Vettered5982e2013-01-17 22:23:36 +01001504 if (!i915_gem_check_execbuffer(args))
Chris Wilson432e58e2010-11-25 19:32:06 +00001505 return -EINVAL;
Chris Wilson432e58e2010-11-25 19:32:06 +00001506
Chris Wilsonad19f102014-08-10 06:29:08 +01001507 ret = validate_exec_list(dev, exec, args->buffer_count);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001508 if (ret)
1509 return ret;
1510
John Harrison8e004ef2015-02-13 11:48:10 +00001511 dispatch_flags = 0;
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001512 if (args->flags & I915_EXEC_SECURE) {
Daniel Vetterb3ac9f22016-06-21 10:54:20 +02001513 if (!drm_is_current_master(file) || !capable(CAP_SYS_ADMIN))
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001514 return -EPERM;
1515
John Harrison8e004ef2015-02-13 11:48:10 +00001516 dispatch_flags |= I915_DISPATCH_SECURE;
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001517 }
Daniel Vetterb45305f2012-12-17 16:21:27 +01001518 if (args->flags & I915_EXEC_IS_PINNED)
John Harrison8e004ef2015-02-13 11:48:10 +00001519 dispatch_flags |= I915_DISPATCH_PINNED;
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001520
Dave Gordonf8ca0c02016-07-20 18:16:07 +01001521 engine = eb_select_engine(dev_priv, file, args);
1522 if (!engine)
1523 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001524
1525 if (args->buffer_count < 1) {
Daniel Vetterff240192012-01-31 21:08:14 +01001526 DRM_DEBUG("execbuf with %d buffers\n", args->buffer_count);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001527 return -EINVAL;
1528 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001529
Abdiel Janulguea9ed33c2015-07-01 10:12:23 +03001530 if (args->flags & I915_EXEC_RESOURCE_STREAMER) {
1531 if (!HAS_RESOURCE_STREAMER(dev)) {
1532 DRM_DEBUG("RS is only allowed for Haswell, Gen8 and above\n");
1533 return -EINVAL;
1534 }
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001535 if (engine->id != RCS) {
Abdiel Janulguea9ed33c2015-07-01 10:12:23 +03001536 DRM_DEBUG("RS is not available on %s\n",
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001537 engine->name);
Abdiel Janulguea9ed33c2015-07-01 10:12:23 +03001538 return -EINVAL;
1539 }
1540
1541 dispatch_flags |= I915_DISPATCH_RS;
1542 }
1543
Chris Wilson67d97da2016-07-04 08:08:31 +01001544 /* Take a local wakeref for preparing to dispatch the execbuf as
1545 * we expect to access the hardware fairly frequently in the
1546 * process. Upon first dispatch, we acquire another prolonged
1547 * wakeref that we hold until the GPU has been idle for at least
1548 * 100ms.
1549 */
Paulo Zanonif65c9162013-11-27 18:20:34 -02001550 intel_runtime_pm_get(dev_priv);
1551
Chris Wilson54cf91d2010-11-25 18:00:26 +00001552 ret = i915_mutex_lock_interruptible(dev);
1553 if (ret)
1554 goto pre_mutex_err;
1555
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001556 ctx = i915_gem_validate_context(dev, file, engine, ctx_id);
Ben Widawsky72ad5c42014-01-02 19:50:27 -10001557 if (IS_ERR(ctx)) {
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001558 mutex_unlock(&dev->struct_mutex);
Ben Widawsky41bde552013-12-06 14:11:21 -08001559 ret = PTR_ERR(ctx);
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001560 goto pre_mutex_err;
Ben Widawsky935f38d2014-04-04 22:41:07 -07001561 }
Ben Widawsky41bde552013-12-06 14:11:21 -08001562
Chris Wilson9a6feaf2016-07-20 13:31:50 +01001563 i915_gem_context_get(ctx);
Ben Widawsky41bde552013-12-06 14:11:21 -08001564
Daniel Vetterae6c4802014-08-06 15:04:53 +02001565 if (ctx->ppgtt)
1566 vm = &ctx->ppgtt->base;
1567 else
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001568 vm = &ggtt->base;
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001569
John Harrison5f19e2b2015-05-29 17:43:27 +01001570 memset(&params_master, 0x00, sizeof(params_master));
1571
Ben Widawsky17601cbc2013-11-25 09:54:38 -08001572 eb = eb_create(args);
Chris Wilson67731b82010-12-08 10:38:14 +00001573 if (eb == NULL) {
Chris Wilson9a6feaf2016-07-20 13:31:50 +01001574 i915_gem_context_put(ctx);
Chris Wilson67731b82010-12-08 10:38:14 +00001575 mutex_unlock(&dev->struct_mutex);
1576 ret = -ENOMEM;
1577 goto pre_mutex_err;
1578 }
1579
Chris Wilson54cf91d2010-11-25 18:00:26 +00001580 /* Look up object handles */
Ben Widawsky27173f12013-08-14 11:38:36 +02001581 ret = eb_lookup_vmas(eb, exec, args, vm, file);
Chris Wilson3b96eff2013-01-08 10:53:14 +00001582 if (ret)
1583 goto err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001584
Chris Wilson6fe4f142011-01-10 17:35:37 +00001585 /* take note of the batch buffer before we might reorder the lists */
Chris Wilsond23db882014-05-23 08:48:08 +02001586 batch_obj = eb_get_batch(eb);
Chris Wilson6fe4f142011-01-10 17:35:37 +00001587
Chris Wilson54cf91d2010-11-25 18:00:26 +00001588 /* Move the objects en-masse into the GTT, evicting if necessary. */
Daniel Vettered5982e2013-01-17 22:23:36 +01001589 need_relocs = (args->flags & I915_EXEC_NO_RELOC) == 0;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001590 ret = i915_gem_execbuffer_reserve(engine, &eb->vmas, ctx,
1591 &need_relocs);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001592 if (ret)
1593 goto err;
1594
1595 /* The objects are in their final locations, apply the relocations. */
Daniel Vettered5982e2013-01-17 22:23:36 +01001596 if (need_relocs)
Ben Widawsky17601cbc2013-11-25 09:54:38 -08001597 ret = i915_gem_execbuffer_relocate(eb);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001598 if (ret) {
1599 if (ret == -EFAULT) {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001600 ret = i915_gem_execbuffer_relocate_slow(dev, args, file,
1601 engine,
David Weinehallb1b38272015-05-20 17:00:13 +03001602 eb, exec, ctx);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001603 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1604 }
1605 if (ret)
1606 goto err;
1607 }
1608
1609 /* Set the pending read domains for the batch buffer to COMMAND */
Chris Wilson54cf91d2010-11-25 18:00:26 +00001610 if (batch_obj->base.pending_write_domain) {
Daniel Vetterff240192012-01-31 21:08:14 +01001611 DRM_DEBUG("Attempting to use self-modifying batch buffer\n");
Chris Wilson54cf91d2010-11-25 18:00:26 +00001612 ret = -EINVAL;
1613 goto err;
1614 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001615
John Harrison5f19e2b2015-05-29 17:43:27 +01001616 params->args_batch_start_offset = args->batch_start_offset;
Chris Wilson33a051a2016-07-27 09:07:26 +01001617 if (intel_engine_needs_cmd_parser(engine) && args->batch_len) {
Rebecca N. Palmerc7c73722015-05-08 14:26:50 +01001618 struct drm_i915_gem_object *parsed_batch_obj;
1619
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001620 parsed_batch_obj = i915_gem_execbuffer_parse(engine,
1621 &shadow_exec_entry,
1622 eb,
1623 batch_obj,
1624 args->batch_start_offset,
1625 args->batch_len,
Daniel Vetterb3ac9f22016-06-21 10:54:20 +02001626 drm_is_current_master(file));
Rebecca N. Palmerc7c73722015-05-08 14:26:50 +01001627 if (IS_ERR(parsed_batch_obj)) {
1628 ret = PTR_ERR(parsed_batch_obj);
Brad Volkin78a42372014-12-11 12:13:09 -08001629 goto err;
1630 }
Chris Wilson17cabf52015-01-14 11:20:57 +00001631
1632 /*
Rebecca N. Palmerc7c73722015-05-08 14:26:50 +01001633 * parsed_batch_obj == batch_obj means batch not fully parsed:
1634 * Accept, but don't promote to secure.
Chris Wilson17cabf52015-01-14 11:20:57 +00001635 */
Chris Wilson17cabf52015-01-14 11:20:57 +00001636
Rebecca N. Palmerc7c73722015-05-08 14:26:50 +01001637 if (parsed_batch_obj != batch_obj) {
1638 /*
1639 * Batch parsed and accepted:
1640 *
1641 * Set the DISPATCH_SECURE bit to remove the NON_SECURE
1642 * bit from MI_BATCH_BUFFER_START commands issued in
1643 * the dispatch_execbuffer implementations. We
1644 * specifically don't want that set on batches the
1645 * command parser has accepted.
1646 */
1647 dispatch_flags |= I915_DISPATCH_SECURE;
John Harrison5f19e2b2015-05-29 17:43:27 +01001648 params->args_batch_start_offset = 0;
Rebecca N. Palmerc7c73722015-05-08 14:26:50 +01001649 batch_obj = parsed_batch_obj;
1650 }
Brad Volkin351e3db2014-02-18 10:15:46 -08001651 }
1652
Brad Volkin78a42372014-12-11 12:13:09 -08001653 batch_obj->base.pending_read_domains |= I915_GEM_DOMAIN_COMMAND;
1654
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001655 /* snb/ivb/vlv conflate the "batch in ppgtt" bit with the "non-secure
1656 * batch" bit. Hence we need to pin secure batches into the global gtt.
Ben Widawsky28cf5412013-11-02 21:07:26 -07001657 * hsw should have this fixed, but bdw mucks it up again. */
John Harrison8e004ef2015-02-13 11:48:10 +00001658 if (dispatch_flags & I915_DISPATCH_SECURE) {
Daniel Vetterda51a1e2014-08-11 12:08:58 +02001659 /*
1660 * So on first glance it looks freaky that we pin the batch here
1661 * outside of the reservation loop. But:
1662 * - The batch is already pinned into the relevant ppgtt, so we
1663 * already have the backing storage fully allocated.
1664 * - No other BO uses the global gtt (well contexts, but meh),
Yannick Guerrinifd0753c2015-02-28 17:20:41 +01001665 * so we don't really have issues with multiple objects not
Daniel Vetterda51a1e2014-08-11 12:08:58 +02001666 * fitting due to fragmentation.
1667 * So this is actually safe.
1668 */
1669 ret = i915_gem_obj_ggtt_pin(batch_obj, 0, 0);
1670 if (ret)
1671 goto err;
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001672
John Harrison5f19e2b2015-05-29 17:43:27 +01001673 params->batch_obj_vm_offset = i915_gem_obj_ggtt_offset(batch_obj);
Daniel Vetterda51a1e2014-08-11 12:08:58 +02001674 } else
John Harrison5f19e2b2015-05-29 17:43:27 +01001675 params->batch_obj_vm_offset = i915_gem_obj_offset(batch_obj, vm);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001676
John Harrison0c8dac82015-05-29 17:43:25 +01001677 /* Allocate a request for this batch buffer nice and early. */
Chris Wilson8e637172016-08-02 22:50:26 +01001678 params->request = i915_gem_request_alloc(engine, ctx);
1679 if (IS_ERR(params->request)) {
1680 ret = PTR_ERR(params->request);
John Harrison0c8dac82015-05-29 17:43:25 +01001681 goto err_batch_unpin;
Dave Gordon26827082016-01-19 19:02:53 +00001682 }
John Harrison0c8dac82015-05-29 17:43:25 +01001683
Chris Wilson8e637172016-08-02 22:50:26 +01001684 ret = i915_gem_request_add_to_client(params->request, file);
John Harrisonfcfa423c2015-05-29 17:44:12 +01001685 if (ret)
Chris Wilsonaa9b7812016-04-13 17:35:15 +01001686 goto err_request;
John Harrisonfcfa423c2015-05-29 17:44:12 +01001687
John Harrison5f19e2b2015-05-29 17:43:27 +01001688 /*
1689 * Save assorted stuff away to pass through to *_submission().
1690 * NB: This data should be 'persistent' and not local as it will
1691 * kept around beyond the duration of the IOCTL once the GPU
1692 * scheduler arrives.
1693 */
1694 params->dev = dev;
1695 params->file = file;
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001696 params->engine = engine;
John Harrison5f19e2b2015-05-29 17:43:27 +01001697 params->dispatch_flags = dispatch_flags;
1698 params->batch_obj = batch_obj;
1699 params->ctx = ctx;
1700
Chris Wilson5b043f42016-08-02 22:50:38 +01001701 ret = execbuf_submit(params, args, &eb->vmas);
Chris Wilsonaa9b7812016-04-13 17:35:15 +01001702err_request:
Chris Wilsone655bc32016-08-04 16:32:21 +01001703 __i915_add_request(params->request, params->batch_obj, ret == 0);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001704
John Harrison0c8dac82015-05-29 17:43:25 +01001705err_batch_unpin:
Daniel Vetterda51a1e2014-08-11 12:08:58 +02001706 /*
1707 * FIXME: We crucially rely upon the active tracking for the (ppgtt)
1708 * batch vma for correctness. For less ugly and less fragility this
1709 * needs to be adjusted to also track the ggtt batch vma properly as
1710 * active.
1711 */
John Harrison8e004ef2015-02-13 11:48:10 +00001712 if (dispatch_flags & I915_DISPATCH_SECURE)
Daniel Vetterda51a1e2014-08-11 12:08:58 +02001713 i915_gem_object_ggtt_unpin(batch_obj);
John Harrison0c8dac82015-05-29 17:43:25 +01001714
Chris Wilson54cf91d2010-11-25 18:00:26 +00001715err:
Ben Widawsky41bde552013-12-06 14:11:21 -08001716 /* the request owns the ref now */
Chris Wilson9a6feaf2016-07-20 13:31:50 +01001717 i915_gem_context_put(ctx);
Chris Wilson67731b82010-12-08 10:38:14 +00001718 eb_destroy(eb);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001719
1720 mutex_unlock(&dev->struct_mutex);
1721
1722pre_mutex_err:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001723 /* intel_gpu_busy should also get a ref, so it will free when the device
1724 * is really idle. */
1725 intel_runtime_pm_put(dev_priv);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001726 return ret;
1727}
1728
1729/*
1730 * Legacy execbuffer just creates an exec2 list from the original exec object
1731 * list array and passes it to the real function.
1732 */
1733int
1734i915_gem_execbuffer(struct drm_device *dev, void *data,
1735 struct drm_file *file)
1736{
1737 struct drm_i915_gem_execbuffer *args = data;
1738 struct drm_i915_gem_execbuffer2 exec2;
1739 struct drm_i915_gem_exec_object *exec_list = NULL;
1740 struct drm_i915_gem_exec_object2 *exec2_list = NULL;
1741 int ret, i;
1742
Chris Wilson54cf91d2010-11-25 18:00:26 +00001743 if (args->buffer_count < 1) {
Daniel Vetterff240192012-01-31 21:08:14 +01001744 DRM_DEBUG("execbuf with %d buffers\n", args->buffer_count);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001745 return -EINVAL;
1746 }
1747
1748 /* Copy in the exec list from userland */
1749 exec_list = drm_malloc_ab(sizeof(*exec_list), args->buffer_count);
1750 exec2_list = drm_malloc_ab(sizeof(*exec2_list), args->buffer_count);
1751 if (exec_list == NULL || exec2_list == NULL) {
Daniel Vetterff240192012-01-31 21:08:14 +01001752 DRM_DEBUG("Failed to allocate exec list for %d buffers\n",
Chris Wilson54cf91d2010-11-25 18:00:26 +00001753 args->buffer_count);
1754 drm_free_large(exec_list);
1755 drm_free_large(exec2_list);
1756 return -ENOMEM;
1757 }
1758 ret = copy_from_user(exec_list,
Gustavo Padovan3ed605b2016-04-26 12:32:27 -03001759 u64_to_user_ptr(args->buffers_ptr),
Chris Wilson54cf91d2010-11-25 18:00:26 +00001760 sizeof(*exec_list) * args->buffer_count);
1761 if (ret != 0) {
Daniel Vetterff240192012-01-31 21:08:14 +01001762 DRM_DEBUG("copy %d exec entries failed %d\n",
Chris Wilson54cf91d2010-11-25 18:00:26 +00001763 args->buffer_count, ret);
1764 drm_free_large(exec_list);
1765 drm_free_large(exec2_list);
1766 return -EFAULT;
1767 }
1768
1769 for (i = 0; i < args->buffer_count; i++) {
1770 exec2_list[i].handle = exec_list[i].handle;
1771 exec2_list[i].relocation_count = exec_list[i].relocation_count;
1772 exec2_list[i].relocs_ptr = exec_list[i].relocs_ptr;
1773 exec2_list[i].alignment = exec_list[i].alignment;
1774 exec2_list[i].offset = exec_list[i].offset;
1775 if (INTEL_INFO(dev)->gen < 4)
1776 exec2_list[i].flags = EXEC_OBJECT_NEEDS_FENCE;
1777 else
1778 exec2_list[i].flags = 0;
1779 }
1780
1781 exec2.buffers_ptr = args->buffers_ptr;
1782 exec2.buffer_count = args->buffer_count;
1783 exec2.batch_start_offset = args->batch_start_offset;
1784 exec2.batch_len = args->batch_len;
1785 exec2.DR1 = args->DR1;
1786 exec2.DR4 = args->DR4;
1787 exec2.num_cliprects = args->num_cliprects;
1788 exec2.cliprects_ptr = args->cliprects_ptr;
1789 exec2.flags = I915_EXEC_RENDER;
Ben Widawsky6e0a69d2012-06-04 14:42:55 -07001790 i915_execbuffer2_set_context_id(exec2, 0);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001791
Ben Widawsky41bde552013-12-06 14:11:21 -08001792 ret = i915_gem_do_execbuffer(dev, data, file, &exec2, exec2_list);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001793 if (!ret) {
Chris Wilson9aab8bf2014-05-23 10:45:52 +01001794 struct drm_i915_gem_exec_object __user *user_exec_list =
Gustavo Padovan3ed605b2016-04-26 12:32:27 -03001795 u64_to_user_ptr(args->buffers_ptr);
Chris Wilson9aab8bf2014-05-23 10:45:52 +01001796
Chris Wilson54cf91d2010-11-25 18:00:26 +00001797 /* Copy the new buffer offsets back to the user's exec list. */
Chris Wilson9aab8bf2014-05-23 10:45:52 +01001798 for (i = 0; i < args->buffer_count; i++) {
Michał Winiarski934acce2015-12-29 18:24:52 +01001799 exec2_list[i].offset =
1800 gen8_canonical_addr(exec2_list[i].offset);
Chris Wilson9aab8bf2014-05-23 10:45:52 +01001801 ret = __copy_to_user(&user_exec_list[i].offset,
1802 &exec2_list[i].offset,
1803 sizeof(user_exec_list[i].offset));
1804 if (ret) {
1805 ret = -EFAULT;
1806 DRM_DEBUG("failed to copy %d exec entries "
1807 "back to user (%d)\n",
1808 args->buffer_count, ret);
1809 break;
1810 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001811 }
1812 }
1813
1814 drm_free_large(exec_list);
1815 drm_free_large(exec2_list);
1816 return ret;
1817}
1818
1819int
1820i915_gem_execbuffer2(struct drm_device *dev, void *data,
1821 struct drm_file *file)
1822{
1823 struct drm_i915_gem_execbuffer2 *args = data;
1824 struct drm_i915_gem_exec_object2 *exec2_list = NULL;
1825 int ret;
1826
Xi Wanged8cd3b2012-04-23 04:06:41 -04001827 if (args->buffer_count < 1 ||
1828 args->buffer_count > UINT_MAX / sizeof(*exec2_list)) {
Daniel Vetterff240192012-01-31 21:08:14 +01001829 DRM_DEBUG("execbuf2 with %d buffers\n", args->buffer_count);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001830 return -EINVAL;
1831 }
1832
Daniel Vetter9cb34662014-04-24 08:09:11 +02001833 if (args->rsvd2 != 0) {
1834 DRM_DEBUG("dirty rvsd2 field\n");
1835 return -EINVAL;
1836 }
1837
Chris Wilsonf2a85e12016-04-08 12:11:13 +01001838 exec2_list = drm_malloc_gfp(args->buffer_count,
1839 sizeof(*exec2_list),
1840 GFP_TEMPORARY);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001841 if (exec2_list == NULL) {
Daniel Vetterff240192012-01-31 21:08:14 +01001842 DRM_DEBUG("Failed to allocate exec list for %d buffers\n",
Chris Wilson54cf91d2010-11-25 18:00:26 +00001843 args->buffer_count);
1844 return -ENOMEM;
1845 }
1846 ret = copy_from_user(exec2_list,
Gustavo Padovan3ed605b2016-04-26 12:32:27 -03001847 u64_to_user_ptr(args->buffers_ptr),
Chris Wilson54cf91d2010-11-25 18:00:26 +00001848 sizeof(*exec2_list) * args->buffer_count);
1849 if (ret != 0) {
Daniel Vetterff240192012-01-31 21:08:14 +01001850 DRM_DEBUG("copy %d exec entries failed %d\n",
Chris Wilson54cf91d2010-11-25 18:00:26 +00001851 args->buffer_count, ret);
1852 drm_free_large(exec2_list);
1853 return -EFAULT;
1854 }
1855
Ben Widawsky41bde552013-12-06 14:11:21 -08001856 ret = i915_gem_do_execbuffer(dev, data, file, args, exec2_list);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001857 if (!ret) {
1858 /* Copy the new buffer offsets back to the user's exec list. */
Ville Syrjäläd593d992014-06-13 16:42:51 +03001859 struct drm_i915_gem_exec_object2 __user *user_exec_list =
Gustavo Padovan3ed605b2016-04-26 12:32:27 -03001860 u64_to_user_ptr(args->buffers_ptr);
Chris Wilson9aab8bf2014-05-23 10:45:52 +01001861 int i;
1862
1863 for (i = 0; i < args->buffer_count; i++) {
Michał Winiarski934acce2015-12-29 18:24:52 +01001864 exec2_list[i].offset =
1865 gen8_canonical_addr(exec2_list[i].offset);
Chris Wilson9aab8bf2014-05-23 10:45:52 +01001866 ret = __copy_to_user(&user_exec_list[i].offset,
1867 &exec2_list[i].offset,
1868 sizeof(user_exec_list[i].offset));
1869 if (ret) {
1870 ret = -EFAULT;
1871 DRM_DEBUG("failed to copy %d exec entries "
1872 "back to user\n",
1873 args->buffer_count);
1874 break;
1875 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001876 }
1877 }
1878
1879 drm_free_large(exec2_list);
1880 return ret;
1881}