blob: 69931530474810307ccd1df8950c91910cdd239e [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
Chris Wilsonad778f82016-08-04 16:32:42 +010029#include <linux/dma_remapping.h>
30#include <linux/reservation.h>
31#include <linux/uaccess.h>
32
David Howells760285e2012-10-02 18:01:07 +010033#include <drm/drmP.h>
34#include <drm/i915_drm.h>
Chris Wilsonad778f82016-08-04 16:32:42 +010035
Chris Wilson54cf91d2010-11-25 18:00:26 +000036#include "i915_drv.h"
Chris Wilsonad778f82016-08-04 16:32:42 +010037#include "i915_gem_dmabuf.h"
Chris Wilson54cf91d2010-11-25 18:00:26 +000038#include "i915_trace.h"
39#include "intel_drv.h"
Chris Wilson5d723d72016-08-04 16:32:35 +010040#include "intel_frontbuffer.h"
Chris Wilson54cf91d2010-11-25 18:00:26 +000041
Dave Gordon9e2793f62016-07-14 14:52:03 +010042#define __EXEC_OBJECT_HAS_PIN (1<<31)
43#define __EXEC_OBJECT_HAS_FENCE (1<<30)
44#define __EXEC_OBJECT_NEEDS_MAP (1<<29)
45#define __EXEC_OBJECT_NEEDS_BIAS (1<<28)
46#define __EXEC_OBJECT_INTERNAL_FLAGS (0xf<<28) /* all of the above */
Chris Wilsond23db882014-05-23 08:48:08 +020047
48#define BATCH_OFFSET_BIAS (256*1024)
Chris Wilsona415d352013-11-26 11:23:15 +000049
Chris Wilson5b043f42016-08-02 22:50:38 +010050struct i915_execbuffer_params {
51 struct drm_device *dev;
52 struct drm_file *file;
Chris Wilson59bfa122016-08-04 16:32:31 +010053 struct i915_vma *batch;
54 u32 dispatch_flags;
55 u32 args_batch_start_offset;
Chris Wilson5b043f42016-08-02 22:50:38 +010056 struct intel_engine_cs *engine;
Chris Wilson5b043f42016-08-02 22:50:38 +010057 struct i915_gem_context *ctx;
58 struct drm_i915_gem_request *request;
59};
60
Ben Widawsky27173f12013-08-14 11:38:36 +020061struct eb_vmas {
62 struct list_head vmas;
Chris Wilson67731b82010-12-08 10:38:14 +000063 int and;
Chris Wilsoneef90cc2013-01-08 10:53:17 +000064 union {
Ben Widawsky27173f12013-08-14 11:38:36 +020065 struct i915_vma *lut[0];
Chris Wilsoneef90cc2013-01-08 10:53:17 +000066 struct hlist_head buckets[0];
67 };
Chris Wilson67731b82010-12-08 10:38:14 +000068};
69
Ben Widawsky27173f12013-08-14 11:38:36 +020070static struct eb_vmas *
Ben Widawsky17601cbc2013-11-25 09:54:38 -080071eb_create(struct drm_i915_gem_execbuffer2 *args)
Chris Wilson67731b82010-12-08 10:38:14 +000072{
Ben Widawsky27173f12013-08-14 11:38:36 +020073 struct eb_vmas *eb = NULL;
Chris Wilson67731b82010-12-08 10:38:14 +000074
Chris Wilsoneef90cc2013-01-08 10:53:17 +000075 if (args->flags & I915_EXEC_HANDLE_LUT) {
Daniel Vetterb205ca52013-09-19 14:00:11 +020076 unsigned size = args->buffer_count;
Ben Widawsky27173f12013-08-14 11:38:36 +020077 size *= sizeof(struct i915_vma *);
78 size += sizeof(struct eb_vmas);
Chris Wilsoneef90cc2013-01-08 10:53:17 +000079 eb = kmalloc(size, GFP_TEMPORARY | __GFP_NOWARN | __GFP_NORETRY);
80 }
81
82 if (eb == NULL) {
Daniel Vetterb205ca52013-09-19 14:00:11 +020083 unsigned size = args->buffer_count;
84 unsigned count = PAGE_SIZE / sizeof(struct hlist_head) / 2;
Lauri Kasanen27b7c632013-03-27 15:04:55 +020085 BUILD_BUG_ON_NOT_POWER_OF_2(PAGE_SIZE / sizeof(struct hlist_head));
Chris Wilsoneef90cc2013-01-08 10:53:17 +000086 while (count > 2*size)
87 count >>= 1;
88 eb = kzalloc(count*sizeof(struct hlist_head) +
Ben Widawsky27173f12013-08-14 11:38:36 +020089 sizeof(struct eb_vmas),
Chris Wilsoneef90cc2013-01-08 10:53:17 +000090 GFP_TEMPORARY);
91 if (eb == NULL)
92 return eb;
93
94 eb->and = count - 1;
95 } else
96 eb->and = -args->buffer_count;
97
Ben Widawsky27173f12013-08-14 11:38:36 +020098 INIT_LIST_HEAD(&eb->vmas);
Chris Wilson67731b82010-12-08 10:38:14 +000099 return eb;
100}
101
102static void
Ben Widawsky27173f12013-08-14 11:38:36 +0200103eb_reset(struct eb_vmas *eb)
Chris Wilson67731b82010-12-08 10:38:14 +0000104{
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000105 if (eb->and >= 0)
106 memset(eb->buckets, 0, (eb->and+1)*sizeof(struct hlist_head));
Chris Wilson67731b82010-12-08 10:38:14 +0000107}
108
Chris Wilson59bfa122016-08-04 16:32:31 +0100109static struct i915_vma *
110eb_get_batch(struct eb_vmas *eb)
111{
112 struct i915_vma *vma = list_entry(eb->vmas.prev, typeof(*vma), exec_list);
113
114 /*
115 * SNA is doing fancy tricks with compressing batch buffers, which leads
116 * to negative relocation deltas. Usually that works out ok since the
117 * relocate address is still positive, except when the batch is placed
118 * very low in the GTT. Ensure this doesn't happen.
119 *
120 * Note that actual hangs have only been observed on gen7, but for
121 * paranoia do it everywhere.
122 */
123 if ((vma->exec_entry->flags & EXEC_OBJECT_PINNED) == 0)
124 vma->exec_entry->flags |= __EXEC_OBJECT_NEEDS_BIAS;
125
126 return vma;
127}
128
Chris Wilson3b96eff2013-01-08 10:53:14 +0000129static int
Ben Widawsky27173f12013-08-14 11:38:36 +0200130eb_lookup_vmas(struct eb_vmas *eb,
131 struct drm_i915_gem_exec_object2 *exec,
132 const struct drm_i915_gem_execbuffer2 *args,
133 struct i915_address_space *vm,
134 struct drm_file *file)
Chris Wilson3b96eff2013-01-08 10:53:14 +0000135{
Ben Widawsky27173f12013-08-14 11:38:36 +0200136 struct drm_i915_gem_object *obj;
137 struct list_head objects;
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000138 int i, ret;
Chris Wilson3b96eff2013-01-08 10:53:14 +0000139
Ben Widawsky27173f12013-08-14 11:38:36 +0200140 INIT_LIST_HEAD(&objects);
Chris Wilson3b96eff2013-01-08 10:53:14 +0000141 spin_lock(&file->table_lock);
Ben Widawsky27173f12013-08-14 11:38:36 +0200142 /* Grab a reference to the object and release the lock so we can lookup
143 * or create the VMA without using GFP_ATOMIC */
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000144 for (i = 0; i < args->buffer_count; i++) {
Chris Wilson3b96eff2013-01-08 10:53:14 +0000145 obj = to_intel_bo(idr_find(&file->object_idr, exec[i].handle));
146 if (obj == NULL) {
147 spin_unlock(&file->table_lock);
148 DRM_DEBUG("Invalid object handle %d at index %d\n",
149 exec[i].handle, i);
Ben Widawsky27173f12013-08-14 11:38:36 +0200150 ret = -ENOENT;
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000151 goto err;
Chris Wilson3b96eff2013-01-08 10:53:14 +0000152 }
153
Ben Widawsky27173f12013-08-14 11:38:36 +0200154 if (!list_empty(&obj->obj_exec_link)) {
Chris Wilson3b96eff2013-01-08 10:53:14 +0000155 spin_unlock(&file->table_lock);
156 DRM_DEBUG("Object %p [handle %d, index %d] appears more than once in object list\n",
157 obj, exec[i].handle, i);
Ben Widawsky27173f12013-08-14 11:38:36 +0200158 ret = -EINVAL;
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000159 goto err;
Chris Wilson3b96eff2013-01-08 10:53:14 +0000160 }
161
Chris Wilson25dc5562016-07-20 13:31:52 +0100162 i915_gem_object_get(obj);
Ben Widawsky27173f12013-08-14 11:38:36 +0200163 list_add_tail(&obj->obj_exec_link, &objects);
Chris Wilson3b96eff2013-01-08 10:53:14 +0000164 }
165 spin_unlock(&file->table_lock);
166
Ben Widawsky27173f12013-08-14 11:38:36 +0200167 i = 0;
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000168 while (!list_empty(&objects)) {
Ben Widawsky27173f12013-08-14 11:38:36 +0200169 struct i915_vma *vma;
Ben Widawsky6f65e292013-12-06 14:10:56 -0800170
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000171 obj = list_first_entry(&objects,
172 struct drm_i915_gem_object,
173 obj_exec_link);
174
Daniel Vettere656a6c2013-08-14 14:14:04 +0200175 /*
176 * NOTE: We can leak any vmas created here when something fails
177 * later on. But that's no issue since vma_unbind can deal with
178 * vmas which are not actually bound. And since only
179 * lookup_or_create exists as an interface to get at the vma
180 * from the (obj, vm) we don't run the risk of creating
181 * duplicated vmas for the same vm.
182 */
Chris Wilson058d88c2016-08-15 10:49:06 +0100183 vma = i915_gem_obj_lookup_or_create_vma(obj, vm, NULL);
184 if (unlikely(IS_ERR(vma))) {
Ben Widawsky27173f12013-08-14 11:38:36 +0200185 DRM_DEBUG("Failed to lookup VMA\n");
186 ret = PTR_ERR(vma);
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000187 goto err;
Ben Widawsky27173f12013-08-14 11:38:36 +0200188 }
189
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000190 /* Transfer ownership from the objects list to the vmas list. */
Ben Widawsky27173f12013-08-14 11:38:36 +0200191 list_add_tail(&vma->exec_list, &eb->vmas);
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000192 list_del_init(&obj->obj_exec_link);
Ben Widawsky27173f12013-08-14 11:38:36 +0200193
194 vma->exec_entry = &exec[i];
195 if (eb->and < 0) {
196 eb->lut[i] = vma;
197 } else {
198 uint32_t handle = args->flags & I915_EXEC_HANDLE_LUT ? i : exec[i].handle;
199 vma->exec_handle = handle;
200 hlist_add_head(&vma->exec_node,
201 &eb->buckets[handle & eb->and]);
202 }
203 ++i;
204 }
205
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000206 return 0;
Ben Widawsky27173f12013-08-14 11:38:36 +0200207
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000208
209err:
Ben Widawsky27173f12013-08-14 11:38:36 +0200210 while (!list_empty(&objects)) {
211 obj = list_first_entry(&objects,
212 struct drm_i915_gem_object,
213 obj_exec_link);
214 list_del_init(&obj->obj_exec_link);
Chris Wilsonf8c417c2016-07-20 13:31:53 +0100215 i915_gem_object_put(obj);
Ben Widawsky27173f12013-08-14 11:38:36 +0200216 }
Chris Wilson9ae9ab52013-12-04 09:52:58 +0000217 /*
218 * Objects already transfered to the vmas list will be unreferenced by
219 * eb_destroy.
220 */
221
Ben Widawsky27173f12013-08-14 11:38:36 +0200222 return ret;
Chris Wilson3b96eff2013-01-08 10:53:14 +0000223}
224
Ben Widawsky27173f12013-08-14 11:38:36 +0200225static struct i915_vma *eb_get_vma(struct eb_vmas *eb, unsigned long handle)
Chris Wilson67731b82010-12-08 10:38:14 +0000226{
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000227 if (eb->and < 0) {
228 if (handle >= -eb->and)
229 return NULL;
230 return eb->lut[handle];
231 } else {
232 struct hlist_head *head;
Geliang Tangaa459502016-01-18 23:54:20 +0800233 struct i915_vma *vma;
Chris Wilson67731b82010-12-08 10:38:14 +0000234
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000235 head = &eb->buckets[handle & eb->and];
Geliang Tangaa459502016-01-18 23:54:20 +0800236 hlist_for_each_entry(vma, head, exec_node) {
Ben Widawsky27173f12013-08-14 11:38:36 +0200237 if (vma->exec_handle == handle)
238 return vma;
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000239 }
240 return NULL;
Chris Wilson67731b82010-12-08 10:38:14 +0000241 }
Chris Wilson67731b82010-12-08 10:38:14 +0000242}
243
Chris Wilsona415d352013-11-26 11:23:15 +0000244static void
245i915_gem_execbuffer_unreserve_vma(struct i915_vma *vma)
246{
247 struct drm_i915_gem_exec_object2 *entry;
248 struct drm_i915_gem_object *obj = vma->obj;
249
250 if (!drm_mm_node_allocated(&vma->node))
251 return;
252
253 entry = vma->exec_entry;
254
255 if (entry->flags & __EXEC_OBJECT_HAS_FENCE)
256 i915_gem_object_unpin_fence(obj);
257
258 if (entry->flags & __EXEC_OBJECT_HAS_PIN)
Chris Wilson20dfbde2016-08-04 16:32:30 +0100259 __i915_vma_unpin(vma);
Chris Wilsona415d352013-11-26 11:23:15 +0000260
Chris Wilsonde4e7832015-04-07 16:20:35 +0100261 entry->flags &= ~(__EXEC_OBJECT_HAS_FENCE | __EXEC_OBJECT_HAS_PIN);
Chris Wilsona415d352013-11-26 11:23:15 +0000262}
263
264static void eb_destroy(struct eb_vmas *eb)
265{
Ben Widawsky27173f12013-08-14 11:38:36 +0200266 while (!list_empty(&eb->vmas)) {
267 struct i915_vma *vma;
Chris Wilsonbcffc3f2013-01-08 10:53:15 +0000268
Ben Widawsky27173f12013-08-14 11:38:36 +0200269 vma = list_first_entry(&eb->vmas,
270 struct i915_vma,
Chris Wilsonbcffc3f2013-01-08 10:53:15 +0000271 exec_list);
Ben Widawsky27173f12013-08-14 11:38:36 +0200272 list_del_init(&vma->exec_list);
Chris Wilsona415d352013-11-26 11:23:15 +0000273 i915_gem_execbuffer_unreserve_vma(vma);
Chris Wilson624192c2016-08-15 10:48:50 +0100274 i915_vma_put(vma);
Chris Wilsonbcffc3f2013-01-08 10:53:15 +0000275 }
Chris Wilson67731b82010-12-08 10:38:14 +0000276 kfree(eb);
277}
278
Chris Wilsondabdfe02012-03-26 10:10:27 +0200279static inline int use_cpu_reloc(struct drm_i915_gem_object *obj)
280{
Chris Wilson2cc86b82013-08-26 19:51:00 -0300281 return (HAS_LLC(obj->base.dev) ||
282 obj->base.write_domain == I915_GEM_DOMAIN_CPU ||
Chris Wilsondabdfe02012-03-26 10:10:27 +0200283 obj->cache_level != I915_CACHE_NONE);
284}
285
Michał Winiarski934acce2015-12-29 18:24:52 +0100286/* Used to convert any address to canonical form.
287 * Starting from gen8, some commands (e.g. STATE_BASE_ADDRESS,
288 * MI_LOAD_REGISTER_MEM and others, see Broadwell PRM Vol2a) require the
289 * addresses to be in a canonical form:
290 * "GraphicsAddress[63:48] are ignored by the HW and assumed to be in correct
291 * canonical form [63:48] == [47]."
292 */
293#define GEN8_HIGH_ADDRESS_BIT 47
294static inline uint64_t gen8_canonical_addr(uint64_t address)
295{
296 return sign_extend64(address, GEN8_HIGH_ADDRESS_BIT);
297}
298
299static inline uint64_t gen8_noncanonical_addr(uint64_t address)
300{
301 return address & ((1ULL << (GEN8_HIGH_ADDRESS_BIT + 1)) - 1);
302}
303
304static inline uint64_t
305relocation_target(struct drm_i915_gem_relocation_entry *reloc,
306 uint64_t target_offset)
307{
308 return gen8_canonical_addr((int)reloc->delta + target_offset);
309}
310
Chris Wilson54cf91d2010-11-25 18:00:26 +0000311static int
Rafael Barbalho5032d872013-08-21 17:10:51 +0100312relocate_entry_cpu(struct drm_i915_gem_object *obj,
Ben Widawskyd9ceb952014-04-28 17:18:28 -0700313 struct drm_i915_gem_relocation_entry *reloc,
314 uint64_t target_offset)
Rafael Barbalho5032d872013-08-21 17:10:51 +0100315{
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700316 struct drm_device *dev = obj->base.dev;
Rafael Barbalho5032d872013-08-21 17:10:51 +0100317 uint32_t page_offset = offset_in_page(reloc->offset);
Michał Winiarski934acce2015-12-29 18:24:52 +0100318 uint64_t delta = relocation_target(reloc, target_offset);
Rafael Barbalho5032d872013-08-21 17:10:51 +0100319 char *vaddr;
Ben Widawsky8b78f0e2013-12-26 13:39:50 -0800320 int ret;
Rafael Barbalho5032d872013-08-21 17:10:51 +0100321
Chris Wilson2cc86b82013-08-26 19:51:00 -0300322 ret = i915_gem_object_set_to_cpu_domain(obj, true);
Rafael Barbalho5032d872013-08-21 17:10:51 +0100323 if (ret)
324 return ret;
325
Dave Gordon033908a2015-12-10 18:51:23 +0000326 vaddr = kmap_atomic(i915_gem_object_get_dirty_page(obj,
Rafael Barbalho5032d872013-08-21 17:10:51 +0100327 reloc->offset >> PAGE_SHIFT));
Ben Widawskyd9ceb952014-04-28 17:18:28 -0700328 *(uint32_t *)(vaddr + page_offset) = lower_32_bits(delta);
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700329
330 if (INTEL_INFO(dev)->gen >= 8) {
331 page_offset = offset_in_page(page_offset + sizeof(uint32_t));
332
333 if (page_offset == 0) {
334 kunmap_atomic(vaddr);
Dave Gordon033908a2015-12-10 18:51:23 +0000335 vaddr = kmap_atomic(i915_gem_object_get_dirty_page(obj,
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700336 (reloc->offset + sizeof(uint32_t)) >> PAGE_SHIFT));
337 }
338
Ben Widawskyd9ceb952014-04-28 17:18:28 -0700339 *(uint32_t *)(vaddr + page_offset) = upper_32_bits(delta);
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700340 }
341
Rafael Barbalho5032d872013-08-21 17:10:51 +0100342 kunmap_atomic(vaddr);
343
344 return 0;
345}
346
347static int
348relocate_entry_gtt(struct drm_i915_gem_object *obj,
Ben Widawskyd9ceb952014-04-28 17:18:28 -0700349 struct drm_i915_gem_relocation_entry *reloc,
350 uint64_t target_offset)
Rafael Barbalho5032d872013-08-21 17:10:51 +0100351{
Chris Wilson058d88c2016-08-15 10:49:06 +0100352 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300353 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Chris Wilson058d88c2016-08-15 10:49:06 +0100354 struct i915_vma *vma;
Michał Winiarski934acce2015-12-29 18:24:52 +0100355 uint64_t delta = relocation_target(reloc, target_offset);
Chris Wilson906843c2014-08-10 06:29:11 +0100356 uint64_t offset;
Rafael Barbalho5032d872013-08-21 17:10:51 +0100357 void __iomem *reloc_page;
Ben Widawsky8b78f0e2013-12-26 13:39:50 -0800358 int ret;
Rafael Barbalho5032d872013-08-21 17:10:51 +0100359
Chris Wilson058d88c2016-08-15 10:49:06 +0100360 vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0, PIN_MAPPABLE);
361 if (IS_ERR(vma))
362 return PTR_ERR(vma);
363
Rafael Barbalho5032d872013-08-21 17:10:51 +0100364 ret = i915_gem_object_set_to_gtt_domain(obj, true);
365 if (ret)
Chris Wilson058d88c2016-08-15 10:49:06 +0100366 goto unpin;
Rafael Barbalho5032d872013-08-21 17:10:51 +0100367
368 ret = i915_gem_object_put_fence(obj);
369 if (ret)
Chris Wilson058d88c2016-08-15 10:49:06 +0100370 goto unpin;
Rafael Barbalho5032d872013-08-21 17:10:51 +0100371
372 /* Map the page containing the relocation we're going to perform. */
Chris Wilson058d88c2016-08-15 10:49:06 +0100373 offset = vma->node.start + reloc->offset;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300374 reloc_page = io_mapping_map_atomic_wc(ggtt->mappable,
Chris Wilson906843c2014-08-10 06:29:11 +0100375 offset & PAGE_MASK);
376 iowrite32(lower_32_bits(delta), reloc_page + offset_in_page(offset));
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700377
Chris Wilson058d88c2016-08-15 10:49:06 +0100378 if (INTEL_GEN(dev_priv) >= 8) {
Chris Wilson906843c2014-08-10 06:29:11 +0100379 offset += sizeof(uint32_t);
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700380
Chris Wilson906843c2014-08-10 06:29:11 +0100381 if (offset_in_page(offset) == 0) {
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700382 io_mapping_unmap_atomic(reloc_page);
Chris Wilson906843c2014-08-10 06:29:11 +0100383 reloc_page =
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300384 io_mapping_map_atomic_wc(ggtt->mappable,
Chris Wilson906843c2014-08-10 06:29:11 +0100385 offset);
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700386 }
387
Chris Wilson906843c2014-08-10 06:29:11 +0100388 iowrite32(upper_32_bits(delta),
389 reloc_page + offset_in_page(offset));
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700390 }
391
Rafael Barbalho5032d872013-08-21 17:10:51 +0100392 io_mapping_unmap_atomic(reloc_page);
393
Chris Wilson058d88c2016-08-15 10:49:06 +0100394unpin:
395 i915_vma_unpin(vma);
396 return ret;
Rafael Barbalho5032d872013-08-21 17:10:51 +0100397}
398
Chris Wilsonedf4427b2015-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 Wilsonedf4427b2015-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 Wilsonedf4427b2015-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 Wilsonedf4427b2015-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{
Chris Wilson573adb32016-08-04 16:32:39 +0100446 unsigned long active = i915_gem_object_get_active(obj);
Chris Wilson909d0742016-08-04 07:52:41 +0100447 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 Wilsonedf4427b2015-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 Wilsonedf4427b2015-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 Wilsonedf4427b2015-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 Wilsonedf4427b2015-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 Wilsonedf4427b2015-01-14 11:20:56 +0000675 if (entry->flags & __EXEC_OBJECT_NEEDS_MAP)
676 flags |= PIN_GLOBAL | PIN_MAPPABLE;
Chris Wilsonedf4427b2015-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 Wilsonedf4427b2015-01-14 11:20:56 +0000683 }
Daniel Vetter1ec9e262014-02-14 14:01:11 +0100684
Chris Wilson59bfa122016-08-04 16:32:31 +0100685 ret = i915_vma_pin(vma,
686 entry->pad_to_size,
687 entry->alignment,
688 flags);
689 if ((ret == -ENOSPC || ret == -E2BIG) &&
Chris Wilsonedf4427b2015-01-14 11:20:56 +0000690 only_mappable_for_reloc(entry->flags))
Chris Wilson59bfa122016-08-04 16:32:31 +0100691 ret = i915_vma_pin(vma,
692 entry->pad_to_size,
693 entry->alignment,
694 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 Wilson3272db52016-08-04 16:32:32 +0100730 if (!i915_vma_is_ggtt(vma))
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 Wilson3272db52016-08-04 16:32:32 +0100749 WARN_ON(entry->flags & __EXEC_OBJECT_NEEDS_MAP &&
750 !i915_vma_is_ggtt(vma));
Chris Wilsond23db882014-05-23 08:48:08 +0200751
752 if (entry->alignment &&
753 vma->node.start & (entry->alignment - 1))
754 return true;
755
Chris Wilson91b2db62016-08-04 16:32:23 +0100756 if (vma->node.size < entry->pad_to_size)
757 return true;
758
Chris Wilson506a8e82015-12-08 11:55:07 +0000759 if (entry->flags & EXEC_OBJECT_PINNED &&
760 vma->node.start != entry->offset)
761 return true;
762
Chris Wilsond23db882014-05-23 08:48:08 +0200763 if (entry->flags & __EXEC_OBJECT_NEEDS_BIAS &&
764 vma->node.start < BATCH_OFFSET_BIAS)
765 return true;
766
Chris Wilsonedf4427b2015-01-14 11:20:56 +0000767 /* avoid costly ping-pong once a batch bo ended up non-mappable */
768 if (entry->flags & __EXEC_OBJECT_NEEDS_MAP && !obj->map_and_fenceable)
769 return !only_mappable_for_reloc(entry->flags);
770
Michel Thierry101b5062015-10-01 13:33:57 +0100771 if ((entry->flags & EXEC_OBJECT_SUPPORTS_48B_ADDRESS) == 0 &&
772 (vma->node.start + vma->node.size - 1) >> 32)
773 return true;
774
Chris Wilsond23db882014-05-23 08:48:08 +0200775 return false;
776}
777
Chris Wilson54cf91d2010-11-25 18:00:26 +0000778static int
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +0000779i915_gem_execbuffer_reserve(struct intel_engine_cs *engine,
Ben Widawsky27173f12013-08-14 11:38:36 +0200780 struct list_head *vmas,
Chris Wilsone2efd132016-05-24 14:53:34 +0100781 struct i915_gem_context *ctx,
Daniel Vettered5982e2013-01-17 22:23:36 +0100782 bool *need_relocs)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000783{
Chris Wilson432e58e2010-11-25 19:32:06 +0000784 struct drm_i915_gem_object *obj;
Ben Widawsky27173f12013-08-14 11:38:36 +0200785 struct i915_vma *vma;
Ben Widawsky68c8c172013-09-11 14:57:50 -0700786 struct i915_address_space *vm;
Ben Widawsky27173f12013-08-14 11:38:36 +0200787 struct list_head ordered_vmas;
Chris Wilson506a8e82015-12-08 11:55:07 +0000788 struct list_head pinned_vmas;
Chris Wilsonc0336662016-05-06 15:40:21 +0100789 bool has_fenced_gpu_access = INTEL_GEN(engine->i915) < 4;
Chris Wilson7788a762012-08-24 19:18:18 +0100790 int retry;
Chris Wilson6fe4f142011-01-10 17:35:37 +0000791
Ben Widawsky68c8c172013-09-11 14:57:50 -0700792 vm = list_first_entry(vmas, struct i915_vma, exec_list)->vm;
793
Ben Widawsky27173f12013-08-14 11:38:36 +0200794 INIT_LIST_HEAD(&ordered_vmas);
Chris Wilson506a8e82015-12-08 11:55:07 +0000795 INIT_LIST_HEAD(&pinned_vmas);
Ben Widawsky27173f12013-08-14 11:38:36 +0200796 while (!list_empty(vmas)) {
Chris Wilson6fe4f142011-01-10 17:35:37 +0000797 struct drm_i915_gem_exec_object2 *entry;
798 bool need_fence, need_mappable;
799
Ben Widawsky27173f12013-08-14 11:38:36 +0200800 vma = list_first_entry(vmas, struct i915_vma, exec_list);
801 obj = vma->obj;
802 entry = vma->exec_entry;
Chris Wilson6fe4f142011-01-10 17:35:37 +0000803
David Weinehallb1b38272015-05-20 17:00:13 +0300804 if (ctx->flags & CONTEXT_NO_ZEROMAP)
805 entry->flags |= __EXEC_OBJECT_NEEDS_BIAS;
806
Chris Wilson82b6b6d2014-08-09 17:37:24 +0100807 if (!has_fenced_gpu_access)
808 entry->flags &= ~EXEC_OBJECT_NEEDS_FENCE;
Chris Wilson6fe4f142011-01-10 17:35:37 +0000809 need_fence =
Chris Wilson6fe4f142011-01-10 17:35:37 +0000810 entry->flags & EXEC_OBJECT_NEEDS_FENCE &&
Chris Wilson3e510a82016-08-05 10:14:23 +0100811 i915_gem_object_is_tiled(obj);
Ben Widawsky27173f12013-08-14 11:38:36 +0200812 need_mappable = need_fence || need_reloc_mappable(vma);
Chris Wilson6fe4f142011-01-10 17:35:37 +0000813
Chris Wilson506a8e82015-12-08 11:55:07 +0000814 if (entry->flags & EXEC_OBJECT_PINNED)
815 list_move_tail(&vma->exec_list, &pinned_vmas);
816 else if (need_mappable) {
Chris Wilsone6a84462014-08-11 12:00:12 +0200817 entry->flags |= __EXEC_OBJECT_NEEDS_MAP;
Ben Widawsky27173f12013-08-14 11:38:36 +0200818 list_move(&vma->exec_list, &ordered_vmas);
Chris Wilsone6a84462014-08-11 12:00:12 +0200819 } else
Ben Widawsky27173f12013-08-14 11:38:36 +0200820 list_move_tail(&vma->exec_list, &ordered_vmas);
Chris Wilson595dad72011-01-13 11:03:48 +0000821
Daniel Vettered5982e2013-01-17 22:23:36 +0100822 obj->base.pending_read_domains = I915_GEM_GPU_DOMAINS & ~I915_GEM_DOMAIN_COMMAND;
Chris Wilson595dad72011-01-13 11:03:48 +0000823 obj->base.pending_write_domain = 0;
Chris Wilson6fe4f142011-01-10 17:35:37 +0000824 }
Ben Widawsky27173f12013-08-14 11:38:36 +0200825 list_splice(&ordered_vmas, vmas);
Chris Wilson506a8e82015-12-08 11:55:07 +0000826 list_splice(&pinned_vmas, vmas);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000827
828 /* Attempt to pin all of the buffers into the GTT.
829 * This is done in 3 phases:
830 *
831 * 1a. Unbind all objects that do not match the GTT constraints for
832 * the execbuffer (fenceable, mappable, alignment etc).
833 * 1b. Increment pin count for already bound objects.
834 * 2. Bind new objects.
835 * 3. Decrement pin count.
836 *
Chris Wilson7788a762012-08-24 19:18:18 +0100837 * This avoid unnecessary unbinding of later objects in order to make
Chris Wilson54cf91d2010-11-25 18:00:26 +0000838 * room for the earlier objects *unless* we need to defragment.
839 */
840 retry = 0;
841 do {
Chris Wilson7788a762012-08-24 19:18:18 +0100842 int ret = 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000843
844 /* Unbind any ill-fitting objects or pin. */
Ben Widawsky27173f12013-08-14 11:38:36 +0200845 list_for_each_entry(vma, vmas, exec_list) {
Ben Widawsky27173f12013-08-14 11:38:36 +0200846 if (!drm_mm_node_allocated(&vma->node))
Chris Wilson54cf91d2010-11-25 18:00:26 +0000847 continue;
848
Chris Wilsone6a84462014-08-11 12:00:12 +0200849 if (eb_vma_misplaced(vma))
Ben Widawsky27173f12013-08-14 11:38:36 +0200850 ret = i915_vma_unbind(vma);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000851 else
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +0000852 ret = i915_gem_execbuffer_reserve_vma(vma,
853 engine,
854 need_relocs);
Chris Wilson432e58e2010-11-25 19:32:06 +0000855 if (ret)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000856 goto err;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000857 }
858
859 /* Bind fresh objects */
Ben Widawsky27173f12013-08-14 11:38:36 +0200860 list_for_each_entry(vma, vmas, exec_list) {
861 if (drm_mm_node_allocated(&vma->node))
Chris Wilson1690e1e2011-12-14 13:57:08 +0100862 continue;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000863
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +0000864 ret = i915_gem_execbuffer_reserve_vma(vma, engine,
865 need_relocs);
Chris Wilson7788a762012-08-24 19:18:18 +0100866 if (ret)
867 goto err;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000868 }
869
Chris Wilsona415d352013-11-26 11:23:15 +0000870err:
Chris Wilson6c085a72012-08-20 11:40:46 +0200871 if (ret != -ENOSPC || retry++)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000872 return ret;
873
Chris Wilsona415d352013-11-26 11:23:15 +0000874 /* Decrement pin count for bound objects */
875 list_for_each_entry(vma, vmas, exec_list)
876 i915_gem_execbuffer_unreserve_vma(vma);
877
Ben Widawsky68c8c172013-09-11 14:57:50 -0700878 ret = i915_gem_evict_vm(vm, true);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000879 if (ret)
880 return ret;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000881 } while (1);
882}
883
884static int
885i915_gem_execbuffer_relocate_slow(struct drm_device *dev,
Daniel Vettered5982e2013-01-17 22:23:36 +0100886 struct drm_i915_gem_execbuffer2 *args,
Chris Wilson54cf91d2010-11-25 18:00:26 +0000887 struct drm_file *file,
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +0000888 struct intel_engine_cs *engine,
Ben Widawsky27173f12013-08-14 11:38:36 +0200889 struct eb_vmas *eb,
David Weinehallb1b38272015-05-20 17:00:13 +0300890 struct drm_i915_gem_exec_object2 *exec,
Chris Wilsone2efd132016-05-24 14:53:34 +0100891 struct i915_gem_context *ctx)
Chris Wilson54cf91d2010-11-25 18:00:26 +0000892{
893 struct drm_i915_gem_relocation_entry *reloc;
Ben Widawsky27173f12013-08-14 11:38:36 +0200894 struct i915_address_space *vm;
895 struct i915_vma *vma;
Daniel Vettered5982e2013-01-17 22:23:36 +0100896 bool need_relocs;
Chris Wilsondd6864a2011-01-12 23:49:13 +0000897 int *reloc_offset;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000898 int i, total, ret;
Daniel Vetterb205ca52013-09-19 14:00:11 +0200899 unsigned count = args->buffer_count;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000900
Ben Widawsky27173f12013-08-14 11:38:36 +0200901 vm = list_first_entry(&eb->vmas, struct i915_vma, exec_list)->vm;
902
Chris Wilson67731b82010-12-08 10:38:14 +0000903 /* We may process another execbuffer during the unlock... */
Ben Widawsky27173f12013-08-14 11:38:36 +0200904 while (!list_empty(&eb->vmas)) {
905 vma = list_first_entry(&eb->vmas, struct i915_vma, exec_list);
906 list_del_init(&vma->exec_list);
Chris Wilsona415d352013-11-26 11:23:15 +0000907 i915_gem_execbuffer_unreserve_vma(vma);
Chris Wilson624192c2016-08-15 10:48:50 +0100908 i915_vma_put(vma);
Chris Wilson67731b82010-12-08 10:38:14 +0000909 }
910
Chris Wilson54cf91d2010-11-25 18:00:26 +0000911 mutex_unlock(&dev->struct_mutex);
912
913 total = 0;
914 for (i = 0; i < count; i++)
Chris Wilson432e58e2010-11-25 19:32:06 +0000915 total += exec[i].relocation_count;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000916
Chris Wilsondd6864a2011-01-12 23:49:13 +0000917 reloc_offset = drm_malloc_ab(count, sizeof(*reloc_offset));
Chris Wilson54cf91d2010-11-25 18:00:26 +0000918 reloc = drm_malloc_ab(total, sizeof(*reloc));
Chris Wilsondd6864a2011-01-12 23:49:13 +0000919 if (reloc == NULL || reloc_offset == NULL) {
920 drm_free_large(reloc);
921 drm_free_large(reloc_offset);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000922 mutex_lock(&dev->struct_mutex);
923 return -ENOMEM;
924 }
925
926 total = 0;
927 for (i = 0; i < count; i++) {
928 struct drm_i915_gem_relocation_entry __user *user_relocs;
Chris Wilson262b6d32013-01-15 16:17:54 +0000929 u64 invalid_offset = (u64)-1;
930 int j;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000931
Gustavo Padovan3ed605b2016-04-26 12:32:27 -0300932 user_relocs = u64_to_user_ptr(exec[i].relocs_ptr);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000933
934 if (copy_from_user(reloc+total, user_relocs,
Chris Wilson432e58e2010-11-25 19:32:06 +0000935 exec[i].relocation_count * sizeof(*reloc))) {
Chris Wilson54cf91d2010-11-25 18:00:26 +0000936 ret = -EFAULT;
937 mutex_lock(&dev->struct_mutex);
938 goto err;
939 }
940
Chris Wilson262b6d32013-01-15 16:17:54 +0000941 /* As we do not update the known relocation offsets after
942 * relocating (due to the complexities in lock handling),
943 * we need to mark them as invalid now so that we force the
944 * relocation processing next time. Just in case the target
945 * object is evicted and then rebound into its old
946 * presumed_offset before the next execbuffer - if that
947 * happened we would make the mistake of assuming that the
948 * relocations were valid.
949 */
950 for (j = 0; j < exec[i].relocation_count; j++) {
Chris Wilson9aab8bf2014-05-23 10:45:52 +0100951 if (__copy_to_user(&user_relocs[j].presumed_offset,
952 &invalid_offset,
953 sizeof(invalid_offset))) {
Chris Wilson262b6d32013-01-15 16:17:54 +0000954 ret = -EFAULT;
955 mutex_lock(&dev->struct_mutex);
956 goto err;
957 }
958 }
959
Chris Wilsondd6864a2011-01-12 23:49:13 +0000960 reloc_offset[i] = total;
Chris Wilson432e58e2010-11-25 19:32:06 +0000961 total += exec[i].relocation_count;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000962 }
963
964 ret = i915_mutex_lock_interruptible(dev);
965 if (ret) {
966 mutex_lock(&dev->struct_mutex);
967 goto err;
968 }
969
Chris Wilson67731b82010-12-08 10:38:14 +0000970 /* reacquire the objects */
Chris Wilson67731b82010-12-08 10:38:14 +0000971 eb_reset(eb);
Ben Widawsky27173f12013-08-14 11:38:36 +0200972 ret = eb_lookup_vmas(eb, exec, args, vm, file);
Chris Wilson3b96eff2013-01-08 10:53:14 +0000973 if (ret)
974 goto err;
Chris Wilson67731b82010-12-08 10:38:14 +0000975
Daniel Vettered5982e2013-01-17 22:23:36 +0100976 need_relocs = (args->flags & I915_EXEC_NO_RELOC) == 0;
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +0000977 ret = i915_gem_execbuffer_reserve(engine, &eb->vmas, ctx,
978 &need_relocs);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000979 if (ret)
980 goto err;
981
Ben Widawsky27173f12013-08-14 11:38:36 +0200982 list_for_each_entry(vma, &eb->vmas, exec_list) {
983 int offset = vma->exec_entry - exec;
984 ret = i915_gem_execbuffer_relocate_vma_slow(vma, eb,
985 reloc + reloc_offset[offset]);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000986 if (ret)
987 goto err;
Chris Wilson54cf91d2010-11-25 18:00:26 +0000988 }
989
990 /* Leave the user relocations as are, this is the painfully slow path,
991 * and we want to avoid the complication of dropping the lock whilst
992 * having buffers reserved in the aperture and so causing spurious
993 * ENOSPC for random operations.
994 */
995
996err:
997 drm_free_large(reloc);
Chris Wilsondd6864a2011-01-12 23:49:13 +0000998 drm_free_large(reloc_offset);
Chris Wilson54cf91d2010-11-25 18:00:26 +0000999 return ret;
1000}
1001
Chris Wilson573adb32016-08-04 16:32:39 +01001002static unsigned int eb_other_engines(struct drm_i915_gem_request *req)
1003{
1004 unsigned int mask;
1005
1006 mask = ~intel_engine_flag(req->engine) & I915_BO_ACTIVE_MASK;
1007 mask <<= I915_BO_ACTIVE_SHIFT;
1008
1009 return mask;
1010}
1011
Chris Wilson54cf91d2010-11-25 18:00:26 +00001012static int
John Harrison535fbe82015-05-29 17:43:32 +01001013i915_gem_execbuffer_move_to_gpu(struct drm_i915_gem_request *req,
Ben Widawsky27173f12013-08-14 11:38:36 +02001014 struct list_head *vmas)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001015{
Chris Wilson573adb32016-08-04 16:32:39 +01001016 const unsigned int other_rings = eb_other_engines(req);
Ben Widawsky27173f12013-08-14 11:38:36 +02001017 struct i915_vma *vma;
Daniel Vetter6ac42f42012-07-21 12:25:01 +02001018 uint32_t flush_domains = 0;
Chris Wilson000433b2013-08-08 14:41:09 +01001019 bool flush_chipset = false;
Chris Wilson432e58e2010-11-25 19:32:06 +00001020 int ret;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001021
Ben Widawsky27173f12013-08-14 11:38:36 +02001022 list_for_each_entry(vma, vmas, exec_list) {
1023 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilson03ade512015-04-27 13:41:18 +01001024
Chris Wilson573adb32016-08-04 16:32:39 +01001025 if (obj->flags & other_rings) {
Chris Wilson8e637172016-08-02 22:50:26 +01001026 ret = i915_gem_object_sync(obj, req);
Chris Wilson03ade512015-04-27 13:41:18 +01001027 if (ret)
1028 return ret;
1029 }
Daniel Vetter6ac42f42012-07-21 12:25:01 +02001030
1031 if (obj->base.write_domain & I915_GEM_DOMAIN_CPU)
Chris Wilson000433b2013-08-08 14:41:09 +01001032 flush_chipset |= i915_gem_clflush_object(obj, false);
Daniel Vetter6ac42f42012-07-21 12:25:01 +02001033
Daniel Vetter6ac42f42012-07-21 12:25:01 +02001034 flush_domains |= obj->base.write_domain;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001035 }
1036
Chris Wilson000433b2013-08-08 14:41:09 +01001037 if (flush_chipset)
Chris Wilsonc0336662016-05-06 15:40:21 +01001038 i915_gem_chipset_flush(req->engine->i915);
Daniel Vetter6ac42f42012-07-21 12:25:01 +02001039
1040 if (flush_domains & I915_GEM_DOMAIN_GTT)
1041 wmb();
1042
Chris Wilsonc7fe7d22016-08-02 22:50:24 +01001043 /* Unconditionally invalidate GPU caches and TLBs. */
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001044 return req->engine->emit_flush(req, EMIT_INVALIDATE);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001045}
1046
Chris Wilson432e58e2010-11-25 19:32:06 +00001047static bool
1048i915_gem_check_execbuffer(struct drm_i915_gem_execbuffer2 *exec)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001049{
Daniel Vettered5982e2013-01-17 22:23:36 +01001050 if (exec->flags & __I915_EXEC_UNKNOWN_FLAGS)
1051 return false;
1052
Chris Wilson2f5945b2015-10-06 11:39:55 +01001053 /* Kernel clipping was a DRI1 misfeature */
1054 if (exec->num_cliprects || exec->cliprects_ptr)
1055 return false;
1056
1057 if (exec->DR4 == 0xffffffff) {
1058 DRM_DEBUG("UXA submitting garbage DR4, fixing up\n");
1059 exec->DR4 = 0;
1060 }
1061 if (exec->DR1 || exec->DR4)
1062 return false;
1063
1064 if ((exec->batch_start_offset | exec->batch_len) & 0x7)
1065 return false;
1066
1067 return true;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001068}
1069
1070static int
Chris Wilsonad19f102014-08-10 06:29:08 +01001071validate_exec_list(struct drm_device *dev,
1072 struct drm_i915_gem_exec_object2 *exec,
Chris Wilson54cf91d2010-11-25 18:00:26 +00001073 int count)
1074{
Daniel Vetterb205ca52013-09-19 14:00:11 +02001075 unsigned relocs_total = 0;
1076 unsigned relocs_max = UINT_MAX / sizeof(struct drm_i915_gem_relocation_entry);
Chris Wilsonad19f102014-08-10 06:29:08 +01001077 unsigned invalid_flags;
1078 int i;
1079
Dave Gordon9e2793f62016-07-14 14:52:03 +01001080 /* INTERNAL flags must not overlap with external ones */
1081 BUILD_BUG_ON(__EXEC_OBJECT_INTERNAL_FLAGS & ~__EXEC_OBJECT_UNKNOWN_FLAGS);
1082
Chris Wilsonad19f102014-08-10 06:29:08 +01001083 invalid_flags = __EXEC_OBJECT_UNKNOWN_FLAGS;
1084 if (USES_FULL_PPGTT(dev))
1085 invalid_flags |= EXEC_OBJECT_NEEDS_GTT;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001086
1087 for (i = 0; i < count; i++) {
Gustavo Padovan3ed605b2016-04-26 12:32:27 -03001088 char __user *ptr = u64_to_user_ptr(exec[i].relocs_ptr);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001089 int length; /* limited by fault_in_pages_readable() */
1090
Chris Wilsonad19f102014-08-10 06:29:08 +01001091 if (exec[i].flags & invalid_flags)
Daniel Vettered5982e2013-01-17 22:23:36 +01001092 return -EINVAL;
1093
Michał Winiarski934acce2015-12-29 18:24:52 +01001094 /* Offset can be used as input (EXEC_OBJECT_PINNED), reject
1095 * any non-page-aligned or non-canonical addresses.
1096 */
1097 if (exec[i].flags & EXEC_OBJECT_PINNED) {
1098 if (exec[i].offset !=
1099 gen8_canonical_addr(exec[i].offset & PAGE_MASK))
1100 return -EINVAL;
1101
1102 /* From drm_mm perspective address space is continuous,
1103 * so from this point we're always using non-canonical
1104 * form internally.
1105 */
1106 exec[i].offset = gen8_noncanonical_addr(exec[i].offset);
1107 }
1108
Chris Wilson55a97852015-06-19 13:59:46 +01001109 if (exec[i].alignment && !is_power_of_2(exec[i].alignment))
1110 return -EINVAL;
1111
Chris Wilson91b2db62016-08-04 16:32:23 +01001112 /* pad_to_size was once a reserved field, so sanitize it */
1113 if (exec[i].flags & EXEC_OBJECT_PAD_TO_SIZE) {
1114 if (offset_in_page(exec[i].pad_to_size))
1115 return -EINVAL;
1116 } else {
1117 exec[i].pad_to_size = 0;
1118 }
1119
Kees Cook3118a4f2013-03-11 17:31:45 -07001120 /* First check for malicious input causing overflow in
1121 * the worst case where we need to allocate the entire
1122 * relocation tree as a single array.
1123 */
1124 if (exec[i].relocation_count > relocs_max - relocs_total)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001125 return -EINVAL;
Kees Cook3118a4f2013-03-11 17:31:45 -07001126 relocs_total += exec[i].relocation_count;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001127
1128 length = exec[i].relocation_count *
1129 sizeof(struct drm_i915_gem_relocation_entry);
Kees Cook30587532013-03-11 14:37:35 -07001130 /*
1131 * We must check that the entire relocation array is safe
1132 * to read, but since we may need to update the presumed
1133 * offsets during execution, check for full write access.
1134 */
Chris Wilson54cf91d2010-11-25 18:00:26 +00001135 if (!access_ok(VERIFY_WRITE, ptr, length))
1136 return -EFAULT;
1137
Jani Nikulad330a952014-01-21 11:24:25 +02001138 if (likely(!i915.prefault_disable)) {
Xiong Zhang0b74b502013-07-19 13:51:24 +08001139 if (fault_in_multipages_readable(ptr, length))
1140 return -EFAULT;
1141 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001142 }
1143
1144 return 0;
1145}
1146
Chris Wilsone2efd132016-05-24 14:53:34 +01001147static struct i915_gem_context *
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001148i915_gem_validate_context(struct drm_device *dev, struct drm_file *file,
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001149 struct intel_engine_cs *engine, const u32 ctx_id)
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001150{
Chris Wilsone2efd132016-05-24 14:53:34 +01001151 struct i915_gem_context *ctx = NULL;
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001152 struct i915_ctx_hang_stats *hs;
1153
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001154 if (engine->id != RCS && ctx_id != DEFAULT_CONTEXT_HANDLE)
Daniel Vetter7c9c4b82013-12-18 16:37:49 +01001155 return ERR_PTR(-EINVAL);
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001156
Chris Wilsonca585b52016-05-24 14:53:36 +01001157 ctx = i915_gem_context_lookup(file->driver_priv, ctx_id);
Ben Widawsky72ad5c42014-01-02 19:50:27 -10001158 if (IS_ERR(ctx))
Ben Widawsky41bde552013-12-06 14:11:21 -08001159 return ctx;
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001160
Ben Widawsky41bde552013-12-06 14:11:21 -08001161 hs = &ctx->hang_stats;
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001162 if (hs->banned) {
1163 DRM_DEBUG("Context %u tried to submit while banned\n", ctx_id);
Ben Widawsky41bde552013-12-06 14:11:21 -08001164 return ERR_PTR(-EIO);
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001165 }
1166
Ben Widawsky41bde552013-12-06 14:11:21 -08001167 return ctx;
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001168}
1169
Chris Wilson5cf3d282016-08-04 07:52:43 +01001170void i915_vma_move_to_active(struct i915_vma *vma,
1171 struct drm_i915_gem_request *req,
1172 unsigned int flags)
1173{
1174 struct drm_i915_gem_object *obj = vma->obj;
1175 const unsigned int idx = req->engine->id;
1176
1177 GEM_BUG_ON(!drm_mm_node_allocated(&vma->node));
1178
1179 obj->dirty = 1; /* be paranoid */
1180
Chris Wilsonb0decaf2016-08-04 07:52:44 +01001181 /* Add a reference if we're newly entering the active list.
1182 * The order in which we add operations to the retirement queue is
1183 * vital here: mark_active adds to the start of the callback list,
1184 * such that subsequent callbacks are called first. Therefore we
1185 * add the active reference first and queue for it to be dropped
1186 * *last*.
1187 */
Chris Wilson573adb32016-08-04 16:32:39 +01001188 if (!i915_gem_object_is_active(obj))
Chris Wilson5cf3d282016-08-04 07:52:43 +01001189 i915_gem_object_get(obj);
Chris Wilson573adb32016-08-04 16:32:39 +01001190 i915_gem_object_set_active(obj, idx);
Chris Wilson5cf3d282016-08-04 07:52:43 +01001191 i915_gem_active_set(&obj->last_read[idx], req);
1192
1193 if (flags & EXEC_OBJECT_WRITE) {
1194 i915_gem_active_set(&obj->last_write, req);
1195
1196 intel_fb_obj_invalidate(obj, ORIGIN_CS);
1197
1198 /* update for the implicit flush after a batch */
1199 obj->base.write_domain &= ~I915_GEM_GPU_DOMAINS;
1200 }
1201
1202 if (flags & EXEC_OBJECT_NEEDS_FENCE) {
1203 i915_gem_active_set(&obj->last_fence, req);
1204 if (flags & __EXEC_OBJECT_HAS_FENCE) {
1205 struct drm_i915_private *dev_priv = req->i915;
1206
1207 list_move_tail(&dev_priv->fence_regs[obj->fence_reg].lru_list,
1208 &dev_priv->mm.fence_list);
1209 }
1210 }
1211
Chris Wilsonb0decaf2016-08-04 07:52:44 +01001212 i915_vma_set_active(vma, idx);
1213 i915_gem_active_set(&vma->last_read[idx], req);
Chris Wilson5cf3d282016-08-04 07:52:43 +01001214 list_move_tail(&vma->vm_link, &vma->vm->active_list);
1215}
1216
Chris Wilsonad778f82016-08-04 16:32:42 +01001217static void eb_export_fence(struct drm_i915_gem_object *obj,
1218 struct drm_i915_gem_request *req,
1219 unsigned int flags)
1220{
1221 struct reservation_object *resv;
1222
1223 resv = i915_gem_object_get_dmabuf_resv(obj);
1224 if (!resv)
1225 return;
1226
1227 /* Ignore errors from failing to allocate the new fence, we can't
1228 * handle an error right now. Worst case should be missed
1229 * synchronisation leading to rendering corruption.
1230 */
1231 ww_mutex_lock(&resv->lock, NULL);
1232 if (flags & EXEC_OBJECT_WRITE)
1233 reservation_object_add_excl_fence(resv, &req->fence);
1234 else if (reservation_object_reserve_shared(resv) == 0)
1235 reservation_object_add_shared_fence(resv, &req->fence);
1236 ww_mutex_unlock(&resv->lock);
1237}
1238
Chris Wilson5b043f42016-08-02 22:50:38 +01001239static void
Ben Widawsky27173f12013-08-14 11:38:36 +02001240i915_gem_execbuffer_move_to_active(struct list_head *vmas,
John Harrison8a8edb52015-05-29 17:43:33 +01001241 struct drm_i915_gem_request *req)
Chris Wilson432e58e2010-11-25 19:32:06 +00001242{
Ben Widawsky27173f12013-08-14 11:38:36 +02001243 struct i915_vma *vma;
Chris Wilson432e58e2010-11-25 19:32:06 +00001244
Ben Widawsky27173f12013-08-14 11:38:36 +02001245 list_for_each_entry(vma, vmas, exec_list) {
1246 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilson69c2fc82012-07-20 12:41:03 +01001247 u32 old_read = obj->base.read_domains;
1248 u32 old_write = obj->base.write_domain;
Chris Wilsondb53a302011-02-03 11:57:46 +00001249
Chris Wilson432e58e2010-11-25 19:32:06 +00001250 obj->base.write_domain = obj->base.pending_write_domain;
Chris Wilson5cf3d282016-08-04 07:52:43 +01001251 if (obj->base.write_domain)
1252 vma->exec_entry->flags |= EXEC_OBJECT_WRITE;
1253 else
Daniel Vettered5982e2013-01-17 22:23:36 +01001254 obj->base.pending_read_domains |= obj->base.read_domains;
1255 obj->base.read_domains = obj->base.pending_read_domains;
Chris Wilson432e58e2010-11-25 19:32:06 +00001256
Chris Wilson5cf3d282016-08-04 07:52:43 +01001257 i915_vma_move_to_active(vma, req, vma->exec_entry->flags);
Chris Wilsonad778f82016-08-04 16:32:42 +01001258 eb_export_fence(obj, req, vma->exec_entry->flags);
Chris Wilsondb53a302011-02-03 11:57:46 +00001259 trace_i915_gem_object_change_domain(obj, old_read, old_write);
Chris Wilson432e58e2010-11-25 19:32:06 +00001260 }
1261}
1262
Chris Wilson54cf91d2010-11-25 18:00:26 +00001263static int
Chris Wilsonb5321f32016-08-02 22:50:18 +01001264i915_reset_gen7_sol_offsets(struct drm_i915_gem_request *req)
Eric Anholtae662d32012-01-03 09:23:29 -08001265{
Chris Wilson7e37f882016-08-02 22:50:21 +01001266 struct intel_ring *ring = req->ring;
Eric Anholtae662d32012-01-03 09:23:29 -08001267 int ret, i;
1268
Chris Wilsonb5321f32016-08-02 22:50:18 +01001269 if (!IS_GEN7(req->i915) || req->engine->id != RCS) {
Daniel Vetter9d662da2014-04-24 08:09:09 +02001270 DRM_DEBUG("sol reset is gen7/rcs only\n");
1271 return -EINVAL;
1272 }
Eric Anholtae662d32012-01-03 09:23:29 -08001273
John Harrison5fb9de12015-05-29 17:44:07 +01001274 ret = intel_ring_begin(req, 4 * 3);
Eric Anholtae662d32012-01-03 09:23:29 -08001275 if (ret)
1276 return ret;
1277
1278 for (i = 0; i < 4; i++) {
Chris Wilsonb5321f32016-08-02 22:50:18 +01001279 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
1280 intel_ring_emit_reg(ring, GEN7_SO_WRITE_OFFSET(i));
1281 intel_ring_emit(ring, 0);
Eric Anholtae662d32012-01-03 09:23:29 -08001282 }
1283
Chris Wilsonb5321f32016-08-02 22:50:18 +01001284 intel_ring_advance(ring);
Eric Anholtae662d32012-01-03 09:23:29 -08001285
1286 return 0;
1287}
1288
Chris Wilson058d88c2016-08-15 10:49:06 +01001289static struct i915_vma *
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001290i915_gem_execbuffer_parse(struct intel_engine_cs *engine,
Brad Volkin71745372014-12-11 12:13:12 -08001291 struct drm_i915_gem_exec_object2 *shadow_exec_entry,
Brad Volkin71745372014-12-11 12:13:12 -08001292 struct drm_i915_gem_object *batch_obj,
Chris Wilson59bfa122016-08-04 16:32:31 +01001293 struct eb_vmas *eb,
Brad Volkin71745372014-12-11 12:13:12 -08001294 u32 batch_start_offset,
1295 u32 batch_len,
Chris Wilson17cabf52015-01-14 11:20:57 +00001296 bool is_master)
Brad Volkin71745372014-12-11 12:13:12 -08001297{
Brad Volkin71745372014-12-11 12:13:12 -08001298 struct drm_i915_gem_object *shadow_batch_obj;
Chris Wilson17cabf52015-01-14 11:20:57 +00001299 struct i915_vma *vma;
Brad Volkin71745372014-12-11 12:13:12 -08001300 int ret;
1301
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001302 shadow_batch_obj = i915_gem_batch_pool_get(&engine->batch_pool,
Chris Wilson17cabf52015-01-14 11:20:57 +00001303 PAGE_ALIGN(batch_len));
Brad Volkin71745372014-12-11 12:13:12 -08001304 if (IS_ERR(shadow_batch_obj))
Chris Wilson59bfa122016-08-04 16:32:31 +01001305 return ERR_CAST(shadow_batch_obj);
Brad Volkin71745372014-12-11 12:13:12 -08001306
Chris Wilson33a051a2016-07-27 09:07:26 +01001307 ret = intel_engine_cmd_parser(engine,
1308 batch_obj,
1309 shadow_batch_obj,
1310 batch_start_offset,
1311 batch_len,
1312 is_master);
Chris Wilson058d88c2016-08-15 10:49:06 +01001313 if (ret) {
1314 if (ret == -EACCES) /* unhandled chained batch */
1315 vma = NULL;
1316 else
1317 vma = ERR_PTR(ret);
1318 goto out;
1319 }
Brad Volkin71745372014-12-11 12:13:12 -08001320
Chris Wilson058d88c2016-08-15 10:49:06 +01001321 vma = i915_gem_object_ggtt_pin(shadow_batch_obj, NULL, 0, 0, 0);
1322 if (IS_ERR(vma))
1323 goto out;
Chris Wilsonde4e7832015-04-07 16:20:35 +01001324
Chris Wilson17cabf52015-01-14 11:20:57 +00001325 memset(shadow_exec_entry, 0, sizeof(*shadow_exec_entry));
Brad Volkin71745372014-12-11 12:13:12 -08001326
Chris Wilson17cabf52015-01-14 11:20:57 +00001327 vma->exec_entry = shadow_exec_entry;
Chris Wilsonde4e7832015-04-07 16:20:35 +01001328 vma->exec_entry->flags = __EXEC_OBJECT_HAS_PIN;
Chris Wilson25dc5562016-07-20 13:31:52 +01001329 i915_gem_object_get(shadow_batch_obj);
Chris Wilson17cabf52015-01-14 11:20:57 +00001330 list_add_tail(&vma->exec_list, &eb->vmas);
Brad Volkin71745372014-12-11 12:13:12 -08001331
Chris Wilson058d88c2016-08-15 10:49:06 +01001332out:
Chris Wilsonde4e7832015-04-07 16:20:35 +01001333 i915_gem_object_unpin_pages(shadow_batch_obj);
Chris Wilson058d88c2016-08-15 10:49:06 +01001334 return vma;
Brad Volkin71745372014-12-11 12:13:12 -08001335}
Chris Wilson5c6c6002014-09-06 10:28:27 +01001336
Chris Wilson5b043f42016-08-02 22:50:38 +01001337static int
1338execbuf_submit(struct i915_execbuffer_params *params,
1339 struct drm_i915_gem_execbuffer2 *args,
1340 struct list_head *vmas)
Oscar Mateo78382592014-07-03 16:28:05 +01001341{
Chris Wilsonb5321f32016-08-02 22:50:18 +01001342 struct drm_i915_private *dev_priv = params->request->i915;
John Harrison5f19e2b2015-05-29 17:43:27 +01001343 u64 exec_start, exec_len;
Oscar Mateo78382592014-07-03 16:28:05 +01001344 int instp_mode;
1345 u32 instp_mask;
Chris Wilson2f5945b2015-10-06 11:39:55 +01001346 int ret;
Oscar Mateo78382592014-07-03 16:28:05 +01001347
John Harrison535fbe82015-05-29 17:43:32 +01001348 ret = i915_gem_execbuffer_move_to_gpu(params->request, vmas);
Oscar Mateo78382592014-07-03 16:28:05 +01001349 if (ret)
Chris Wilson2f5945b2015-10-06 11:39:55 +01001350 return ret;
Oscar Mateo78382592014-07-03 16:28:05 +01001351
John Harrisonba01cc92015-05-29 17:43:41 +01001352 ret = i915_switch_context(params->request);
Oscar Mateo78382592014-07-03 16:28:05 +01001353 if (ret)
Chris Wilson2f5945b2015-10-06 11:39:55 +01001354 return ret;
Oscar Mateo78382592014-07-03 16:28:05 +01001355
1356 instp_mode = args->flags & I915_EXEC_CONSTANTS_MASK;
1357 instp_mask = I915_EXEC_CONSTANTS_MASK;
1358 switch (instp_mode) {
1359 case I915_EXEC_CONSTANTS_REL_GENERAL:
1360 case I915_EXEC_CONSTANTS_ABSOLUTE:
1361 case I915_EXEC_CONSTANTS_REL_SURFACE:
Chris Wilsonb5321f32016-08-02 22:50:18 +01001362 if (instp_mode != 0 && params->engine->id != RCS) {
Oscar Mateo78382592014-07-03 16:28:05 +01001363 DRM_DEBUG("non-0 rel constants mode on non-RCS\n");
Chris Wilson2f5945b2015-10-06 11:39:55 +01001364 return -EINVAL;
Oscar Mateo78382592014-07-03 16:28:05 +01001365 }
1366
1367 if (instp_mode != dev_priv->relative_constants_mode) {
Chris Wilsonb5321f32016-08-02 22:50:18 +01001368 if (INTEL_INFO(dev_priv)->gen < 4) {
Oscar Mateo78382592014-07-03 16:28:05 +01001369 DRM_DEBUG("no rel constants on pre-gen4\n");
Chris Wilson2f5945b2015-10-06 11:39:55 +01001370 return -EINVAL;
Oscar Mateo78382592014-07-03 16:28:05 +01001371 }
1372
Chris Wilsonb5321f32016-08-02 22:50:18 +01001373 if (INTEL_INFO(dev_priv)->gen > 5 &&
Oscar Mateo78382592014-07-03 16:28:05 +01001374 instp_mode == I915_EXEC_CONSTANTS_REL_SURFACE) {
1375 DRM_DEBUG("rel surface constants mode invalid on gen5+\n");
Chris Wilson2f5945b2015-10-06 11:39:55 +01001376 return -EINVAL;
Oscar Mateo78382592014-07-03 16:28:05 +01001377 }
1378
1379 /* The HW changed the meaning on this bit on gen6 */
Chris Wilsonb5321f32016-08-02 22:50:18 +01001380 if (INTEL_INFO(dev_priv)->gen >= 6)
Oscar Mateo78382592014-07-03 16:28:05 +01001381 instp_mask &= ~I915_EXEC_CONSTANTS_REL_SURFACE;
1382 }
1383 break;
1384 default:
1385 DRM_DEBUG("execbuf with unknown constants: %d\n", instp_mode);
Chris Wilson2f5945b2015-10-06 11:39:55 +01001386 return -EINVAL;
Oscar Mateo78382592014-07-03 16:28:05 +01001387 }
1388
Chris Wilsonb5321f32016-08-02 22:50:18 +01001389 if (params->engine->id == RCS &&
Chris Wilson2f5945b2015-10-06 11:39:55 +01001390 instp_mode != dev_priv->relative_constants_mode) {
Chris Wilson7e37f882016-08-02 22:50:21 +01001391 struct intel_ring *ring = params->request->ring;
Chris Wilsonb5321f32016-08-02 22:50:18 +01001392
John Harrison5fb9de12015-05-29 17:44:07 +01001393 ret = intel_ring_begin(params->request, 4);
Oscar Mateo78382592014-07-03 16:28:05 +01001394 if (ret)
Chris Wilson2f5945b2015-10-06 11:39:55 +01001395 return ret;
Oscar Mateo78382592014-07-03 16:28:05 +01001396
Chris Wilsonb5321f32016-08-02 22:50:18 +01001397 intel_ring_emit(ring, MI_NOOP);
1398 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
1399 intel_ring_emit_reg(ring, INSTPM);
1400 intel_ring_emit(ring, instp_mask << 16 | instp_mode);
1401 intel_ring_advance(ring);
Oscar Mateo78382592014-07-03 16:28:05 +01001402
1403 dev_priv->relative_constants_mode = instp_mode;
1404 }
1405
1406 if (args->flags & I915_EXEC_GEN7_SOL_RESET) {
Chris Wilsonb5321f32016-08-02 22:50:18 +01001407 ret = i915_reset_gen7_sol_offsets(params->request);
Oscar Mateo78382592014-07-03 16:28:05 +01001408 if (ret)
Chris Wilson2f5945b2015-10-06 11:39:55 +01001409 return ret;
Oscar Mateo78382592014-07-03 16:28:05 +01001410 }
1411
John Harrison5f19e2b2015-05-29 17:43:27 +01001412 exec_len = args->batch_len;
Chris Wilson59bfa122016-08-04 16:32:31 +01001413 exec_start = params->batch->node.start +
John Harrison5f19e2b2015-05-29 17:43:27 +01001414 params->args_batch_start_offset;
1415
Ville Syrjälä9d611c02015-12-14 18:23:49 +02001416 if (exec_len == 0)
Chris Wilson59bfa122016-08-04 16:32:31 +01001417 exec_len = params->batch->size;
Ville Syrjälä9d611c02015-12-14 18:23:49 +02001418
Chris Wilson803688b2016-08-02 22:50:27 +01001419 ret = params->engine->emit_bb_start(params->request,
1420 exec_start, exec_len,
1421 params->dispatch_flags);
Chris Wilson2f5945b2015-10-06 11:39:55 +01001422 if (ret)
1423 return ret;
Oscar Mateo78382592014-07-03 16:28:05 +01001424
John Harrison95c24162015-05-29 17:43:31 +01001425 trace_i915_gem_ring_dispatch(params->request, params->dispatch_flags);
Oscar Mateo78382592014-07-03 16:28:05 +01001426
John Harrison8a8edb52015-05-29 17:43:33 +01001427 i915_gem_execbuffer_move_to_active(vmas, params->request);
Oscar Mateo78382592014-07-03 16:28:05 +01001428
Chris Wilson2f5945b2015-10-06 11:39:55 +01001429 return 0;
Oscar Mateo78382592014-07-03 16:28:05 +01001430}
1431
Zhao Yakuia8ebba72014-04-17 10:37:40 +08001432/**
1433 * Find one BSD ring to dispatch the corresponding BSD command.
Chris Wilsonc80ff162016-07-27 09:07:27 +01001434 * The engine index is returned.
Zhao Yakuia8ebba72014-04-17 10:37:40 +08001435 */
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001436static unsigned int
Chris Wilsonc80ff162016-07-27 09:07:27 +01001437gen8_dispatch_bsd_engine(struct drm_i915_private *dev_priv,
1438 struct drm_file *file)
Zhao Yakuia8ebba72014-04-17 10:37:40 +08001439{
Zhao Yakuia8ebba72014-04-17 10:37:40 +08001440 struct drm_i915_file_private *file_priv = file->driver_priv;
1441
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001442 /* Check whether the file_priv has already selected one ring. */
Chris Wilsonc80ff162016-07-27 09:07:27 +01001443 if ((int)file_priv->bsd_engine < 0) {
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001444 /* If not, use the ping-pong mechanism to select one. */
Chris Wilson91c8a322016-07-05 10:40:23 +01001445 mutex_lock(&dev_priv->drm.struct_mutex);
Chris Wilsonc80ff162016-07-27 09:07:27 +01001446 file_priv->bsd_engine = dev_priv->mm.bsd_engine_dispatch_index;
1447 dev_priv->mm.bsd_engine_dispatch_index ^= 1;
Chris Wilson91c8a322016-07-05 10:40:23 +01001448 mutex_unlock(&dev_priv->drm.struct_mutex);
Zhao Yakuia8ebba72014-04-17 10:37:40 +08001449 }
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001450
Chris Wilsonc80ff162016-07-27 09:07:27 +01001451 return file_priv->bsd_engine;
Zhao Yakuia8ebba72014-04-17 10:37:40 +08001452}
1453
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001454#define I915_USER_RINGS (4)
1455
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00001456static const enum intel_engine_id user_ring_map[I915_USER_RINGS + 1] = {
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001457 [I915_EXEC_DEFAULT] = RCS,
1458 [I915_EXEC_RENDER] = RCS,
1459 [I915_EXEC_BLT] = BCS,
1460 [I915_EXEC_BSD] = VCS,
1461 [I915_EXEC_VEBOX] = VECS
1462};
1463
Dave Gordonf8ca0c02016-07-20 18:16:07 +01001464static struct intel_engine_cs *
1465eb_select_engine(struct drm_i915_private *dev_priv,
1466 struct drm_file *file,
1467 struct drm_i915_gem_execbuffer2 *args)
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001468{
1469 unsigned int user_ring_id = args->flags & I915_EXEC_RING_MASK;
Dave Gordonf8ca0c02016-07-20 18:16:07 +01001470 struct intel_engine_cs *engine;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001471
1472 if (user_ring_id > I915_USER_RINGS) {
1473 DRM_DEBUG("execbuf with unknown ring: %u\n", user_ring_id);
Dave Gordonf8ca0c02016-07-20 18:16:07 +01001474 return NULL;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001475 }
1476
1477 if ((user_ring_id != I915_EXEC_BSD) &&
1478 ((args->flags & I915_EXEC_BSD_MASK) != 0)) {
1479 DRM_DEBUG("execbuf with non bsd ring but with invalid "
1480 "bsd dispatch flags: %d\n", (int)(args->flags));
Dave Gordonf8ca0c02016-07-20 18:16:07 +01001481 return NULL;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001482 }
1483
1484 if (user_ring_id == I915_EXEC_BSD && HAS_BSD2(dev_priv)) {
1485 unsigned int bsd_idx = args->flags & I915_EXEC_BSD_MASK;
1486
1487 if (bsd_idx == I915_EXEC_BSD_DEFAULT) {
Chris Wilsonc80ff162016-07-27 09:07:27 +01001488 bsd_idx = gen8_dispatch_bsd_engine(dev_priv, file);
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001489 } else if (bsd_idx >= I915_EXEC_BSD_RING1 &&
1490 bsd_idx <= I915_EXEC_BSD_RING2) {
Tvrtko Ursulind9da6aa2016-01-27 13:41:09 +00001491 bsd_idx >>= I915_EXEC_BSD_SHIFT;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001492 bsd_idx--;
1493 } else {
1494 DRM_DEBUG("execbuf with unknown bsd ring: %u\n",
1495 bsd_idx);
Dave Gordonf8ca0c02016-07-20 18:16:07 +01001496 return NULL;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001497 }
1498
Dave Gordonf8ca0c02016-07-20 18:16:07 +01001499 engine = &dev_priv->engine[_VCS(bsd_idx)];
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001500 } else {
Dave Gordonf8ca0c02016-07-20 18:16:07 +01001501 engine = &dev_priv->engine[user_ring_map[user_ring_id]];
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001502 }
1503
Dave Gordonf8ca0c02016-07-20 18:16:07 +01001504 if (!intel_engine_initialized(engine)) {
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001505 DRM_DEBUG("execbuf with invalid ring: %u\n", user_ring_id);
Dave Gordonf8ca0c02016-07-20 18:16:07 +01001506 return NULL;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001507 }
1508
Dave Gordonf8ca0c02016-07-20 18:16:07 +01001509 return engine;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001510}
1511
Eric Anholtae662d32012-01-03 09:23:29 -08001512static int
Chris Wilson54cf91d2010-11-25 18:00:26 +00001513i915_gem_do_execbuffer(struct drm_device *dev, void *data,
1514 struct drm_file *file,
1515 struct drm_i915_gem_execbuffer2 *args,
Ben Widawsky41bde552013-12-06 14:11:21 -08001516 struct drm_i915_gem_exec_object2 *exec)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001517{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001518 struct drm_i915_private *dev_priv = to_i915(dev);
1519 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Ben Widawsky27173f12013-08-14 11:38:36 +02001520 struct eb_vmas *eb;
Brad Volkin78a42372014-12-11 12:13:09 -08001521 struct drm_i915_gem_exec_object2 shadow_exec_entry;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001522 struct intel_engine_cs *engine;
Chris Wilsone2efd132016-05-24 14:53:34 +01001523 struct i915_gem_context *ctx;
Ben Widawsky41bde552013-12-06 14:11:21 -08001524 struct i915_address_space *vm;
John Harrison5f19e2b2015-05-29 17:43:27 +01001525 struct i915_execbuffer_params params_master; /* XXX: will be removed later */
1526 struct i915_execbuffer_params *params = &params_master;
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001527 const u32 ctx_id = i915_execbuffer2_get_context_id(*args);
John Harrison8e004ef2015-02-13 11:48:10 +00001528 u32 dispatch_flags;
Oscar Mateo78382592014-07-03 16:28:05 +01001529 int ret;
Daniel Vettered5982e2013-01-17 22:23:36 +01001530 bool need_relocs;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001531
Daniel Vettered5982e2013-01-17 22:23:36 +01001532 if (!i915_gem_check_execbuffer(args))
Chris Wilson432e58e2010-11-25 19:32:06 +00001533 return -EINVAL;
Chris Wilson432e58e2010-11-25 19:32:06 +00001534
Chris Wilsonad19f102014-08-10 06:29:08 +01001535 ret = validate_exec_list(dev, exec, args->buffer_count);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001536 if (ret)
1537 return ret;
1538
John Harrison8e004ef2015-02-13 11:48:10 +00001539 dispatch_flags = 0;
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001540 if (args->flags & I915_EXEC_SECURE) {
Daniel Vetterb3ac9f22016-06-21 10:54:20 +02001541 if (!drm_is_current_master(file) || !capable(CAP_SYS_ADMIN))
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001542 return -EPERM;
1543
John Harrison8e004ef2015-02-13 11:48:10 +00001544 dispatch_flags |= I915_DISPATCH_SECURE;
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001545 }
Daniel Vetterb45305f2012-12-17 16:21:27 +01001546 if (args->flags & I915_EXEC_IS_PINNED)
John Harrison8e004ef2015-02-13 11:48:10 +00001547 dispatch_flags |= I915_DISPATCH_PINNED;
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001548
Dave Gordonf8ca0c02016-07-20 18:16:07 +01001549 engine = eb_select_engine(dev_priv, file, args);
1550 if (!engine)
1551 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001552
1553 if (args->buffer_count < 1) {
Daniel Vetterff240192012-01-31 21:08:14 +01001554 DRM_DEBUG("execbuf with %d buffers\n", args->buffer_count);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001555 return -EINVAL;
1556 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001557
Abdiel Janulguea9ed33c2015-07-01 10:12:23 +03001558 if (args->flags & I915_EXEC_RESOURCE_STREAMER) {
1559 if (!HAS_RESOURCE_STREAMER(dev)) {
1560 DRM_DEBUG("RS is only allowed for Haswell, Gen8 and above\n");
1561 return -EINVAL;
1562 }
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001563 if (engine->id != RCS) {
Abdiel Janulguea9ed33c2015-07-01 10:12:23 +03001564 DRM_DEBUG("RS is not available on %s\n",
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001565 engine->name);
Abdiel Janulguea9ed33c2015-07-01 10:12:23 +03001566 return -EINVAL;
1567 }
1568
1569 dispatch_flags |= I915_DISPATCH_RS;
1570 }
1571
Chris Wilson67d97da2016-07-04 08:08:31 +01001572 /* Take a local wakeref for preparing to dispatch the execbuf as
1573 * we expect to access the hardware fairly frequently in the
1574 * process. Upon first dispatch, we acquire another prolonged
1575 * wakeref that we hold until the GPU has been idle for at least
1576 * 100ms.
1577 */
Paulo Zanonif65c9162013-11-27 18:20:34 -02001578 intel_runtime_pm_get(dev_priv);
1579
Chris Wilson54cf91d2010-11-25 18:00:26 +00001580 ret = i915_mutex_lock_interruptible(dev);
1581 if (ret)
1582 goto pre_mutex_err;
1583
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001584 ctx = i915_gem_validate_context(dev, file, engine, ctx_id);
Ben Widawsky72ad5c42014-01-02 19:50:27 -10001585 if (IS_ERR(ctx)) {
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001586 mutex_unlock(&dev->struct_mutex);
Ben Widawsky41bde552013-12-06 14:11:21 -08001587 ret = PTR_ERR(ctx);
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001588 goto pre_mutex_err;
Ben Widawsky935f38d2014-04-04 22:41:07 -07001589 }
Ben Widawsky41bde552013-12-06 14:11:21 -08001590
Chris Wilson9a6feaf2016-07-20 13:31:50 +01001591 i915_gem_context_get(ctx);
Ben Widawsky41bde552013-12-06 14:11:21 -08001592
Daniel Vetterae6c4802014-08-06 15:04:53 +02001593 if (ctx->ppgtt)
1594 vm = &ctx->ppgtt->base;
1595 else
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001596 vm = &ggtt->base;
Mika Kuoppalad299cce2013-11-26 16:14:33 +02001597
John Harrison5f19e2b2015-05-29 17:43:27 +01001598 memset(&params_master, 0x00, sizeof(params_master));
1599
Ben Widawsky17601cbc2013-11-25 09:54:38 -08001600 eb = eb_create(args);
Chris Wilson67731b82010-12-08 10:38:14 +00001601 if (eb == NULL) {
Chris Wilson9a6feaf2016-07-20 13:31:50 +01001602 i915_gem_context_put(ctx);
Chris Wilson67731b82010-12-08 10:38:14 +00001603 mutex_unlock(&dev->struct_mutex);
1604 ret = -ENOMEM;
1605 goto pre_mutex_err;
1606 }
1607
Chris Wilson54cf91d2010-11-25 18:00:26 +00001608 /* Look up object handles */
Ben Widawsky27173f12013-08-14 11:38:36 +02001609 ret = eb_lookup_vmas(eb, exec, args, vm, file);
Chris Wilson3b96eff2013-01-08 10:53:14 +00001610 if (ret)
1611 goto err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001612
Chris Wilson6fe4f142011-01-10 17:35:37 +00001613 /* take note of the batch buffer before we might reorder the lists */
Chris Wilson59bfa122016-08-04 16:32:31 +01001614 params->batch = eb_get_batch(eb);
Chris Wilson6fe4f142011-01-10 17:35:37 +00001615
Chris Wilson54cf91d2010-11-25 18:00:26 +00001616 /* Move the objects en-masse into the GTT, evicting if necessary. */
Daniel Vettered5982e2013-01-17 22:23:36 +01001617 need_relocs = (args->flags & I915_EXEC_NO_RELOC) == 0;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001618 ret = i915_gem_execbuffer_reserve(engine, &eb->vmas, ctx,
1619 &need_relocs);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001620 if (ret)
1621 goto err;
1622
1623 /* The objects are in their final locations, apply the relocations. */
Daniel Vettered5982e2013-01-17 22:23:36 +01001624 if (need_relocs)
Ben Widawsky17601cbc2013-11-25 09:54:38 -08001625 ret = i915_gem_execbuffer_relocate(eb);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001626 if (ret) {
1627 if (ret == -EFAULT) {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001628 ret = i915_gem_execbuffer_relocate_slow(dev, args, file,
1629 engine,
David Weinehallb1b38272015-05-20 17:00:13 +03001630 eb, exec, ctx);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001631 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1632 }
1633 if (ret)
1634 goto err;
1635 }
1636
1637 /* Set the pending read domains for the batch buffer to COMMAND */
Chris Wilson59bfa122016-08-04 16:32:31 +01001638 if (params->batch->obj->base.pending_write_domain) {
Daniel Vetterff240192012-01-31 21:08:14 +01001639 DRM_DEBUG("Attempting to use self-modifying batch buffer\n");
Chris Wilson54cf91d2010-11-25 18:00:26 +00001640 ret = -EINVAL;
1641 goto err;
1642 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001643
John Harrison5f19e2b2015-05-29 17:43:27 +01001644 params->args_batch_start_offset = args->batch_start_offset;
Chris Wilson33a051a2016-07-27 09:07:26 +01001645 if (intel_engine_needs_cmd_parser(engine) && args->batch_len) {
Chris Wilson59bfa122016-08-04 16:32:31 +01001646 struct i915_vma *vma;
Rebecca N. Palmerc7c73722015-05-08 14:26:50 +01001647
Chris Wilson59bfa122016-08-04 16:32:31 +01001648 vma = i915_gem_execbuffer_parse(engine, &shadow_exec_entry,
1649 params->batch->obj,
1650 eb,
1651 args->batch_start_offset,
1652 args->batch_len,
1653 drm_is_current_master(file));
1654 if (IS_ERR(vma)) {
1655 ret = PTR_ERR(vma);
Brad Volkin78a42372014-12-11 12:13:09 -08001656 goto err;
1657 }
Chris Wilson17cabf52015-01-14 11:20:57 +00001658
Chris Wilson59bfa122016-08-04 16:32:31 +01001659 if (vma) {
Rebecca N. Palmerc7c73722015-05-08 14:26:50 +01001660 /*
1661 * Batch parsed and accepted:
1662 *
1663 * Set the DISPATCH_SECURE bit to remove the NON_SECURE
1664 * bit from MI_BATCH_BUFFER_START commands issued in
1665 * the dispatch_execbuffer implementations. We
1666 * specifically don't want that set on batches the
1667 * command parser has accepted.
1668 */
1669 dispatch_flags |= I915_DISPATCH_SECURE;
John Harrison5f19e2b2015-05-29 17:43:27 +01001670 params->args_batch_start_offset = 0;
Chris Wilson59bfa122016-08-04 16:32:31 +01001671 params->batch = vma;
Rebecca N. Palmerc7c73722015-05-08 14:26:50 +01001672 }
Brad Volkin351e3db2014-02-18 10:15:46 -08001673 }
1674
Chris Wilson59bfa122016-08-04 16:32:31 +01001675 params->batch->obj->base.pending_read_domains |= I915_GEM_DOMAIN_COMMAND;
Brad Volkin78a42372014-12-11 12:13:09 -08001676
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001677 /* snb/ivb/vlv conflate the "batch in ppgtt" bit with the "non-secure
1678 * batch" bit. Hence we need to pin secure batches into the global gtt.
Ben Widawsky28cf5412013-11-02 21:07:26 -07001679 * hsw should have this fixed, but bdw mucks it up again. */
John Harrison8e004ef2015-02-13 11:48:10 +00001680 if (dispatch_flags & I915_DISPATCH_SECURE) {
Chris Wilson59bfa122016-08-04 16:32:31 +01001681 struct drm_i915_gem_object *obj = params->batch->obj;
Chris Wilson058d88c2016-08-15 10:49:06 +01001682 struct i915_vma *vma;
Chris Wilson59bfa122016-08-04 16:32:31 +01001683
Daniel Vetterda51a1e2014-08-11 12:08:58 +02001684 /*
1685 * So on first glance it looks freaky that we pin the batch here
1686 * outside of the reservation loop. But:
1687 * - The batch is already pinned into the relevant ppgtt, so we
1688 * already have the backing storage fully allocated.
1689 * - No other BO uses the global gtt (well contexts, but meh),
Yannick Guerrinifd0753c2015-02-28 17:20:41 +01001690 * so we don't really have issues with multiple objects not
Daniel Vetterda51a1e2014-08-11 12:08:58 +02001691 * fitting due to fragmentation.
1692 * So this is actually safe.
1693 */
Chris Wilson058d88c2016-08-15 10:49:06 +01001694 vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0, 0);
1695 if (IS_ERR(vma)) {
1696 ret = PTR_ERR(vma);
Daniel Vetterda51a1e2014-08-11 12:08:58 +02001697 goto err;
Chris Wilson058d88c2016-08-15 10:49:06 +01001698 }
Chris Wilsond7d4eed2012-10-17 12:09:54 +01001699
Chris Wilson058d88c2016-08-15 10:49:06 +01001700 params->batch = vma;
Chris Wilson59bfa122016-08-04 16:32:31 +01001701 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001702
John Harrison0c8dac82015-05-29 17:43:25 +01001703 /* Allocate a request for this batch buffer nice and early. */
Chris Wilson8e637172016-08-02 22:50:26 +01001704 params->request = i915_gem_request_alloc(engine, ctx);
1705 if (IS_ERR(params->request)) {
1706 ret = PTR_ERR(params->request);
John Harrison0c8dac82015-05-29 17:43:25 +01001707 goto err_batch_unpin;
Dave Gordon26827082016-01-19 19:02:53 +00001708 }
John Harrison0c8dac82015-05-29 17:43:25 +01001709
Chris Wilson17f298cf2016-08-10 13:41:46 +01001710 /* Whilst this request exists, batch_obj will be on the
1711 * active_list, and so will hold the active reference. Only when this
1712 * request is retired will the the batch_obj be moved onto the
1713 * inactive_list and lose its active reference. Hence we do not need
1714 * to explicitly hold another reference here.
1715 */
Chris Wilson058d88c2016-08-15 10:49:06 +01001716 params->request->batch = params->batch;
Chris Wilson17f298cf2016-08-10 13:41:46 +01001717
Chris Wilson8e637172016-08-02 22:50:26 +01001718 ret = i915_gem_request_add_to_client(params->request, file);
John Harrisonfcfa423c2015-05-29 17:44:12 +01001719 if (ret)
Chris Wilsonaa9b7812016-04-13 17:35:15 +01001720 goto err_request;
John Harrisonfcfa423c2015-05-29 17:44:12 +01001721
John Harrison5f19e2b2015-05-29 17:43:27 +01001722 /*
1723 * Save assorted stuff away to pass through to *_submission().
1724 * NB: This data should be 'persistent' and not local as it will
1725 * kept around beyond the duration of the IOCTL once the GPU
1726 * scheduler arrives.
1727 */
1728 params->dev = dev;
1729 params->file = file;
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001730 params->engine = engine;
John Harrison5f19e2b2015-05-29 17:43:27 +01001731 params->dispatch_flags = dispatch_flags;
John Harrison5f19e2b2015-05-29 17:43:27 +01001732 params->ctx = ctx;
1733
Chris Wilson5b043f42016-08-02 22:50:38 +01001734 ret = execbuf_submit(params, args, &eb->vmas);
Chris Wilsonaa9b7812016-04-13 17:35:15 +01001735err_request:
Chris Wilson17f298cf2016-08-10 13:41:46 +01001736 __i915_add_request(params->request, ret == 0);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001737
John Harrison0c8dac82015-05-29 17:43:25 +01001738err_batch_unpin:
Daniel Vetterda51a1e2014-08-11 12:08:58 +02001739 /*
1740 * FIXME: We crucially rely upon the active tracking for the (ppgtt)
1741 * batch vma for correctness. For less ugly and less fragility this
1742 * needs to be adjusted to also track the ggtt batch vma properly as
1743 * active.
1744 */
John Harrison8e004ef2015-02-13 11:48:10 +00001745 if (dispatch_flags & I915_DISPATCH_SECURE)
Chris Wilson59bfa122016-08-04 16:32:31 +01001746 i915_vma_unpin(params->batch);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001747err:
Ben Widawsky41bde552013-12-06 14:11:21 -08001748 /* the request owns the ref now */
Chris Wilson9a6feaf2016-07-20 13:31:50 +01001749 i915_gem_context_put(ctx);
Chris Wilson67731b82010-12-08 10:38:14 +00001750 eb_destroy(eb);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001751
1752 mutex_unlock(&dev->struct_mutex);
1753
1754pre_mutex_err:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001755 /* intel_gpu_busy should also get a ref, so it will free when the device
1756 * is really idle. */
1757 intel_runtime_pm_put(dev_priv);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001758 return ret;
1759}
1760
1761/*
1762 * Legacy execbuffer just creates an exec2 list from the original exec object
1763 * list array and passes it to the real function.
1764 */
1765int
1766i915_gem_execbuffer(struct drm_device *dev, void *data,
1767 struct drm_file *file)
1768{
1769 struct drm_i915_gem_execbuffer *args = data;
1770 struct drm_i915_gem_execbuffer2 exec2;
1771 struct drm_i915_gem_exec_object *exec_list = NULL;
1772 struct drm_i915_gem_exec_object2 *exec2_list = NULL;
1773 int ret, i;
1774
Chris Wilson54cf91d2010-11-25 18:00:26 +00001775 if (args->buffer_count < 1) {
Daniel Vetterff240192012-01-31 21:08:14 +01001776 DRM_DEBUG("execbuf with %d buffers\n", args->buffer_count);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001777 return -EINVAL;
1778 }
1779
1780 /* Copy in the exec list from userland */
1781 exec_list = drm_malloc_ab(sizeof(*exec_list), args->buffer_count);
1782 exec2_list = drm_malloc_ab(sizeof(*exec2_list), args->buffer_count);
1783 if (exec_list == NULL || exec2_list == NULL) {
Daniel Vetterff240192012-01-31 21:08:14 +01001784 DRM_DEBUG("Failed to allocate exec list for %d buffers\n",
Chris Wilson54cf91d2010-11-25 18:00:26 +00001785 args->buffer_count);
1786 drm_free_large(exec_list);
1787 drm_free_large(exec2_list);
1788 return -ENOMEM;
1789 }
1790 ret = copy_from_user(exec_list,
Gustavo Padovan3ed605b2016-04-26 12:32:27 -03001791 u64_to_user_ptr(args->buffers_ptr),
Chris Wilson54cf91d2010-11-25 18:00:26 +00001792 sizeof(*exec_list) * args->buffer_count);
1793 if (ret != 0) {
Daniel Vetterff240192012-01-31 21:08:14 +01001794 DRM_DEBUG("copy %d exec entries failed %d\n",
Chris Wilson54cf91d2010-11-25 18:00:26 +00001795 args->buffer_count, ret);
1796 drm_free_large(exec_list);
1797 drm_free_large(exec2_list);
1798 return -EFAULT;
1799 }
1800
1801 for (i = 0; i < args->buffer_count; i++) {
1802 exec2_list[i].handle = exec_list[i].handle;
1803 exec2_list[i].relocation_count = exec_list[i].relocation_count;
1804 exec2_list[i].relocs_ptr = exec_list[i].relocs_ptr;
1805 exec2_list[i].alignment = exec_list[i].alignment;
1806 exec2_list[i].offset = exec_list[i].offset;
1807 if (INTEL_INFO(dev)->gen < 4)
1808 exec2_list[i].flags = EXEC_OBJECT_NEEDS_FENCE;
1809 else
1810 exec2_list[i].flags = 0;
1811 }
1812
1813 exec2.buffers_ptr = args->buffers_ptr;
1814 exec2.buffer_count = args->buffer_count;
1815 exec2.batch_start_offset = args->batch_start_offset;
1816 exec2.batch_len = args->batch_len;
1817 exec2.DR1 = args->DR1;
1818 exec2.DR4 = args->DR4;
1819 exec2.num_cliprects = args->num_cliprects;
1820 exec2.cliprects_ptr = args->cliprects_ptr;
1821 exec2.flags = I915_EXEC_RENDER;
Ben Widawsky6e0a69d2012-06-04 14:42:55 -07001822 i915_execbuffer2_set_context_id(exec2, 0);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001823
Ben Widawsky41bde552013-12-06 14:11:21 -08001824 ret = i915_gem_do_execbuffer(dev, data, file, &exec2, exec2_list);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001825 if (!ret) {
Chris Wilson9aab8bf2014-05-23 10:45:52 +01001826 struct drm_i915_gem_exec_object __user *user_exec_list =
Gustavo Padovan3ed605b2016-04-26 12:32:27 -03001827 u64_to_user_ptr(args->buffers_ptr);
Chris Wilson9aab8bf2014-05-23 10:45:52 +01001828
Chris Wilson54cf91d2010-11-25 18:00:26 +00001829 /* Copy the new buffer offsets back to the user's exec list. */
Chris Wilson9aab8bf2014-05-23 10:45:52 +01001830 for (i = 0; i < args->buffer_count; i++) {
Michał Winiarski934acce2015-12-29 18:24:52 +01001831 exec2_list[i].offset =
1832 gen8_canonical_addr(exec2_list[i].offset);
Chris Wilson9aab8bf2014-05-23 10:45:52 +01001833 ret = __copy_to_user(&user_exec_list[i].offset,
1834 &exec2_list[i].offset,
1835 sizeof(user_exec_list[i].offset));
1836 if (ret) {
1837 ret = -EFAULT;
1838 DRM_DEBUG("failed to copy %d exec entries "
1839 "back to user (%d)\n",
1840 args->buffer_count, ret);
1841 break;
1842 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001843 }
1844 }
1845
1846 drm_free_large(exec_list);
1847 drm_free_large(exec2_list);
1848 return ret;
1849}
1850
1851int
1852i915_gem_execbuffer2(struct drm_device *dev, void *data,
1853 struct drm_file *file)
1854{
1855 struct drm_i915_gem_execbuffer2 *args = data;
1856 struct drm_i915_gem_exec_object2 *exec2_list = NULL;
1857 int ret;
1858
Xi Wanged8cd3b2012-04-23 04:06:41 -04001859 if (args->buffer_count < 1 ||
1860 args->buffer_count > UINT_MAX / sizeof(*exec2_list)) {
Daniel Vetterff240192012-01-31 21:08:14 +01001861 DRM_DEBUG("execbuf2 with %d buffers\n", args->buffer_count);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001862 return -EINVAL;
1863 }
1864
Daniel Vetter9cb34662014-04-24 08:09:11 +02001865 if (args->rsvd2 != 0) {
1866 DRM_DEBUG("dirty rvsd2 field\n");
1867 return -EINVAL;
1868 }
1869
Chris Wilsonf2a85e12016-04-08 12:11:13 +01001870 exec2_list = drm_malloc_gfp(args->buffer_count,
1871 sizeof(*exec2_list),
1872 GFP_TEMPORARY);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001873 if (exec2_list == NULL) {
Daniel Vetterff240192012-01-31 21:08:14 +01001874 DRM_DEBUG("Failed to allocate exec list for %d buffers\n",
Chris Wilson54cf91d2010-11-25 18:00:26 +00001875 args->buffer_count);
1876 return -ENOMEM;
1877 }
1878 ret = copy_from_user(exec2_list,
Gustavo Padovan3ed605b2016-04-26 12:32:27 -03001879 u64_to_user_ptr(args->buffers_ptr),
Chris Wilson54cf91d2010-11-25 18:00:26 +00001880 sizeof(*exec2_list) * args->buffer_count);
1881 if (ret != 0) {
Daniel Vetterff240192012-01-31 21:08:14 +01001882 DRM_DEBUG("copy %d exec entries failed %d\n",
Chris Wilson54cf91d2010-11-25 18:00:26 +00001883 args->buffer_count, ret);
1884 drm_free_large(exec2_list);
1885 return -EFAULT;
1886 }
1887
Ben Widawsky41bde552013-12-06 14:11:21 -08001888 ret = i915_gem_do_execbuffer(dev, data, file, args, exec2_list);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001889 if (!ret) {
1890 /* Copy the new buffer offsets back to the user's exec list. */
Ville Syrjäläd593d992014-06-13 16:42:51 +03001891 struct drm_i915_gem_exec_object2 __user *user_exec_list =
Gustavo Padovan3ed605b2016-04-26 12:32:27 -03001892 u64_to_user_ptr(args->buffers_ptr);
Chris Wilson9aab8bf2014-05-23 10:45:52 +01001893 int i;
1894
1895 for (i = 0; i < args->buffer_count; i++) {
Michał Winiarski934acce2015-12-29 18:24:52 +01001896 exec2_list[i].offset =
1897 gen8_canonical_addr(exec2_list[i].offset);
Chris Wilson9aab8bf2014-05-23 10:45:52 +01001898 ret = __copy_to_user(&user_exec_list[i].offset,
1899 &exec2_list[i].offset,
1900 sizeof(user_exec_list[i].offset));
1901 if (ret) {
1902 ret = -EFAULT;
1903 DRM_DEBUG("failed to copy %d exec entries "
1904 "back to user\n",
1905 args->buffer_count);
1906 break;
1907 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001908 }
1909 }
1910
1911 drm_free_large(exec2_list);
1912 return ret;
1913}