blob: e9503f6d110016b86311003349ff5b8ef70613d5 [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
Eugeni Dodonovf45b5552011-12-09 17:16:37 -080029#include <linux/dma_remapping.h>
Chris Wilsonad778f82016-08-04 16:32:42 +010030#include <linux/reservation.h>
Chris Wilsonfec04452017-01-27 09:40:08 +000031#include <linux/sync_file.h>
David Hildenbrand32d82062015-05-11 17:52:12 +020032#include <linux/uaccess.h>
Chris Wilson54cf91d2010-11-25 18:00:26 +000033
Chris Wilson54cf91d2010-11-25 18:00:26 +000034#include <drm/drmP.h>
35#include <drm/i915_drm.h>
Chris Wilsonad778f82016-08-04 16:32:42 +010036
Chris Wilson54cf91d2010-11-25 18:00:26 +000037#include "i915_drv.h"
Chris Wilson57822dc2017-02-22 11:40:48 +000038#include "i915_gem_clflush.h"
Chris Wilson54cf91d2010-11-25 18:00:26 +000039#include "i915_trace.h"
40#include "intel_drv.h"
Chris Wilson5d723d72016-08-04 16:32:35 +010041#include "intel_frontbuffer.h"
Chris Wilson54cf91d2010-11-25 18:00:26 +000042
Chris Wilson7dd4f672017-06-16 15:05:24 +010043enum {
44 FORCE_CPU_RELOC = 1,
45 FORCE_GTT_RELOC,
46 FORCE_GPU_RELOC,
47#define DBG_FORCE_RELOC 0 /* choose one of the above! */
48};
Chris Wilsond50415c2016-08-18 17:16:52 +010049
Chris Wilsondade2a62017-06-16 15:05:20 +010050#define __EXEC_OBJECT_HAS_REF BIT(31)
51#define __EXEC_OBJECT_HAS_PIN BIT(30)
52#define __EXEC_OBJECT_HAS_FENCE BIT(29)
53#define __EXEC_OBJECT_NEEDS_MAP BIT(28)
54#define __EXEC_OBJECT_NEEDS_BIAS BIT(27)
55#define __EXEC_OBJECT_INTERNAL_FLAGS (~0u << 27) /* all of the above */
Chris Wilson2889caa2017-06-16 15:05:19 +010056#define __EXEC_OBJECT_RESERVED (__EXEC_OBJECT_HAS_PIN | __EXEC_OBJECT_HAS_FENCE)
57
58#define __EXEC_HAS_RELOC BIT(31)
59#define __EXEC_VALIDATED BIT(30)
60#define UPDATE PIN_OFFSET_FIXED
Chris Wilsond23db882014-05-23 08:48:08 +020061
62#define BATCH_OFFSET_BIAS (256*1024)
Chris Wilsona415d352013-11-26 11:23:15 +000063
Chris Wilson650bc632017-06-15 09:14:33 +010064#define __I915_EXEC_ILLEGAL_FLAGS \
65 (__I915_EXEC_UNKNOWN_FLAGS | I915_EXEC_CONSTANTS_MASK)
Chris Wilson5b043f42016-08-02 22:50:38 +010066
Chris Wilson2889caa2017-06-16 15:05:19 +010067/**
68 * DOC: User command execution
69 *
70 * Userspace submits commands to be executed on the GPU as an instruction
71 * stream within a GEM object we call a batchbuffer. This instructions may
72 * refer to other GEM objects containing auxiliary state such as kernels,
73 * samplers, render targets and even secondary batchbuffers. Userspace does
74 * not know where in the GPU memory these objects reside and so before the
75 * batchbuffer is passed to the GPU for execution, those addresses in the
76 * batchbuffer and auxiliary objects are updated. This is known as relocation,
77 * or patching. To try and avoid having to relocate each object on the next
78 * execution, userspace is told the location of those objects in this pass,
79 * but this remains just a hint as the kernel may choose a new location for
80 * any object in the future.
81 *
82 * Processing an execbuf ioctl is conceptually split up into a few phases.
83 *
84 * 1. Validation - Ensure all the pointers, handles and flags are valid.
85 * 2. Reservation - Assign GPU address space for every object
86 * 3. Relocation - Update any addresses to point to the final locations
87 * 4. Serialisation - Order the request with respect to its dependencies
88 * 5. Construction - Construct a request to execute the batchbuffer
89 * 6. Submission (at some point in the future execution)
90 *
91 * Reserving resources for the execbuf is the most complicated phase. We
92 * neither want to have to migrate the object in the address space, nor do
93 * we want to have to update any relocations pointing to this object. Ideally,
94 * we want to leave the object where it is and for all the existing relocations
95 * to match. If the object is given a new address, or if userspace thinks the
96 * object is elsewhere, we have to parse all the relocation entries and update
97 * the addresses. Userspace can set the I915_EXEC_NORELOC flag to hint that
98 * all the target addresses in all of its objects match the value in the
99 * relocation entries and that they all match the presumed offsets given by the
100 * list of execbuffer objects. Using this knowledge, we know that if we haven't
101 * moved any buffers, all the relocation entries are valid and we can skip
102 * the update. (If userspace is wrong, the likely outcome is an impromptu GPU
103 * hang.) The requirement for using I915_EXEC_NO_RELOC are:
104 *
105 * The addresses written in the objects must match the corresponding
106 * reloc.presumed_offset which in turn must match the corresponding
107 * execobject.offset.
108 *
109 * Any render targets written to in the batch must be flagged with
110 * EXEC_OBJECT_WRITE.
111 *
112 * To avoid stalling, execobject.offset should match the current
113 * address of that object within the active context.
114 *
115 * The reservation is done is multiple phases. First we try and keep any
116 * object already bound in its current location - so as long as meets the
117 * constraints imposed by the new execbuffer. Any object left unbound after the
118 * first pass is then fitted into any available idle space. If an object does
119 * not fit, all objects are removed from the reservation and the process rerun
120 * after sorting the objects into a priority order (more difficult to fit
121 * objects are tried first). Failing that, the entire VM is cleared and we try
122 * to fit the execbuf once last time before concluding that it simply will not
123 * fit.
124 *
125 * A small complication to all of this is that we allow userspace not only to
126 * specify an alignment and a size for the object in the address space, but
127 * we also allow userspace to specify the exact offset. This objects are
128 * simpler to place (the location is known a priori) all we have to do is make
129 * sure the space is available.
130 *
131 * Once all the objects are in place, patching up the buried pointers to point
132 * to the final locations is a fairly simple job of walking over the relocation
133 * entry arrays, looking up the right address and rewriting the value into
134 * the object. Simple! ... The relocation entries are stored in user memory
135 * and so to access them we have to copy them into a local buffer. That copy
136 * has to avoid taking any pagefaults as they may lead back to a GEM object
137 * requiring the struct_mutex (i.e. recursive deadlock). So once again we split
138 * the relocation into multiple passes. First we try to do everything within an
139 * atomic context (avoid the pagefaults) which requires that we never wait. If
140 * we detect that we may wait, or if we need to fault, then we have to fallback
141 * to a slower path. The slowpath has to drop the mutex. (Can you hear alarm
142 * bells yet?) Dropping the mutex means that we lose all the state we have
143 * built up so far for the execbuf and we must reset any global data. However,
144 * we do leave the objects pinned in their final locations - which is a
145 * potential issue for concurrent execbufs. Once we have left the mutex, we can
146 * allocate and copy all the relocation entries into a large array at our
147 * leisure, reacquire the mutex, reclaim all the objects and other state and
148 * then proceed to update any incorrect addresses with the objects.
149 *
150 * As we process the relocation entries, we maintain a record of whether the
151 * object is being written to. Using NORELOC, we expect userspace to provide
152 * this information instead. We also check whether we can skip the relocation
153 * by comparing the expected value inside the relocation entry with the target's
154 * final address. If they differ, we have to map the current object and rewrite
155 * the 4 or 8 byte pointer within.
156 *
157 * Serialising an execbuf is quite simple according to the rules of the GEM
158 * ABI. Execution within each context is ordered by the order of submission.
159 * Writes to any GEM object are in order of submission and are exclusive. Reads
160 * from a GEM object are unordered with respect to other reads, but ordered by
161 * writes. A write submitted after a read cannot occur before the read, and
162 * similarly any read submitted after a write cannot occur before the write.
163 * Writes are ordered between engines such that only one write occurs at any
164 * time (completing any reads beforehand) - using semaphores where available
165 * and CPU serialisation otherwise. Other GEM access obey the same rules, any
166 * write (either via mmaps using set-domain, or via pwrite) must flush all GPU
167 * reads before starting, and any read (either using set-domain or pread) must
168 * flush all GPU writes before starting. (Note we only employ a barrier before,
169 * we currently rely on userspace not concurrently starting a new execution
170 * whilst reading or writing to an object. This may be an advantage or not
171 * depending on how much you trust userspace not to shoot themselves in the
172 * foot.) Serialisation may just result in the request being inserted into
173 * a DAG awaiting its turn, but most simple is to wait on the CPU until
174 * all dependencies are resolved.
175 *
176 * After all of that, is just a matter of closing the request and handing it to
177 * the hardware (well, leaving it in a queue to be executed). However, we also
178 * offer the ability for batchbuffers to be run with elevated privileges so
179 * that they access otherwise hidden registers. (Used to adjust L3 cache etc.)
180 * Before any batch is given extra privileges we first must check that it
181 * contains no nefarious instructions, we check that each instruction is from
182 * our whitelist and all registers are also from an allowed list. We first
183 * copy the user's batchbuffer to a shadow (so that the user doesn't have
184 * access to it, either by the CPU or GPU as we scan it) and then parse each
185 * instruction. If everything is ok, we set a flag telling the hardware to run
186 * the batchbuffer in trusted mode, otherwise the ioctl is rejected.
187 */
188
Chris Wilson650bc632017-06-15 09:14:33 +0100189struct i915_execbuffer {
Chris Wilson2889caa2017-06-16 15:05:19 +0100190 struct drm_i915_private *i915; /** i915 backpointer */
191 struct drm_file *file; /** per-file lookup tables and limits */
192 struct drm_i915_gem_execbuffer2 *args; /** ioctl parameters */
193 struct drm_i915_gem_exec_object2 *exec; /** ioctl execobj[] */
194
195 struct intel_engine_cs *engine; /** engine to queue the request to */
196 struct i915_gem_context *ctx; /** context for building the request */
197 struct i915_address_space *vm; /** GTT and vma for the request */
198
199 struct drm_i915_gem_request *request; /** our request to build */
200 struct i915_vma *batch; /** identity of the batch obj/vma */
201
202 /** actual size of execobj[] as we may extend it for the cmdparser */
203 unsigned int buffer_count;
204
205 /** list of vma not yet bound during reservation phase */
206 struct list_head unbound;
207
208 /** list of vma that have execobj.relocation_count */
209 struct list_head relocs;
210
211 /**
212 * Track the most recently used object for relocations, as we
213 * frequently have to perform multiple relocations within the same
214 * obj/page
215 */
Chris Wilson650bc632017-06-15 09:14:33 +0100216 struct reloc_cache {
Chris Wilson2889caa2017-06-16 15:05:19 +0100217 struct drm_mm_node node; /** temporary GTT binding */
218 unsigned long vaddr; /** Current kmap address */
219 unsigned long page; /** Currently mapped page index */
Chris Wilson7dd4f672017-06-16 15:05:24 +0100220 unsigned int gen; /** Cached value of INTEL_GEN */
Chris Wilson650bc632017-06-15 09:14:33 +0100221 bool use_64bit_reloc : 1;
Chris Wilson2889caa2017-06-16 15:05:19 +0100222 bool has_llc : 1;
223 bool has_fence : 1;
224 bool needs_unfenced : 1;
Chris Wilson7dd4f672017-06-16 15:05:24 +0100225
226 struct drm_i915_gem_request *rq;
227 u32 *rq_cmd;
228 unsigned int rq_size;
Chris Wilson650bc632017-06-15 09:14:33 +0100229 } reloc_cache;
Chris Wilson2889caa2017-06-16 15:05:19 +0100230
231 u64 invalid_flags; /** Set of execobj.flags that are invalid */
232 u32 context_flags; /** Set of execobj.flags to insert from the ctx */
233
234 u32 batch_start_offset; /** Location within object of batch */
235 u32 batch_len; /** Length of batch within object */
236 u32 batch_flags; /** Flags composed for emit_bb_start() */
237
238 /**
239 * Indicate either the size of the hastable used to resolve
240 * relocation handles, or if negative that we are using a direct
241 * index into the execobj[].
242 */
243 int lut_size;
244 struct hlist_head *buckets; /** ht for relocation handles */
Chris Wilson67731b82010-12-08 10:38:14 +0000245};
246
Chris Wilson4ff4b442017-06-16 15:05:16 +0100247/*
248 * As an alternative to creating a hashtable of handle-to-vma for a batch,
249 * we used the last available reserved field in the execobject[] and stash
250 * a link from the execobj to its vma.
251 */
252#define __exec_to_vma(ee) (ee)->rsvd2
253#define exec_to_vma(ee) u64_to_ptr(struct i915_vma, __exec_to_vma(ee))
254
Chris Wilson2889caa2017-06-16 15:05:19 +0100255/*
256 * Used to convert any address to canonical form.
257 * Starting from gen8, some commands (e.g. STATE_BASE_ADDRESS,
258 * MI_LOAD_REGISTER_MEM and others, see Broadwell PRM Vol2a) require the
259 * addresses to be in a canonical form:
260 * "GraphicsAddress[63:48] are ignored by the HW and assumed to be in correct
261 * canonical form [63:48] == [47]."
262 */
263#define GEN8_HIGH_ADDRESS_BIT 47
264static inline u64 gen8_canonical_addr(u64 address)
265{
266 return sign_extend64(address, GEN8_HIGH_ADDRESS_BIT);
267}
268
269static inline u64 gen8_noncanonical_addr(u64 address)
270{
271 return address & GENMASK_ULL(GEN8_HIGH_ADDRESS_BIT, 0);
272}
273
Chris Wilson650bc632017-06-15 09:14:33 +0100274static int eb_create(struct i915_execbuffer *eb)
Chris Wilson67731b82010-12-08 10:38:14 +0000275{
Chris Wilson2889caa2017-06-16 15:05:19 +0100276 if (!(eb->args->flags & I915_EXEC_HANDLE_LUT)) {
277 unsigned int size = 1 + ilog2(eb->buffer_count);
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000278
Chris Wilson2889caa2017-06-16 15:05:19 +0100279 /*
280 * Without a 1:1 association between relocation handles and
281 * the execobject[] index, we instead create a hashtable.
282 * We size it dynamically based on available memory, starting
283 * first with 1:1 assocative hash and scaling back until
284 * the allocation succeeds.
285 *
286 * Later on we use a positive lut_size to indicate we are
287 * using this hashtable, and a negative value to indicate a
288 * direct lookup.
289 */
Chris Wilson4ff4b442017-06-16 15:05:16 +0100290 do {
Chris Wilson4ec654b2017-06-29 16:04:25 +0100291 unsigned int flags;
292
293 /* While we can still reduce the allocation size, don't
294 * raise a warning and allow the allocation to fail.
295 * On the last pass though, we want to try as hard
296 * as possible to perform the allocation and warn
297 * if it fails.
298 */
299 flags = GFP_TEMPORARY;
300 if (size > 1)
301 flags |= __GFP_NORETRY | __GFP_NOWARN;
302
Chris Wilson4ff4b442017-06-16 15:05:16 +0100303 eb->buckets = kzalloc(sizeof(struct hlist_head) << size,
Chris Wilson4ec654b2017-06-29 16:04:25 +0100304 flags);
Chris Wilson4ff4b442017-06-16 15:05:16 +0100305 if (eb->buckets)
306 break;
307 } while (--size);
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000308
Chris Wilson4ec654b2017-06-29 16:04:25 +0100309 if (unlikely(!size))
310 return -ENOMEM;
Chris Wilson4ff4b442017-06-16 15:05:16 +0100311
Chris Wilson2889caa2017-06-16 15:05:19 +0100312 eb->lut_size = size;
Chris Wilson650bc632017-06-15 09:14:33 +0100313 } else {
Chris Wilson2889caa2017-06-16 15:05:19 +0100314 eb->lut_size = -eb->buffer_count;
Chris Wilson650bc632017-06-15 09:14:33 +0100315 }
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000316
Chris Wilson650bc632017-06-15 09:14:33 +0100317 return 0;
Chris Wilson67731b82010-12-08 10:38:14 +0000318}
319
Chris Wilson2889caa2017-06-16 15:05:19 +0100320static bool
321eb_vma_misplaced(const struct drm_i915_gem_exec_object2 *entry,
322 const struct i915_vma *vma)
323{
324 if (!(entry->flags & __EXEC_OBJECT_HAS_PIN))
325 return true;
326
327 if (vma->node.size < entry->pad_to_size)
328 return true;
329
330 if (entry->alignment && !IS_ALIGNED(vma->node.start, entry->alignment))
331 return true;
332
333 if (entry->flags & EXEC_OBJECT_PINNED &&
334 vma->node.start != entry->offset)
335 return true;
336
337 if (entry->flags & __EXEC_OBJECT_NEEDS_BIAS &&
338 vma->node.start < BATCH_OFFSET_BIAS)
339 return true;
340
341 if (!(entry->flags & EXEC_OBJECT_SUPPORTS_48B_ADDRESS) &&
342 (vma->node.start + vma->node.size - 1) >> 32)
343 return true;
344
345 return false;
346}
347
348static inline void
349eb_pin_vma(struct i915_execbuffer *eb,
350 struct drm_i915_gem_exec_object2 *entry,
351 struct i915_vma *vma)
352{
353 u64 flags;
354
Chris Wilson616d9ce2017-06-16 15:05:21 +0100355 if (vma->node.size)
356 flags = vma->node.start;
357 else
358 flags = entry->offset & PIN_OFFSET_MASK;
359
360 flags |= PIN_USER | PIN_NOEVICT | PIN_OFFSET_FIXED;
Chris Wilson2889caa2017-06-16 15:05:19 +0100361 if (unlikely(entry->flags & EXEC_OBJECT_NEEDS_GTT))
362 flags |= PIN_GLOBAL;
Chris Wilson616d9ce2017-06-16 15:05:21 +0100363
Chris Wilson2889caa2017-06-16 15:05:19 +0100364 if (unlikely(i915_vma_pin(vma, 0, 0, flags)))
365 return;
366
367 if (unlikely(entry->flags & EXEC_OBJECT_NEEDS_FENCE)) {
368 if (unlikely(i915_vma_get_fence(vma))) {
369 i915_vma_unpin(vma);
370 return;
371 }
372
373 if (i915_vma_pin_fence(vma))
374 entry->flags |= __EXEC_OBJECT_HAS_FENCE;
375 }
376
377 entry->flags |= __EXEC_OBJECT_HAS_PIN;
378}
379
Chris Wilsond55495b2017-06-15 09:14:34 +0100380static inline void
381__eb_unreserve_vma(struct i915_vma *vma,
382 const struct drm_i915_gem_exec_object2 *entry)
383{
Chris Wilson2889caa2017-06-16 15:05:19 +0100384 GEM_BUG_ON(!(entry->flags & __EXEC_OBJECT_HAS_PIN));
385
Chris Wilsond55495b2017-06-15 09:14:34 +0100386 if (unlikely(entry->flags & __EXEC_OBJECT_HAS_FENCE))
387 i915_vma_unpin_fence(vma);
388
Chris Wilson2889caa2017-06-16 15:05:19 +0100389 __i915_vma_unpin(vma);
Chris Wilsond55495b2017-06-15 09:14:34 +0100390}
391
Chris Wilson2889caa2017-06-16 15:05:19 +0100392static inline void
393eb_unreserve_vma(struct i915_vma *vma,
394 struct drm_i915_gem_exec_object2 *entry)
Chris Wilsond55495b2017-06-15 09:14:34 +0100395{
Chris Wilson2889caa2017-06-16 15:05:19 +0100396 if (!(entry->flags & __EXEC_OBJECT_HAS_PIN))
397 return;
Chris Wilsond55495b2017-06-15 09:14:34 +0100398
399 __eb_unreserve_vma(vma, entry);
Chris Wilson2889caa2017-06-16 15:05:19 +0100400 entry->flags &= ~__EXEC_OBJECT_RESERVED;
Chris Wilson4ff4b442017-06-16 15:05:16 +0100401}
402
403static int
Chris Wilson2889caa2017-06-16 15:05:19 +0100404eb_validate_vma(struct i915_execbuffer *eb,
405 struct drm_i915_gem_exec_object2 *entry,
406 struct i915_vma *vma)
407{
408 if (unlikely(entry->flags & eb->invalid_flags))
409 return -EINVAL;
410
411 if (unlikely(entry->alignment && !is_power_of_2(entry->alignment)))
412 return -EINVAL;
413
414 /*
415 * Offset can be used as input (EXEC_OBJECT_PINNED), reject
416 * any non-page-aligned or non-canonical addresses.
417 */
418 if (unlikely(entry->flags & EXEC_OBJECT_PINNED &&
419 entry->offset != gen8_canonical_addr(entry->offset & PAGE_MASK)))
420 return -EINVAL;
421
422 /* pad_to_size was once a reserved field, so sanitize it */
423 if (entry->flags & EXEC_OBJECT_PAD_TO_SIZE) {
424 if (unlikely(offset_in_page(entry->pad_to_size)))
425 return -EINVAL;
426 } else {
427 entry->pad_to_size = 0;
428 }
429
430 if (unlikely(vma->exec_entry)) {
431 DRM_DEBUG("Object [handle %d, index %d] appears more than once in object list\n",
432 entry->handle, (int)(entry - eb->exec));
433 return -EINVAL;
434 }
435
436 /*
437 * From drm_mm perspective address space is continuous,
438 * so from this point we're always using non-canonical
439 * form internally.
440 */
441 entry->offset = gen8_noncanonical_addr(entry->offset);
442
443 return 0;
444}
445
446static int
447eb_add_vma(struct i915_execbuffer *eb,
448 struct drm_i915_gem_exec_object2 *entry,
449 struct i915_vma *vma)
450{
451 int err;
452
453 GEM_BUG_ON(i915_vma_is_closed(vma));
454
455 if (!(eb->args->flags & __EXEC_VALIDATED)) {
456 err = eb_validate_vma(eb, entry, vma);
457 if (unlikely(err))
458 return err;
459 }
460
Chris Wilson4ec654b2017-06-29 16:04:25 +0100461 if (eb->lut_size > 0) {
Chris Wilson2889caa2017-06-16 15:05:19 +0100462 vma->exec_handle = entry->handle;
463 hlist_add_head(&vma->exec_node,
464 &eb->buckets[hash_32(entry->handle,
465 eb->lut_size)]);
466 }
467
468 if (entry->relocation_count)
469 list_add_tail(&vma->reloc_link, &eb->relocs);
470
471 if (!eb->reloc_cache.has_fence) {
472 entry->flags &= ~EXEC_OBJECT_NEEDS_FENCE;
473 } else {
474 if ((entry->flags & EXEC_OBJECT_NEEDS_FENCE ||
475 eb->reloc_cache.needs_unfenced) &&
476 i915_gem_object_is_tiled(vma->obj))
477 entry->flags |= EXEC_OBJECT_NEEDS_GTT | __EXEC_OBJECT_NEEDS_MAP;
478 }
479
480 if (!(entry->flags & EXEC_OBJECT_PINNED))
481 entry->flags |= eb->context_flags;
482
483 /*
484 * Stash a pointer from the vma to execobj, so we can query its flags,
485 * size, alignment etc as provided by the user. Also we stash a pointer
486 * to the vma inside the execobj so that we can use a direct lookup
487 * to find the right target VMA when doing relocations.
488 */
489 vma->exec_entry = entry;
Chris Wilsondade2a62017-06-16 15:05:20 +0100490 __exec_to_vma(entry) = (uintptr_t)vma;
Chris Wilson2889caa2017-06-16 15:05:19 +0100491
492 err = 0;
Chris Wilson616d9ce2017-06-16 15:05:21 +0100493 eb_pin_vma(eb, entry, vma);
Chris Wilson2889caa2017-06-16 15:05:19 +0100494 if (eb_vma_misplaced(entry, vma)) {
495 eb_unreserve_vma(vma, entry);
496
497 list_add_tail(&vma->exec_link, &eb->unbound);
498 if (drm_mm_node_allocated(&vma->node))
499 err = i915_vma_unbind(vma);
500 } else {
501 if (entry->offset != vma->node.start) {
502 entry->offset = vma->node.start | UPDATE;
503 eb->args->flags |= __EXEC_HAS_RELOC;
504 }
505 }
506 return err;
507}
508
509static inline int use_cpu_reloc(const struct reloc_cache *cache,
510 const struct drm_i915_gem_object *obj)
511{
512 if (!i915_gem_object_has_struct_page(obj))
513 return false;
514
Chris Wilson7dd4f672017-06-16 15:05:24 +0100515 if (DBG_FORCE_RELOC == FORCE_CPU_RELOC)
516 return true;
517
518 if (DBG_FORCE_RELOC == FORCE_GTT_RELOC)
519 return false;
Chris Wilson2889caa2017-06-16 15:05:19 +0100520
521 return (cache->has_llc ||
522 obj->cache_dirty ||
523 obj->cache_level != I915_CACHE_NONE);
524}
525
526static int eb_reserve_vma(const struct i915_execbuffer *eb,
527 struct i915_vma *vma)
528{
529 struct drm_i915_gem_exec_object2 *entry = vma->exec_entry;
530 u64 flags;
531 int err;
532
533 flags = PIN_USER | PIN_NONBLOCK;
534 if (entry->flags & EXEC_OBJECT_NEEDS_GTT)
535 flags |= PIN_GLOBAL;
536
537 /*
538 * Wa32bitGeneralStateOffset & Wa32bitInstructionBaseOffset,
539 * limit address to the first 4GBs for unflagged objects.
540 */
541 if (!(entry->flags & EXEC_OBJECT_SUPPORTS_48B_ADDRESS))
542 flags |= PIN_ZONE_4G;
543
544 if (entry->flags & __EXEC_OBJECT_NEEDS_MAP)
545 flags |= PIN_MAPPABLE;
546
547 if (entry->flags & EXEC_OBJECT_PINNED) {
548 flags |= entry->offset | PIN_OFFSET_FIXED;
549 flags &= ~PIN_NONBLOCK; /* force overlapping PINNED checks */
550 } else if (entry->flags & __EXEC_OBJECT_NEEDS_BIAS) {
551 flags |= BATCH_OFFSET_BIAS | PIN_OFFSET_BIAS;
552 }
553
554 err = i915_vma_pin(vma, entry->pad_to_size, entry->alignment, flags);
555 if (err)
556 return err;
557
558 if (entry->offset != vma->node.start) {
559 entry->offset = vma->node.start | UPDATE;
560 eb->args->flags |= __EXEC_HAS_RELOC;
561 }
562
Chris Wilson2889caa2017-06-16 15:05:19 +0100563 if (unlikely(entry->flags & EXEC_OBJECT_NEEDS_FENCE)) {
564 err = i915_vma_get_fence(vma);
565 if (unlikely(err)) {
566 i915_vma_unpin(vma);
567 return err;
568 }
569
570 if (i915_vma_pin_fence(vma))
571 entry->flags |= __EXEC_OBJECT_HAS_FENCE;
572 }
573
Chris Wilsonbed8d1c2017-07-21 15:50:35 +0100574 entry->flags |= __EXEC_OBJECT_HAS_PIN;
575 GEM_BUG_ON(eb_vma_misplaced(entry, vma));
576
Chris Wilson2889caa2017-06-16 15:05:19 +0100577 return 0;
578}
579
580static int eb_reserve(struct i915_execbuffer *eb)
581{
582 const unsigned int count = eb->buffer_count;
583 struct list_head last;
584 struct i915_vma *vma;
585 unsigned int i, pass;
586 int err;
587
588 /*
589 * Attempt to pin all of the buffers into the GTT.
590 * This is done in 3 phases:
591 *
592 * 1a. Unbind all objects that do not match the GTT constraints for
593 * the execbuffer (fenceable, mappable, alignment etc).
594 * 1b. Increment pin count for already bound objects.
595 * 2. Bind new objects.
596 * 3. Decrement pin count.
597 *
598 * This avoid unnecessary unbinding of later objects in order to make
599 * room for the earlier objects *unless* we need to defragment.
600 */
601
602 pass = 0;
603 err = 0;
604 do {
605 list_for_each_entry(vma, &eb->unbound, exec_link) {
606 err = eb_reserve_vma(eb, vma);
607 if (err)
608 break;
609 }
610 if (err != -ENOSPC)
611 return err;
612
613 /* Resort *all* the objects into priority order */
614 INIT_LIST_HEAD(&eb->unbound);
615 INIT_LIST_HEAD(&last);
616 for (i = 0; i < count; i++) {
617 struct drm_i915_gem_exec_object2 *entry = &eb->exec[i];
618
619 if (entry->flags & EXEC_OBJECT_PINNED &&
620 entry->flags & __EXEC_OBJECT_HAS_PIN)
621 continue;
622
623 vma = exec_to_vma(entry);
624 eb_unreserve_vma(vma, entry);
625
626 if (entry->flags & EXEC_OBJECT_PINNED)
627 list_add(&vma->exec_link, &eb->unbound);
628 else if (entry->flags & __EXEC_OBJECT_NEEDS_MAP)
629 list_add_tail(&vma->exec_link, &eb->unbound);
630 else
631 list_add_tail(&vma->exec_link, &last);
632 }
633 list_splice_tail(&last, &eb->unbound);
634
635 switch (pass++) {
636 case 0:
637 break;
638
639 case 1:
640 /* Too fragmented, unbind everything and retry */
641 err = i915_gem_evict_vm(eb->vm);
642 if (err)
643 return err;
644 break;
645
646 default:
647 return -ENOSPC;
648 }
649 } while (1);
650}
651
652static inline struct hlist_head *
653ht_head(const struct i915_gem_context_vma_lut *lut, u32 handle)
654{
655 return &lut->ht[hash_32(handle, lut->ht_bits)];
656}
657
658static inline bool
659ht_needs_resize(const struct i915_gem_context_vma_lut *lut)
660{
661 return (4*lut->ht_count > 3*lut->ht_size ||
662 4*lut->ht_count + 1 < lut->ht_size);
663}
664
665static unsigned int eb_batch_index(const struct i915_execbuffer *eb)
666{
Chris Wilson1a71cf22017-06-16 15:05:23 +0100667 if (eb->args->flags & I915_EXEC_BATCH_FIRST)
668 return 0;
669 else
670 return eb->buffer_count - 1;
Chris Wilson2889caa2017-06-16 15:05:19 +0100671}
672
673static int eb_select_context(struct i915_execbuffer *eb)
674{
675 struct i915_gem_context *ctx;
676
677 ctx = i915_gem_context_lookup(eb->file->driver_priv, eb->args->rsvd1);
678 if (unlikely(IS_ERR(ctx)))
679 return PTR_ERR(ctx);
680
681 if (unlikely(i915_gem_context_is_banned(ctx))) {
682 DRM_DEBUG("Context %u tried to submit while banned\n",
683 ctx->user_handle);
684 return -EIO;
685 }
686
687 eb->ctx = i915_gem_context_get(ctx);
688 eb->vm = ctx->ppgtt ? &ctx->ppgtt->base : &eb->i915->ggtt.base;
689
690 eb->context_flags = 0;
691 if (ctx->flags & CONTEXT_NO_ZEROMAP)
692 eb->context_flags |= __EXEC_OBJECT_NEEDS_BIAS;
693
694 return 0;
695}
696
697static int eb_lookup_vmas(struct i915_execbuffer *eb)
Chris Wilson4ff4b442017-06-16 15:05:16 +0100698{
699#define INTERMEDIATE BIT(0)
Chris Wilson2889caa2017-06-16 15:05:19 +0100700 const unsigned int count = eb->buffer_count;
701 struct i915_gem_context_vma_lut *lut = &eb->ctx->vma_lut;
Chris Wilson4ff4b442017-06-16 15:05:16 +0100702 struct i915_vma *vma;
Chris Wilson2889caa2017-06-16 15:05:19 +0100703 struct idr *idr;
704 unsigned int i;
Chris Wilson4ff4b442017-06-16 15:05:16 +0100705 int slow_pass = -1;
Chris Wilson2889caa2017-06-16 15:05:19 +0100706 int err;
Chris Wilson4ff4b442017-06-16 15:05:16 +0100707
Chris Wilson2889caa2017-06-16 15:05:19 +0100708 INIT_LIST_HEAD(&eb->relocs);
709 INIT_LIST_HEAD(&eb->unbound);
Chris Wilson4ff4b442017-06-16 15:05:16 +0100710
Chris Wilson2889caa2017-06-16 15:05:19 +0100711 if (unlikely(lut->ht_size & I915_CTX_RESIZE_IN_PROGRESS))
712 flush_work(&lut->resize);
713 GEM_BUG_ON(lut->ht_size & I915_CTX_RESIZE_IN_PROGRESS);
Chris Wilson4ff4b442017-06-16 15:05:16 +0100714
715 for (i = 0; i < count; i++) {
716 __exec_to_vma(&eb->exec[i]) = 0;
717
718 hlist_for_each_entry(vma,
Chris Wilson2889caa2017-06-16 15:05:19 +0100719 ht_head(lut, eb->exec[i].handle),
Chris Wilson4ff4b442017-06-16 15:05:16 +0100720 ctx_node) {
721 if (vma->ctx_handle != eb->exec[i].handle)
722 continue;
723
Chris Wilson2889caa2017-06-16 15:05:19 +0100724 err = eb_add_vma(eb, &eb->exec[i], vma);
725 if (unlikely(err))
726 return err;
Chris Wilson4ff4b442017-06-16 15:05:16 +0100727
728 goto next_vma;
729 }
730
731 if (slow_pass < 0)
732 slow_pass = i;
733next_vma: ;
734 }
735
736 if (slow_pass < 0)
Chris Wilson2889caa2017-06-16 15:05:19 +0100737 goto out;
Chris Wilson4ff4b442017-06-16 15:05:16 +0100738
739 spin_lock(&eb->file->table_lock);
Chris Wilson2889caa2017-06-16 15:05:19 +0100740 /*
741 * Grab a reference to the object and release the lock so we can lookup
742 * or create the VMA without using GFP_ATOMIC
743 */
744 idr = &eb->file->object_idr;
Chris Wilson4ff4b442017-06-16 15:05:16 +0100745 for (i = slow_pass; i < count; i++) {
746 struct drm_i915_gem_object *obj;
747
748 if (__exec_to_vma(&eb->exec[i]))
749 continue;
750
Chris Wilson2889caa2017-06-16 15:05:19 +0100751 obj = to_intel_bo(idr_find(idr, eb->exec[i].handle));
Chris Wilson4ff4b442017-06-16 15:05:16 +0100752 if (unlikely(!obj)) {
753 spin_unlock(&eb->file->table_lock);
754 DRM_DEBUG("Invalid object handle %d at index %d\n",
755 eb->exec[i].handle, i);
Chris Wilson2889caa2017-06-16 15:05:19 +0100756 err = -ENOENT;
757 goto err;
Chris Wilson4ff4b442017-06-16 15:05:16 +0100758 }
759
760 __exec_to_vma(&eb->exec[i]) = INTERMEDIATE | (uintptr_t)obj;
761 }
762 spin_unlock(&eb->file->table_lock);
763
764 for (i = slow_pass; i < count; i++) {
765 struct drm_i915_gem_object *obj;
766
Chris Wilson2889caa2017-06-16 15:05:19 +0100767 if (!(__exec_to_vma(&eb->exec[i]) & INTERMEDIATE))
Chris Wilson4ff4b442017-06-16 15:05:16 +0100768 continue;
769
770 /*
771 * NOTE: We can leak any vmas created here when something fails
772 * later on. But that's no issue since vma_unbind can deal with
773 * vmas which are not actually bound. And since only
774 * lookup_or_create exists as an interface to get at the vma
775 * from the (obj, vm) we don't run the risk of creating
776 * duplicated vmas for the same vm.
777 */
Chris Wilson2889caa2017-06-16 15:05:19 +0100778 obj = u64_to_ptr(typeof(*obj),
Chris Wilson4ff4b442017-06-16 15:05:16 +0100779 __exec_to_vma(&eb->exec[i]) & ~INTERMEDIATE);
780 vma = i915_vma_instance(obj, eb->vm, NULL);
781 if (unlikely(IS_ERR(vma))) {
782 DRM_DEBUG("Failed to lookup VMA\n");
Chris Wilson2889caa2017-06-16 15:05:19 +0100783 err = PTR_ERR(vma);
784 goto err;
Chris Wilson4ff4b442017-06-16 15:05:16 +0100785 }
786
787 /* First come, first served */
788 if (!vma->ctx) {
789 vma->ctx = eb->ctx;
790 vma->ctx_handle = eb->exec[i].handle;
791 hlist_add_head(&vma->ctx_node,
Chris Wilson2889caa2017-06-16 15:05:19 +0100792 ht_head(lut, eb->exec[i].handle));
793 lut->ht_count++;
794 lut->ht_size |= I915_CTX_RESIZE_IN_PROGRESS;
Chris Wilson4ff4b442017-06-16 15:05:16 +0100795 if (i915_vma_is_ggtt(vma)) {
796 GEM_BUG_ON(obj->vma_hashed);
797 obj->vma_hashed = vma;
798 }
Chris Wilsondade2a62017-06-16 15:05:20 +0100799
800 i915_vma_get(vma);
Chris Wilson4ff4b442017-06-16 15:05:16 +0100801 }
802
Chris Wilson2889caa2017-06-16 15:05:19 +0100803 err = eb_add_vma(eb, &eb->exec[i], vma);
804 if (unlikely(err))
805 goto err;
Chris Wilsondade2a62017-06-16 15:05:20 +0100806
807 /* Only after we validated the user didn't use our bits */
808 if (vma->ctx != eb->ctx) {
809 i915_vma_get(vma);
810 eb->exec[i].flags |= __EXEC_OBJECT_HAS_REF;
811 }
Chris Wilson4ff4b442017-06-16 15:05:16 +0100812 }
813
Chris Wilson2889caa2017-06-16 15:05:19 +0100814 if (lut->ht_size & I915_CTX_RESIZE_IN_PROGRESS) {
815 if (ht_needs_resize(lut))
816 queue_work(system_highpri_wq, &lut->resize);
817 else
818 lut->ht_size &= ~I915_CTX_RESIZE_IN_PROGRESS;
Chris Wilson4ff4b442017-06-16 15:05:16 +0100819 }
820
Chris Wilson2889caa2017-06-16 15:05:19 +0100821out:
822 /* take note of the batch buffer before we might reorder the lists */
823 i = eb_batch_index(eb);
824 eb->batch = exec_to_vma(&eb->exec[i]);
Chris Wilson59bfa122016-08-04 16:32:31 +0100825
826 /*
827 * SNA is doing fancy tricks with compressing batch buffers, which leads
828 * to negative relocation deltas. Usually that works out ok since the
829 * relocate address is still positive, except when the batch is placed
830 * very low in the GTT. Ensure this doesn't happen.
831 *
832 * Note that actual hangs have only been observed on gen7, but for
833 * paranoia do it everywhere.
834 */
Chris Wilson2889caa2017-06-16 15:05:19 +0100835 if (!(eb->exec[i].flags & EXEC_OBJECT_PINNED))
836 eb->exec[i].flags |= __EXEC_OBJECT_NEEDS_BIAS;
837 if (eb->reloc_cache.has_fence)
838 eb->exec[i].flags |= EXEC_OBJECT_NEEDS_FENCE;
Chris Wilson59bfa122016-08-04 16:32:31 +0100839
Chris Wilson2889caa2017-06-16 15:05:19 +0100840 eb->args->flags |= __EXEC_VALIDATED;
841 return eb_reserve(eb);
842
843err:
844 for (i = slow_pass; i < count; i++) {
845 if (__exec_to_vma(&eb->exec[i]) & INTERMEDIATE)
846 __exec_to_vma(&eb->exec[i]) = 0;
847 }
848 lut->ht_size &= ~I915_CTX_RESIZE_IN_PROGRESS;
849 return err;
850#undef INTERMEDIATE
Chris Wilson59bfa122016-08-04 16:32:31 +0100851}
852
Chris Wilson4ff4b442017-06-16 15:05:16 +0100853static struct i915_vma *
Chris Wilson2889caa2017-06-16 15:05:19 +0100854eb_get_vma(const struct i915_execbuffer *eb, unsigned long handle)
Chris Wilson3b96eff2013-01-08 10:53:14 +0000855{
Chris Wilson2889caa2017-06-16 15:05:19 +0100856 if (eb->lut_size < 0) {
857 if (handle >= -eb->lut_size)
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000858 return NULL;
Chris Wilson4ff4b442017-06-16 15:05:16 +0100859 return exec_to_vma(&eb->exec[handle]);
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000860 } else {
861 struct hlist_head *head;
Geliang Tangaa459502016-01-18 23:54:20 +0800862 struct i915_vma *vma;
Chris Wilson67731b82010-12-08 10:38:14 +0000863
Chris Wilson2889caa2017-06-16 15:05:19 +0100864 head = &eb->buckets[hash_32(handle, eb->lut_size)];
Geliang Tangaa459502016-01-18 23:54:20 +0800865 hlist_for_each_entry(vma, head, exec_node) {
Ben Widawsky27173f12013-08-14 11:38:36 +0200866 if (vma->exec_handle == handle)
867 return vma;
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000868 }
869 return NULL;
Chris Wilson67731b82010-12-08 10:38:14 +0000870 }
Chris Wilson67731b82010-12-08 10:38:14 +0000871}
872
Chris Wilson2889caa2017-06-16 15:05:19 +0100873static void eb_release_vmas(const struct i915_execbuffer *eb)
Chris Wilsona415d352013-11-26 11:23:15 +0000874{
Chris Wilson2889caa2017-06-16 15:05:19 +0100875 const unsigned int count = eb->buffer_count;
876 unsigned int i;
Chris Wilson650bc632017-06-15 09:14:33 +0100877
Chris Wilson2889caa2017-06-16 15:05:19 +0100878 for (i = 0; i < count; i++) {
879 struct drm_i915_gem_exec_object2 *entry = &eb->exec[i];
880 struct i915_vma *vma = exec_to_vma(entry);
881
882 if (!vma)
Chris Wilsond55495b2017-06-15 09:14:34 +0100883 continue;
Chris Wilsonbcffc3f2013-01-08 10:53:15 +0000884
Chris Wilson2889caa2017-06-16 15:05:19 +0100885 GEM_BUG_ON(vma->exec_entry != entry);
Chris Wilson172ae5b2016-12-05 14:29:37 +0000886 vma->exec_entry = NULL;
Chris Wilsonbdbbf7d2017-06-22 11:47:22 +0100887 __exec_to_vma(entry) = 0;
Chris Wilson2889caa2017-06-16 15:05:19 +0100888
Chris Wilsondade2a62017-06-16 15:05:20 +0100889 if (entry->flags & __EXEC_OBJECT_HAS_PIN)
890 __eb_unreserve_vma(vma, entry);
Chris Wilson2889caa2017-06-16 15:05:19 +0100891
Chris Wilsondade2a62017-06-16 15:05:20 +0100892 if (entry->flags & __EXEC_OBJECT_HAS_REF)
893 i915_vma_put(vma);
894
895 entry->flags &=
896 ~(__EXEC_OBJECT_RESERVED | __EXEC_OBJECT_HAS_REF);
Chris Wilsonbcffc3f2013-01-08 10:53:15 +0000897 }
Chris Wilson2889caa2017-06-16 15:05:19 +0100898}
Chris Wilsond55495b2017-06-15 09:14:34 +0100899
Chris Wilson2889caa2017-06-16 15:05:19 +0100900static void eb_reset_vmas(const struct i915_execbuffer *eb)
901{
902 eb_release_vmas(eb);
Chris Wilson4ec654b2017-06-29 16:04:25 +0100903 if (eb->lut_size > 0)
Chris Wilson2889caa2017-06-16 15:05:19 +0100904 memset(eb->buckets, 0,
905 sizeof(struct hlist_head) << eb->lut_size);
906}
Chris Wilsond55495b2017-06-15 09:14:34 +0100907
Chris Wilson2889caa2017-06-16 15:05:19 +0100908static void eb_destroy(const struct i915_execbuffer *eb)
909{
Chris Wilson7dd4f672017-06-16 15:05:24 +0100910 GEM_BUG_ON(eb->reloc_cache.rq);
911
Chris Wilson4ec654b2017-06-29 16:04:25 +0100912 if (eb->lut_size > 0)
Chris Wilsond55495b2017-06-15 09:14:34 +0100913 kfree(eb->buckets);
Chris Wilson67731b82010-12-08 10:38:14 +0000914}
915
Chris Wilson2889caa2017-06-16 15:05:19 +0100916static inline u64
Chris Wilsond50415c2016-08-18 17:16:52 +0100917relocation_target(const struct drm_i915_gem_relocation_entry *reloc,
Chris Wilson2889caa2017-06-16 15:05:19 +0100918 const struct i915_vma *target)
Michał Winiarski934acce2015-12-29 18:24:52 +0100919{
Chris Wilson2889caa2017-06-16 15:05:19 +0100920 return gen8_canonical_addr((int)reloc->delta + target->node.start);
Michał Winiarski934acce2015-12-29 18:24:52 +0100921}
922
Chris Wilsond50415c2016-08-18 17:16:52 +0100923static void reloc_cache_init(struct reloc_cache *cache,
924 struct drm_i915_private *i915)
Rafael Barbalho5032d872013-08-21 17:10:51 +0100925{
Chris Wilson31a39202016-08-18 17:16:46 +0100926 cache->page = -1;
Chris Wilsond50415c2016-08-18 17:16:52 +0100927 cache->vaddr = 0;
Joonas Lahtinendfc51482016-11-03 10:39:46 +0200928 /* Must be a variable in the struct to allow GCC to unroll. */
Chris Wilson7dd4f672017-06-16 15:05:24 +0100929 cache->gen = INTEL_GEN(i915);
Chris Wilson2889caa2017-06-16 15:05:19 +0100930 cache->has_llc = HAS_LLC(i915);
Joonas Lahtinendfc51482016-11-03 10:39:46 +0200931 cache->use_64bit_reloc = HAS_64BIT_RELOC(i915);
Chris Wilson7dd4f672017-06-16 15:05:24 +0100932 cache->has_fence = cache->gen < 4;
933 cache->needs_unfenced = INTEL_INFO(i915)->unfenced_needs_alignment;
Chris Wilsone8cb9092016-08-18 17:16:53 +0100934 cache->node.allocated = false;
Chris Wilson7dd4f672017-06-16 15:05:24 +0100935 cache->rq = NULL;
936 cache->rq_size = 0;
Chris Wilson31a39202016-08-18 17:16:46 +0100937}
Rafael Barbalho5032d872013-08-21 17:10:51 +0100938
Chris Wilsond50415c2016-08-18 17:16:52 +0100939static inline void *unmask_page(unsigned long p)
940{
941 return (void *)(uintptr_t)(p & PAGE_MASK);
942}
Rafael Barbalho5032d872013-08-21 17:10:51 +0100943
Chris Wilsond50415c2016-08-18 17:16:52 +0100944static inline unsigned int unmask_flags(unsigned long p)
945{
946 return p & ~PAGE_MASK;
947}
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700948
Chris Wilsond50415c2016-08-18 17:16:52 +0100949#define KMAP 0x4 /* after CLFLUSH_FLAGS */
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700950
Chris Wilson650bc632017-06-15 09:14:33 +0100951static inline struct i915_ggtt *cache_to_ggtt(struct reloc_cache *cache)
952{
953 struct drm_i915_private *i915 =
954 container_of(cache, struct i915_execbuffer, reloc_cache)->i915;
955 return &i915->ggtt;
956}
957
Chris Wilson7dd4f672017-06-16 15:05:24 +0100958static void reloc_gpu_flush(struct reloc_cache *cache)
959{
960 GEM_BUG_ON(cache->rq_size >= cache->rq->batch->obj->base.size / sizeof(u32));
961 cache->rq_cmd[cache->rq_size] = MI_BATCH_BUFFER_END;
962 i915_gem_object_unpin_map(cache->rq->batch->obj);
963 i915_gem_chipset_flush(cache->rq->i915);
964
965 __i915_add_request(cache->rq, true);
966 cache->rq = NULL;
967}
968
Chris Wilson650bc632017-06-15 09:14:33 +0100969static void reloc_cache_reset(struct reloc_cache *cache)
Chris Wilson31a39202016-08-18 17:16:46 +0100970{
Chris Wilsond50415c2016-08-18 17:16:52 +0100971 void *vaddr;
972
Chris Wilson7dd4f672017-06-16 15:05:24 +0100973 if (cache->rq)
974 reloc_gpu_flush(cache);
975
Chris Wilson31a39202016-08-18 17:16:46 +0100976 if (!cache->vaddr)
977 return;
978
Chris Wilsond50415c2016-08-18 17:16:52 +0100979 vaddr = unmask_page(cache->vaddr);
980 if (cache->vaddr & KMAP) {
981 if (cache->vaddr & CLFLUSH_AFTER)
982 mb();
Chris Wilson31a39202016-08-18 17:16:46 +0100983
Chris Wilsond50415c2016-08-18 17:16:52 +0100984 kunmap_atomic(vaddr);
985 i915_gem_obj_finish_shmem_access((struct drm_i915_gem_object *)cache->node.mm);
986 } else {
Chris Wilsone8cb9092016-08-18 17:16:53 +0100987 wmb();
Chris Wilsond50415c2016-08-18 17:16:52 +0100988 io_mapping_unmap_atomic((void __iomem *)vaddr);
Chris Wilsone8cb9092016-08-18 17:16:53 +0100989 if (cache->node.allocated) {
Chris Wilson650bc632017-06-15 09:14:33 +0100990 struct i915_ggtt *ggtt = cache_to_ggtt(cache);
Chris Wilsone8cb9092016-08-18 17:16:53 +0100991
992 ggtt->base.clear_range(&ggtt->base,
993 cache->node.start,
Michał Winiarski4fb84d92016-10-13 14:02:40 +0200994 cache->node.size);
Chris Wilsone8cb9092016-08-18 17:16:53 +0100995 drm_mm_remove_node(&cache->node);
996 } else {
997 i915_vma_unpin((struct i915_vma *)cache->node.mm);
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700998 }
Chris Wilson31a39202016-08-18 17:16:46 +0100999 }
Chris Wilson650bc632017-06-15 09:14:33 +01001000
1001 cache->vaddr = 0;
1002 cache->page = -1;
Chris Wilson31a39202016-08-18 17:16:46 +01001003}
Ben Widawsky3c94cee2013-11-02 21:07:11 -07001004
Chris Wilson31a39202016-08-18 17:16:46 +01001005static void *reloc_kmap(struct drm_i915_gem_object *obj,
1006 struct reloc_cache *cache,
Chris Wilson2889caa2017-06-16 15:05:19 +01001007 unsigned long page)
Chris Wilson31a39202016-08-18 17:16:46 +01001008{
Chris Wilsond50415c2016-08-18 17:16:52 +01001009 void *vaddr;
Chris Wilson31a39202016-08-18 17:16:46 +01001010
Chris Wilsond50415c2016-08-18 17:16:52 +01001011 if (cache->vaddr) {
1012 kunmap_atomic(unmask_page(cache->vaddr));
1013 } else {
1014 unsigned int flushes;
Chris Wilson2889caa2017-06-16 15:05:19 +01001015 int err;
Chris Wilson31a39202016-08-18 17:16:46 +01001016
Chris Wilson2889caa2017-06-16 15:05:19 +01001017 err = i915_gem_obj_prepare_shmem_write(obj, &flushes);
1018 if (err)
1019 return ERR_PTR(err);
Chris Wilsond50415c2016-08-18 17:16:52 +01001020
1021 BUILD_BUG_ON(KMAP & CLFLUSH_FLAGS);
1022 BUILD_BUG_ON((KMAP | CLFLUSH_FLAGS) & PAGE_MASK);
1023
1024 cache->vaddr = flushes | KMAP;
1025 cache->node.mm = (void *)obj;
1026 if (flushes)
1027 mb();
Ben Widawsky3c94cee2013-11-02 21:07:11 -07001028 }
1029
Chris Wilsond50415c2016-08-18 17:16:52 +01001030 vaddr = kmap_atomic(i915_gem_object_get_dirty_page(obj, page));
1031 cache->vaddr = unmask_flags(cache->vaddr) | (unsigned long)vaddr;
Chris Wilson31a39202016-08-18 17:16:46 +01001032 cache->page = page;
Chris Wilson31a39202016-08-18 17:16:46 +01001033
Chris Wilsond50415c2016-08-18 17:16:52 +01001034 return vaddr;
Chris Wilson31a39202016-08-18 17:16:46 +01001035}
1036
Chris Wilsond50415c2016-08-18 17:16:52 +01001037static void *reloc_iomap(struct drm_i915_gem_object *obj,
Chris Wilson31a39202016-08-18 17:16:46 +01001038 struct reloc_cache *cache,
Chris Wilson2889caa2017-06-16 15:05:19 +01001039 unsigned long page)
Chris Wilson31a39202016-08-18 17:16:46 +01001040{
Chris Wilson650bc632017-06-15 09:14:33 +01001041 struct i915_ggtt *ggtt = cache_to_ggtt(cache);
Chris Wilsone8cb9092016-08-18 17:16:53 +01001042 unsigned long offset;
Chris Wilsond50415c2016-08-18 17:16:52 +01001043 void *vaddr;
Chris Wilson31a39202016-08-18 17:16:46 +01001044
Chris Wilsond50415c2016-08-18 17:16:52 +01001045 if (cache->vaddr) {
Jani Nikula615e5002016-10-04 12:54:13 +03001046 io_mapping_unmap_atomic((void __force __iomem *) unmask_page(cache->vaddr));
Chris Wilsond50415c2016-08-18 17:16:52 +01001047 } else {
1048 struct i915_vma *vma;
Chris Wilson2889caa2017-06-16 15:05:19 +01001049 int err;
Chris Wilson31a39202016-08-18 17:16:46 +01001050
Chris Wilson2889caa2017-06-16 15:05:19 +01001051 if (use_cpu_reloc(cache, obj))
Chris Wilsond50415c2016-08-18 17:16:52 +01001052 return NULL;
Chris Wilson31a39202016-08-18 17:16:46 +01001053
Chris Wilson2889caa2017-06-16 15:05:19 +01001054 err = i915_gem_object_set_to_gtt_domain(obj, true);
1055 if (err)
1056 return ERR_PTR(err);
Chris Wilson31a39202016-08-18 17:16:46 +01001057
Chris Wilsond50415c2016-08-18 17:16:52 +01001058 vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0,
1059 PIN_MAPPABLE | PIN_NONBLOCK);
Chris Wilsone8cb9092016-08-18 17:16:53 +01001060 if (IS_ERR(vma)) {
1061 memset(&cache->node, 0, sizeof(cache->node));
Chris Wilson2889caa2017-06-16 15:05:19 +01001062 err = drm_mm_insert_node_in_range
Chris Wilsone8cb9092016-08-18 17:16:53 +01001063 (&ggtt->base.mm, &cache->node,
Chris Wilsonf51455d2017-01-10 14:47:34 +00001064 PAGE_SIZE, 0, I915_COLOR_UNEVICTABLE,
Chris Wilsone8cb9092016-08-18 17:16:53 +01001065 0, ggtt->mappable_end,
Chris Wilson4e64e552017-02-02 21:04:38 +00001066 DRM_MM_INSERT_LOW);
Chris Wilson2889caa2017-06-16 15:05:19 +01001067 if (err) /* no inactive aperture space, use cpu reloc */
Chris Wilsonc92fa4f2016-10-07 07:53:25 +01001068 return NULL;
Chris Wilsone8cb9092016-08-18 17:16:53 +01001069 } else {
Chris Wilson2889caa2017-06-16 15:05:19 +01001070 err = i915_vma_put_fence(vma);
1071 if (err) {
Chris Wilsone8cb9092016-08-18 17:16:53 +01001072 i915_vma_unpin(vma);
Chris Wilson2889caa2017-06-16 15:05:19 +01001073 return ERR_PTR(err);
Chris Wilsone8cb9092016-08-18 17:16:53 +01001074 }
Rafael Barbalho5032d872013-08-21 17:10:51 +01001075
Chris Wilsone8cb9092016-08-18 17:16:53 +01001076 cache->node.start = vma->node.start;
1077 cache->node.mm = (void *)vma;
Chris Wilsond50415c2016-08-18 17:16:52 +01001078 }
Ben Widawsky3c94cee2013-11-02 21:07:11 -07001079 }
1080
Chris Wilsone8cb9092016-08-18 17:16:53 +01001081 offset = cache->node.start;
1082 if (cache->node.allocated) {
Chris Wilsonfc099092016-10-28 15:27:56 +01001083 wmb();
Chris Wilsone8cb9092016-08-18 17:16:53 +01001084 ggtt->base.insert_page(&ggtt->base,
1085 i915_gem_object_get_dma_address(obj, page),
1086 offset, I915_CACHE_NONE, 0);
1087 } else {
1088 offset += page << PAGE_SHIFT;
1089 }
1090
Chris Wilson650bc632017-06-15 09:14:33 +01001091 vaddr = (void __force *)io_mapping_map_atomic_wc(&ggtt->mappable,
1092 offset);
Chris Wilsond50415c2016-08-18 17:16:52 +01001093 cache->page = page;
1094 cache->vaddr = (unsigned long)vaddr;
1095
1096 return vaddr;
Rafael Barbalho5032d872013-08-21 17:10:51 +01001097}
1098
Chris Wilsond50415c2016-08-18 17:16:52 +01001099static void *reloc_vaddr(struct drm_i915_gem_object *obj,
1100 struct reloc_cache *cache,
Chris Wilson2889caa2017-06-16 15:05:19 +01001101 unsigned long page)
Chris Wilsonedf4427b2015-01-14 11:20:56 +00001102{
Chris Wilsond50415c2016-08-18 17:16:52 +01001103 void *vaddr;
1104
1105 if (cache->page == page) {
1106 vaddr = unmask_page(cache->vaddr);
1107 } else {
1108 vaddr = NULL;
1109 if ((cache->vaddr & KMAP) == 0)
1110 vaddr = reloc_iomap(obj, cache, page);
1111 if (!vaddr)
1112 vaddr = reloc_kmap(obj, cache, page);
1113 }
1114
1115 return vaddr;
1116}
1117
1118static void clflush_write32(u32 *addr, u32 value, unsigned int flushes)
1119{
1120 if (unlikely(flushes & (CLFLUSH_BEFORE | CLFLUSH_AFTER))) {
1121 if (flushes & CLFLUSH_BEFORE) {
1122 clflushopt(addr);
1123 mb();
1124 }
1125
1126 *addr = value;
1127
Chris Wilson2889caa2017-06-16 15:05:19 +01001128 /*
1129 * Writes to the same cacheline are serialised by the CPU
Chris Wilsond50415c2016-08-18 17:16:52 +01001130 * (including clflush). On the write path, we only require
1131 * that it hits memory in an orderly fashion and place
1132 * mb barriers at the start and end of the relocation phase
1133 * to ensure ordering of clflush wrt to the system.
1134 */
1135 if (flushes & CLFLUSH_AFTER)
1136 clflushopt(addr);
1137 } else
1138 *addr = value;
Chris Wilsonedf4427b2015-01-14 11:20:56 +00001139}
1140
Chris Wilson7dd4f672017-06-16 15:05:24 +01001141static int __reloc_gpu_alloc(struct i915_execbuffer *eb,
1142 struct i915_vma *vma,
1143 unsigned int len)
1144{
1145 struct reloc_cache *cache = &eb->reloc_cache;
1146 struct drm_i915_gem_object *obj;
1147 struct drm_i915_gem_request *rq;
1148 struct i915_vma *batch;
1149 u32 *cmd;
1150 int err;
1151
1152 GEM_BUG_ON(vma->obj->base.write_domain & I915_GEM_DOMAIN_CPU);
1153
1154 obj = i915_gem_batch_pool_get(&eb->engine->batch_pool, PAGE_SIZE);
1155 if (IS_ERR(obj))
1156 return PTR_ERR(obj);
1157
1158 cmd = i915_gem_object_pin_map(obj,
1159 cache->has_llc ? I915_MAP_WB : I915_MAP_WC);
1160 i915_gem_object_unpin_pages(obj);
1161 if (IS_ERR(cmd))
1162 return PTR_ERR(cmd);
1163
1164 err = i915_gem_object_set_to_wc_domain(obj, false);
1165 if (err)
1166 goto err_unmap;
1167
1168 batch = i915_vma_instance(obj, vma->vm, NULL);
1169 if (IS_ERR(batch)) {
1170 err = PTR_ERR(batch);
1171 goto err_unmap;
1172 }
1173
1174 err = i915_vma_pin(batch, 0, 0, PIN_USER | PIN_NONBLOCK);
1175 if (err)
1176 goto err_unmap;
1177
1178 rq = i915_gem_request_alloc(eb->engine, eb->ctx);
1179 if (IS_ERR(rq)) {
1180 err = PTR_ERR(rq);
1181 goto err_unpin;
1182 }
1183
1184 err = i915_gem_request_await_object(rq, vma->obj, true);
1185 if (err)
1186 goto err_request;
1187
1188 err = eb->engine->emit_flush(rq, EMIT_INVALIDATE);
1189 if (err)
1190 goto err_request;
1191
1192 err = i915_switch_context(rq);
1193 if (err)
1194 goto err_request;
1195
1196 err = eb->engine->emit_bb_start(rq,
1197 batch->node.start, PAGE_SIZE,
1198 cache->gen > 5 ? 0 : I915_DISPATCH_SECURE);
1199 if (err)
1200 goto err_request;
1201
Chris Wilson95ff7c72017-06-16 15:05:25 +01001202 GEM_BUG_ON(!reservation_object_test_signaled_rcu(batch->resv, true));
Chris Wilson7dd4f672017-06-16 15:05:24 +01001203 i915_vma_move_to_active(batch, rq, 0);
Chris Wilson95ff7c72017-06-16 15:05:25 +01001204 reservation_object_lock(batch->resv, NULL);
1205 reservation_object_add_excl_fence(batch->resv, &rq->fence);
1206 reservation_object_unlock(batch->resv);
Chris Wilson7dd4f672017-06-16 15:05:24 +01001207 i915_vma_unpin(batch);
1208
Chris Wilsonb88eb192017-06-20 13:43:20 +01001209 i915_vma_move_to_active(vma, rq, EXEC_OBJECT_WRITE);
Chris Wilson95ff7c72017-06-16 15:05:25 +01001210 reservation_object_lock(vma->resv, NULL);
1211 reservation_object_add_excl_fence(vma->resv, &rq->fence);
1212 reservation_object_unlock(vma->resv);
Chris Wilson7dd4f672017-06-16 15:05:24 +01001213
1214 rq->batch = batch;
1215
1216 cache->rq = rq;
1217 cache->rq_cmd = cmd;
1218 cache->rq_size = 0;
1219
1220 /* Return with batch mapping (cmd) still pinned */
1221 return 0;
1222
1223err_request:
1224 i915_add_request(rq);
1225err_unpin:
1226 i915_vma_unpin(batch);
1227err_unmap:
1228 i915_gem_object_unpin_map(obj);
1229 return err;
1230}
1231
1232static u32 *reloc_gpu(struct i915_execbuffer *eb,
1233 struct i915_vma *vma,
1234 unsigned int len)
1235{
1236 struct reloc_cache *cache = &eb->reloc_cache;
1237 u32 *cmd;
1238
1239 if (cache->rq_size > PAGE_SIZE/sizeof(u32) - (len + 1))
1240 reloc_gpu_flush(cache);
1241
1242 if (unlikely(!cache->rq)) {
1243 int err;
1244
1245 err = __reloc_gpu_alloc(eb, vma, len);
1246 if (unlikely(err))
1247 return ERR_PTR(err);
1248 }
1249
1250 cmd = cache->rq_cmd + cache->rq_size;
1251 cache->rq_size += len;
1252
1253 return cmd;
1254}
1255
Chris Wilson2889caa2017-06-16 15:05:19 +01001256static u64
1257relocate_entry(struct i915_vma *vma,
Chris Wilsond50415c2016-08-18 17:16:52 +01001258 const struct drm_i915_gem_relocation_entry *reloc,
Chris Wilson2889caa2017-06-16 15:05:19 +01001259 struct i915_execbuffer *eb,
1260 const struct i915_vma *target)
Chris Wilsonedf4427b2015-01-14 11:20:56 +00001261{
Chris Wilsond50415c2016-08-18 17:16:52 +01001262 u64 offset = reloc->offset;
Chris Wilson2889caa2017-06-16 15:05:19 +01001263 u64 target_offset = relocation_target(reloc, target);
1264 bool wide = eb->reloc_cache.use_64bit_reloc;
Chris Wilsond50415c2016-08-18 17:16:52 +01001265 void *vaddr;
Chris Wilsonedf4427b2015-01-14 11:20:56 +00001266
Chris Wilson7dd4f672017-06-16 15:05:24 +01001267 if (!eb->reloc_cache.vaddr &&
1268 (DBG_FORCE_RELOC == FORCE_GPU_RELOC ||
Chris Wilson95ff7c72017-06-16 15:05:25 +01001269 !reservation_object_test_signaled_rcu(vma->resv, true))) {
Chris Wilson7dd4f672017-06-16 15:05:24 +01001270 const unsigned int gen = eb->reloc_cache.gen;
1271 unsigned int len;
1272 u32 *batch;
1273 u64 addr;
1274
1275 if (wide)
1276 len = offset & 7 ? 8 : 5;
1277 else if (gen >= 4)
1278 len = 4;
1279 else if (gen >= 3)
1280 len = 3;
1281 else /* On gen2 MI_STORE_DWORD_IMM uses a physical address */
1282 goto repeat;
1283
1284 batch = reloc_gpu(eb, vma, len);
1285 if (IS_ERR(batch))
1286 goto repeat;
1287
1288 addr = gen8_canonical_addr(vma->node.start + offset);
1289 if (wide) {
1290 if (offset & 7) {
1291 *batch++ = MI_STORE_DWORD_IMM_GEN4;
1292 *batch++ = lower_32_bits(addr);
1293 *batch++ = upper_32_bits(addr);
1294 *batch++ = lower_32_bits(target_offset);
1295
1296 addr = gen8_canonical_addr(addr + 4);
1297
1298 *batch++ = MI_STORE_DWORD_IMM_GEN4;
1299 *batch++ = lower_32_bits(addr);
1300 *batch++ = upper_32_bits(addr);
1301 *batch++ = upper_32_bits(target_offset);
1302 } else {
1303 *batch++ = (MI_STORE_DWORD_IMM_GEN4 | (1 << 21)) + 1;
1304 *batch++ = lower_32_bits(addr);
1305 *batch++ = upper_32_bits(addr);
1306 *batch++ = lower_32_bits(target_offset);
1307 *batch++ = upper_32_bits(target_offset);
1308 }
1309 } else if (gen >= 6) {
1310 *batch++ = MI_STORE_DWORD_IMM_GEN4;
1311 *batch++ = 0;
1312 *batch++ = addr;
1313 *batch++ = target_offset;
1314 } else if (gen >= 4) {
1315 *batch++ = MI_STORE_DWORD_IMM_GEN4 | MI_USE_GGTT;
1316 *batch++ = 0;
1317 *batch++ = addr;
1318 *batch++ = target_offset;
1319 } else {
1320 *batch++ = MI_STORE_DWORD_IMM | MI_MEM_VIRTUAL;
1321 *batch++ = addr;
1322 *batch++ = target_offset;
1323 }
1324
1325 goto out;
1326 }
1327
Chris Wilsond50415c2016-08-18 17:16:52 +01001328repeat:
Chris Wilson95ff7c72017-06-16 15:05:25 +01001329 vaddr = reloc_vaddr(vma->obj, &eb->reloc_cache, offset >> PAGE_SHIFT);
Chris Wilsond50415c2016-08-18 17:16:52 +01001330 if (IS_ERR(vaddr))
1331 return PTR_ERR(vaddr);
Chris Wilsonedf4427b2015-01-14 11:20:56 +00001332
Chris Wilsond50415c2016-08-18 17:16:52 +01001333 clflush_write32(vaddr + offset_in_page(offset),
1334 lower_32_bits(target_offset),
Chris Wilson2889caa2017-06-16 15:05:19 +01001335 eb->reloc_cache.vaddr);
Chris Wilsonedf4427b2015-01-14 11:20:56 +00001336
Chris Wilsond50415c2016-08-18 17:16:52 +01001337 if (wide) {
1338 offset += sizeof(u32);
1339 target_offset >>= 32;
1340 wide = false;
1341 goto repeat;
Chris Wilsonedf4427b2015-01-14 11:20:56 +00001342 }
Chris Wilsondabdfe02012-03-26 10:10:27 +02001343
Chris Wilson7dd4f672017-06-16 15:05:24 +01001344out:
Chris Wilson2889caa2017-06-16 15:05:19 +01001345 return target->node.start | UPDATE;
Rafael Barbalho5032d872013-08-21 17:10:51 +01001346}
1347
Chris Wilson2889caa2017-06-16 15:05:19 +01001348static u64
1349eb_relocate_entry(struct i915_execbuffer *eb,
1350 struct i915_vma *vma,
1351 const struct drm_i915_gem_relocation_entry *reloc)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001352{
Chris Wilson507d9772017-06-16 15:05:17 +01001353 struct i915_vma *target;
Chris Wilson2889caa2017-06-16 15:05:19 +01001354 int err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001355
Chris Wilson67731b82010-12-08 10:38:14 +00001356 /* we've already hold a reference to all valid objects */
Chris Wilson507d9772017-06-16 15:05:17 +01001357 target = eb_get_vma(eb, reloc->target_handle);
1358 if (unlikely(!target))
Chris Wilson54cf91d2010-11-25 18:00:26 +00001359 return -ENOENT;
Eric Anholte844b992012-07-31 15:35:01 -07001360
Chris Wilson54cf91d2010-11-25 18:00:26 +00001361 /* Validate that the target is in a valid r/w GPU domain */
Chris Wilsonb8f7ab12010-12-08 10:43:06 +00001362 if (unlikely(reloc->write_domain & (reloc->write_domain - 1))) {
Daniel Vetterff240192012-01-31 21:08:14 +01001363 DRM_DEBUG("reloc with multiple write domains: "
Chris Wilson507d9772017-06-16 15:05:17 +01001364 "target %d offset %d "
Chris Wilson54cf91d2010-11-25 18:00:26 +00001365 "read %08x write %08x",
Chris Wilson507d9772017-06-16 15:05:17 +01001366 reloc->target_handle,
Chris Wilson54cf91d2010-11-25 18:00:26 +00001367 (int) reloc->offset,
1368 reloc->read_domains,
1369 reloc->write_domain);
Ben Widawsky8b78f0e2013-12-26 13:39:50 -08001370 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001371 }
Daniel Vetter4ca4a252011-12-14 13:57:27 +01001372 if (unlikely((reloc->write_domain | reloc->read_domains)
1373 & ~I915_GEM_GPU_DOMAINS)) {
Daniel Vetterff240192012-01-31 21:08:14 +01001374 DRM_DEBUG("reloc with read/write non-GPU domains: "
Chris Wilson507d9772017-06-16 15:05:17 +01001375 "target %d offset %d "
Chris Wilson54cf91d2010-11-25 18:00:26 +00001376 "read %08x write %08x",
Chris Wilson507d9772017-06-16 15:05:17 +01001377 reloc->target_handle,
Chris Wilson54cf91d2010-11-25 18:00:26 +00001378 (int) reloc->offset,
1379 reloc->read_domains,
1380 reloc->write_domain);
Ben Widawsky8b78f0e2013-12-26 13:39:50 -08001381 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001382 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001383
Chris Wilson2889caa2017-06-16 15:05:19 +01001384 if (reloc->write_domain) {
Chris Wilson507d9772017-06-16 15:05:17 +01001385 target->exec_entry->flags |= EXEC_OBJECT_WRITE;
1386
Chris Wilson2889caa2017-06-16 15:05:19 +01001387 /*
1388 * Sandybridge PPGTT errata: We need a global gtt mapping
1389 * for MI and pipe_control writes because the gpu doesn't
1390 * properly redirect them through the ppgtt for non_secure
1391 * batchbuffers.
1392 */
1393 if (reloc->write_domain == I915_GEM_DOMAIN_INSTRUCTION &&
1394 IS_GEN6(eb->i915)) {
1395 err = i915_vma_bind(target, target->obj->cache_level,
1396 PIN_GLOBAL);
1397 if (WARN_ONCE(err,
1398 "Unexpected failure to bind target VMA!"))
1399 return err;
1400 }
Chris Wilson507d9772017-06-16 15:05:17 +01001401 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001402
Chris Wilson2889caa2017-06-16 15:05:19 +01001403 /*
1404 * If the relocation already has the right value in it, no
Chris Wilson54cf91d2010-11-25 18:00:26 +00001405 * more work needs to be done.
1406 */
Chris Wilson7dd4f672017-06-16 15:05:24 +01001407 if (!DBG_FORCE_RELOC &&
1408 gen8_canonical_addr(target->node.start) == reloc->presumed_offset)
Chris Wilson67731b82010-12-08 10:38:14 +00001409 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001410
1411 /* Check that the relocation address is valid... */
Ben Widawsky3c94cee2013-11-02 21:07:11 -07001412 if (unlikely(reloc->offset >
Chris Wilson507d9772017-06-16 15:05:17 +01001413 vma->size - (eb->reloc_cache.use_64bit_reloc ? 8 : 4))) {
Daniel Vetterff240192012-01-31 21:08:14 +01001414 DRM_DEBUG("Relocation beyond object bounds: "
Chris Wilson507d9772017-06-16 15:05:17 +01001415 "target %d offset %d size %d.\n",
1416 reloc->target_handle,
1417 (int)reloc->offset,
1418 (int)vma->size);
Ben Widawsky8b78f0e2013-12-26 13:39:50 -08001419 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001420 }
Chris Wilsonb8f7ab12010-12-08 10:43:06 +00001421 if (unlikely(reloc->offset & 3)) {
Daniel Vetterff240192012-01-31 21:08:14 +01001422 DRM_DEBUG("Relocation not 4-byte aligned: "
Chris Wilson507d9772017-06-16 15:05:17 +01001423 "target %d offset %d.\n",
1424 reloc->target_handle,
1425 (int)reloc->offset);
Ben Widawsky8b78f0e2013-12-26 13:39:50 -08001426 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001427 }
1428
Chris Wilson071750e2017-06-16 15:05:18 +01001429 /*
1430 * If we write into the object, we need to force the synchronisation
1431 * barrier, either with an asynchronous clflush or if we executed the
1432 * patching using the GPU (though that should be serialised by the
1433 * timeline). To be completely sure, and since we are required to
1434 * do relocations we are already stalling, disable the user's opt
1435 * of our synchronisation.
1436 */
1437 vma->exec_entry->flags &= ~EXEC_OBJECT_ASYNC;
1438
Chris Wilson54cf91d2010-11-25 18:00:26 +00001439 /* and update the user's relocation entry */
Chris Wilson2889caa2017-06-16 15:05:19 +01001440 return relocate_entry(vma, reloc, eb, target);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001441}
1442
Chris Wilson2889caa2017-06-16 15:05:19 +01001443static int eb_relocate_vma(struct i915_execbuffer *eb, struct i915_vma *vma)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001444{
Chris Wilson1d83f442012-03-24 20:12:53 +00001445#define N_RELOC(x) ((x) / sizeof(struct drm_i915_gem_relocation_entry))
Chris Wilson2889caa2017-06-16 15:05:19 +01001446 struct drm_i915_gem_relocation_entry stack[N_RELOC(512)];
1447 struct drm_i915_gem_relocation_entry __user *urelocs;
1448 const struct drm_i915_gem_exec_object2 *entry = vma->exec_entry;
1449 unsigned int remain;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001450
Chris Wilson2889caa2017-06-16 15:05:19 +01001451 urelocs = u64_to_user_ptr(entry->relocs_ptr);
Chris Wilson1d83f442012-03-24 20:12:53 +00001452 remain = entry->relocation_count;
Chris Wilson2889caa2017-06-16 15:05:19 +01001453 if (unlikely(remain > N_RELOC(ULONG_MAX)))
1454 return -EINVAL;
Chris Wilsonebc08082016-10-18 13:02:51 +01001455
Chris Wilson2889caa2017-06-16 15:05:19 +01001456 /*
1457 * We must check that the entire relocation array is safe
1458 * to read. However, if the array is not writable the user loses
1459 * the updated relocation values.
1460 */
Imre Deak77281242017-07-14 18:12:42 +03001461 if (unlikely(!access_ok(VERIFY_READ, urelocs, remain*sizeof(*urelocs))))
Chris Wilson2889caa2017-06-16 15:05:19 +01001462 return -EFAULT;
Chris Wilson1d83f442012-03-24 20:12:53 +00001463
Chris Wilson2889caa2017-06-16 15:05:19 +01001464 do {
1465 struct drm_i915_gem_relocation_entry *r = stack;
1466 unsigned int count =
1467 min_t(unsigned int, remain, ARRAY_SIZE(stack));
1468 unsigned int copied;
1469
1470 /*
1471 * This is the fast path and we cannot handle a pagefault
Chris Wilsonebc08082016-10-18 13:02:51 +01001472 * whilst holding the struct mutex lest the user pass in the
1473 * relocations contained within a mmaped bo. For in such a case
1474 * we, the page fault handler would call i915_gem_fault() and
1475 * we would try to acquire the struct mutex again. Obviously
1476 * this is bad and so lockdep complains vehemently.
1477 */
1478 pagefault_disable();
Chris Wilson2889caa2017-06-16 15:05:19 +01001479 copied = __copy_from_user_inatomic(r, urelocs, count * sizeof(r[0]));
Chris Wilsonebc08082016-10-18 13:02:51 +01001480 pagefault_enable();
Chris Wilson2889caa2017-06-16 15:05:19 +01001481 if (unlikely(copied)) {
1482 remain = -EFAULT;
Chris Wilson31a39202016-08-18 17:16:46 +01001483 goto out;
1484 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001485
Chris Wilson2889caa2017-06-16 15:05:19 +01001486 remain -= count;
Chris Wilson1d83f442012-03-24 20:12:53 +00001487 do {
Chris Wilson2889caa2017-06-16 15:05:19 +01001488 u64 offset = eb_relocate_entry(eb, vma, r);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001489
Chris Wilson2889caa2017-06-16 15:05:19 +01001490 if (likely(offset == 0)) {
1491 } else if ((s64)offset < 0) {
1492 remain = (int)offset;
Chris Wilson31a39202016-08-18 17:16:46 +01001493 goto out;
Chris Wilson2889caa2017-06-16 15:05:19 +01001494 } else {
1495 /*
1496 * Note that reporting an error now
1497 * leaves everything in an inconsistent
1498 * state as we have *already* changed
1499 * the relocation value inside the
1500 * object. As we have not changed the
1501 * reloc.presumed_offset or will not
1502 * change the execobject.offset, on the
1503 * call we may not rewrite the value
1504 * inside the object, leaving it
1505 * dangling and causing a GPU hang. Unless
1506 * userspace dynamically rebuilds the
1507 * relocations on each execbuf rather than
1508 * presume a static tree.
1509 *
1510 * We did previously check if the relocations
1511 * were writable (access_ok), an error now
1512 * would be a strange race with mprotect,
1513 * having already demonstrated that we
1514 * can read from this userspace address.
1515 */
1516 offset = gen8_canonical_addr(offset & ~UPDATE);
1517 __put_user(offset,
1518 &urelocs[r-stack].presumed_offset);
Chris Wilson1d83f442012-03-24 20:12:53 +00001519 }
Chris Wilson2889caa2017-06-16 15:05:19 +01001520 } while (r++, --count);
1521 urelocs += ARRAY_SIZE(stack);
1522 } while (remain);
Chris Wilson31a39202016-08-18 17:16:46 +01001523out:
Chris Wilson650bc632017-06-15 09:14:33 +01001524 reloc_cache_reset(&eb->reloc_cache);
Chris Wilson2889caa2017-06-16 15:05:19 +01001525 return remain;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001526}
1527
1528static int
Chris Wilson2889caa2017-06-16 15:05:19 +01001529eb_relocate_vma_slow(struct i915_execbuffer *eb, struct i915_vma *vma)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001530{
Ben Widawsky27173f12013-08-14 11:38:36 +02001531 const struct drm_i915_gem_exec_object2 *entry = vma->exec_entry;
Chris Wilson2889caa2017-06-16 15:05:19 +01001532 struct drm_i915_gem_relocation_entry *relocs =
1533 u64_to_ptr(typeof(*relocs), entry->relocs_ptr);
1534 unsigned int i;
1535 int err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001536
1537 for (i = 0; i < entry->relocation_count; i++) {
Chris Wilson2889caa2017-06-16 15:05:19 +01001538 u64 offset = eb_relocate_entry(eb, vma, &relocs[i]);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001539
Chris Wilson2889caa2017-06-16 15:05:19 +01001540 if ((s64)offset < 0) {
1541 err = (int)offset;
1542 goto err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001543 }
Chris Wilson2889caa2017-06-16 15:05:19 +01001544 }
1545 err = 0;
Chris Wilsona415d352013-11-26 11:23:15 +00001546err:
Chris Wilson2889caa2017-06-16 15:05:19 +01001547 reloc_cache_reset(&eb->reloc_cache);
1548 return err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001549}
1550
Chris Wilson2889caa2017-06-16 15:05:19 +01001551static int check_relocations(const struct drm_i915_gem_exec_object2 *entry)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001552{
Chris Wilson2889caa2017-06-16 15:05:19 +01001553 const char __user *addr, *end;
1554 unsigned long size;
1555 char __maybe_unused c;
Ben Widawsky27173f12013-08-14 11:38:36 +02001556
Chris Wilson2889caa2017-06-16 15:05:19 +01001557 size = entry->relocation_count;
1558 if (size == 0)
1559 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001560
Chris Wilson2889caa2017-06-16 15:05:19 +01001561 if (size > N_RELOC(ULONG_MAX))
1562 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001563
Chris Wilson2889caa2017-06-16 15:05:19 +01001564 addr = u64_to_user_ptr(entry->relocs_ptr);
1565 size *= sizeof(struct drm_i915_gem_relocation_entry);
1566 if (!access_ok(VERIFY_READ, addr, size))
1567 return -EFAULT;
1568
1569 end = addr + size;
1570 for (; addr < end; addr += PAGE_SIZE) {
1571 int err = __get_user(c, addr);
1572 if (err)
1573 return err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001574 }
Chris Wilson2889caa2017-06-16 15:05:19 +01001575 return __get_user(c, end - 1);
1576}
Chris Wilson54cf91d2010-11-25 18:00:26 +00001577
Chris Wilson2889caa2017-06-16 15:05:19 +01001578static int eb_copy_relocations(const struct i915_execbuffer *eb)
1579{
1580 const unsigned int count = eb->buffer_count;
1581 unsigned int i;
1582 int err;
1583
Chris Wilson54cf91d2010-11-25 18:00:26 +00001584 for (i = 0; i < count; i++) {
Chris Wilson2889caa2017-06-16 15:05:19 +01001585 const unsigned int nreloc = eb->exec[i].relocation_count;
1586 struct drm_i915_gem_relocation_entry __user *urelocs;
1587 struct drm_i915_gem_relocation_entry *relocs;
1588 unsigned long size;
1589 unsigned long copied;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001590
Chris Wilson2889caa2017-06-16 15:05:19 +01001591 if (nreloc == 0)
1592 continue;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001593
Chris Wilson2889caa2017-06-16 15:05:19 +01001594 err = check_relocations(&eb->exec[i]);
1595 if (err)
1596 goto err;
1597
1598 urelocs = u64_to_user_ptr(eb->exec[i].relocs_ptr);
1599 size = nreloc * sizeof(*relocs);
1600
1601 relocs = kvmalloc_array(size, 1, GFP_TEMPORARY);
1602 if (!relocs) {
1603 kvfree(relocs);
1604 err = -ENOMEM;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001605 goto err;
1606 }
1607
Chris Wilson2889caa2017-06-16 15:05:19 +01001608 /* copy_from_user is limited to < 4GiB */
1609 copied = 0;
1610 do {
1611 unsigned int len =
1612 min_t(u64, BIT_ULL(31), size - copied);
1613
1614 if (__copy_from_user((char *)relocs + copied,
1615 (char *)urelocs + copied,
1616 len)) {
1617 kvfree(relocs);
1618 err = -EFAULT;
1619 goto err;
1620 }
1621
1622 copied += len;
1623 } while (copied < size);
1624
1625 /*
1626 * As we do not update the known relocation offsets after
Chris Wilson262b6d32013-01-15 16:17:54 +00001627 * relocating (due to the complexities in lock handling),
1628 * we need to mark them as invalid now so that we force the
1629 * relocation processing next time. Just in case the target
1630 * object is evicted and then rebound into its old
1631 * presumed_offset before the next execbuffer - if that
1632 * happened we would make the mistake of assuming that the
1633 * relocations were valid.
1634 */
Chris Wilson2889caa2017-06-16 15:05:19 +01001635 user_access_begin();
1636 for (copied = 0; copied < nreloc; copied++)
1637 unsafe_put_user(-1,
1638 &urelocs[copied].presumed_offset,
1639 end_user);
1640end_user:
1641 user_access_end();
Chris Wilson262b6d32013-01-15 16:17:54 +00001642
Chris Wilson2889caa2017-06-16 15:05:19 +01001643 eb->exec[i].relocs_ptr = (uintptr_t)relocs;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001644 }
1645
Chris Wilson2889caa2017-06-16 15:05:19 +01001646 return 0;
1647
1648err:
1649 while (i--) {
1650 struct drm_i915_gem_relocation_entry *relocs =
1651 u64_to_ptr(typeof(*relocs), eb->exec[i].relocs_ptr);
1652 if (eb->exec[i].relocation_count)
1653 kvfree(relocs);
1654 }
1655 return err;
1656}
1657
1658static int eb_prefault_relocations(const struct i915_execbuffer *eb)
1659{
1660 const unsigned int count = eb->buffer_count;
1661 unsigned int i;
1662
1663 if (unlikely(i915.prefault_disable))
1664 return 0;
1665
1666 for (i = 0; i < count; i++) {
1667 int err;
1668
1669 err = check_relocations(&eb->exec[i]);
1670 if (err)
1671 return err;
1672 }
1673
1674 return 0;
1675}
1676
1677static noinline int eb_relocate_slow(struct i915_execbuffer *eb)
1678{
1679 struct drm_device *dev = &eb->i915->drm;
1680 bool have_copy = false;
1681 struct i915_vma *vma;
1682 int err = 0;
1683
1684repeat:
1685 if (signal_pending(current)) {
1686 err = -ERESTARTSYS;
1687 goto out;
1688 }
1689
1690 /* We may process another execbuffer during the unlock... */
1691 eb_reset_vmas(eb);
1692 mutex_unlock(&dev->struct_mutex);
1693
1694 /*
1695 * We take 3 passes through the slowpatch.
1696 *
1697 * 1 - we try to just prefault all the user relocation entries and
1698 * then attempt to reuse the atomic pagefault disabled fast path again.
1699 *
1700 * 2 - we copy the user entries to a local buffer here outside of the
1701 * local and allow ourselves to wait upon any rendering before
1702 * relocations
1703 *
1704 * 3 - we already have a local copy of the relocation entries, but
1705 * were interrupted (EAGAIN) whilst waiting for the objects, try again.
1706 */
1707 if (!err) {
1708 err = eb_prefault_relocations(eb);
1709 } else if (!have_copy) {
1710 err = eb_copy_relocations(eb);
1711 have_copy = err == 0;
1712 } else {
1713 cond_resched();
1714 err = 0;
1715 }
1716 if (err) {
Chris Wilson54cf91d2010-11-25 18:00:26 +00001717 mutex_lock(&dev->struct_mutex);
Chris Wilson2889caa2017-06-16 15:05:19 +01001718 goto out;
1719 }
1720
Chris Wilson8a2421b2017-06-16 15:05:22 +01001721 /* A frequent cause for EAGAIN are currently unavailable client pages */
1722 flush_workqueue(eb->i915->mm.userptr_wq);
1723
Chris Wilson2889caa2017-06-16 15:05:19 +01001724 err = i915_mutex_lock_interruptible(dev);
1725 if (err) {
1726 mutex_lock(&dev->struct_mutex);
1727 goto out;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001728 }
1729
Chris Wilson67731b82010-12-08 10:38:14 +00001730 /* reacquire the objects */
Chris Wilson2889caa2017-06-16 15:05:19 +01001731 err = eb_lookup_vmas(eb);
1732 if (err)
Chris Wilson3b96eff2013-01-08 10:53:14 +00001733 goto err;
Chris Wilson67731b82010-12-08 10:38:14 +00001734
Chris Wilson2889caa2017-06-16 15:05:19 +01001735 list_for_each_entry(vma, &eb->relocs, reloc_link) {
1736 if (!have_copy) {
1737 pagefault_disable();
1738 err = eb_relocate_vma(eb, vma);
1739 pagefault_enable();
1740 if (err)
1741 goto repeat;
1742 } else {
1743 err = eb_relocate_vma_slow(eb, vma);
1744 if (err)
1745 goto err;
1746 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001747 }
1748
Chris Wilson2889caa2017-06-16 15:05:19 +01001749 /*
1750 * Leave the user relocations as are, this is the painfully slow path,
Chris Wilson54cf91d2010-11-25 18:00:26 +00001751 * and we want to avoid the complication of dropping the lock whilst
1752 * having buffers reserved in the aperture and so causing spurious
1753 * ENOSPC for random operations.
1754 */
1755
1756err:
Chris Wilson2889caa2017-06-16 15:05:19 +01001757 if (err == -EAGAIN)
1758 goto repeat;
1759
1760out:
1761 if (have_copy) {
1762 const unsigned int count = eb->buffer_count;
1763 unsigned int i;
1764
1765 for (i = 0; i < count; i++) {
1766 const struct drm_i915_gem_exec_object2 *entry =
1767 &eb->exec[i];
1768 struct drm_i915_gem_relocation_entry *relocs;
1769
1770 if (!entry->relocation_count)
1771 continue;
1772
1773 relocs = u64_to_ptr(typeof(*relocs), entry->relocs_ptr);
1774 kvfree(relocs);
1775 }
1776 }
1777
Chris Wilsonadf27832017-07-21 15:50:36 +01001778 return err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001779}
1780
Chris Wilson2889caa2017-06-16 15:05:19 +01001781static int eb_relocate(struct i915_execbuffer *eb)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001782{
Chris Wilson2889caa2017-06-16 15:05:19 +01001783 if (eb_lookup_vmas(eb))
1784 goto slow;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001785
Chris Wilson2889caa2017-06-16 15:05:19 +01001786 /* The objects are in their final locations, apply the relocations. */
1787 if (eb->args->flags & __EXEC_HAS_RELOC) {
1788 struct i915_vma *vma;
1789
1790 list_for_each_entry(vma, &eb->relocs, reloc_link) {
1791 if (eb_relocate_vma(eb, vma))
1792 goto slow;
1793 }
1794 }
1795
1796 return 0;
1797
1798slow:
1799 return eb_relocate_slow(eb);
1800}
1801
Chris Wilson95ff7c72017-06-16 15:05:25 +01001802static void eb_export_fence(struct i915_vma *vma,
Chris Wilson2889caa2017-06-16 15:05:19 +01001803 struct drm_i915_gem_request *req,
1804 unsigned int flags)
1805{
Chris Wilson95ff7c72017-06-16 15:05:25 +01001806 struct reservation_object *resv = vma->resv;
Chris Wilson2889caa2017-06-16 15:05:19 +01001807
1808 /*
1809 * Ignore errors from failing to allocate the new fence, we can't
1810 * handle an error right now. Worst case should be missed
1811 * synchronisation leading to rendering corruption.
1812 */
1813 reservation_object_lock(resv, NULL);
1814 if (flags & EXEC_OBJECT_WRITE)
1815 reservation_object_add_excl_fence(resv, &req->fence);
1816 else if (reservation_object_reserve_shared(resv) == 0)
1817 reservation_object_add_shared_fence(resv, &req->fence);
1818 reservation_object_unlock(resv);
1819}
1820
1821static int eb_move_to_gpu(struct i915_execbuffer *eb)
1822{
1823 const unsigned int count = eb->buffer_count;
1824 unsigned int i;
1825 int err;
1826
1827 for (i = 0; i < count; i++) {
Chris Wilson7b98da62017-07-21 15:50:37 +01001828 struct drm_i915_gem_exec_object2 *entry = &eb->exec[i];
Chris Wilson2889caa2017-06-16 15:05:19 +01001829 struct i915_vma *vma = exec_to_vma(entry);
Ben Widawsky27173f12013-08-14 11:38:36 +02001830 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilson03ade512015-04-27 13:41:18 +01001831
Chris Wilson2889caa2017-06-16 15:05:19 +01001832 if (entry->flags & EXEC_OBJECT_CAPTURE) {
Chris Wilsonb0fd47a2017-04-15 10:39:02 +01001833 struct i915_gem_capture_list *capture;
1834
1835 capture = kmalloc(sizeof(*capture), GFP_KERNEL);
1836 if (unlikely(!capture))
1837 return -ENOMEM;
1838
Chris Wilson650bc632017-06-15 09:14:33 +01001839 capture->next = eb->request->capture_list;
Chris Wilsonb0fd47a2017-04-15 10:39:02 +01001840 capture->vma = vma;
Chris Wilson650bc632017-06-15 09:14:33 +01001841 eb->request->capture_list = capture;
Chris Wilsonb0fd47a2017-04-15 10:39:02 +01001842 }
1843
Chris Wilson7b98da62017-07-21 15:50:37 +01001844 if (unlikely(obj->cache_dirty && !obj->cache_coherent)) {
1845 if (i915_gem_clflush_object(obj, 0))
1846 entry->flags &= ~EXEC_OBJECT_ASYNC;
1847 }
1848
Chris Wilson2889caa2017-06-16 15:05:19 +01001849 if (entry->flags & EXEC_OBJECT_ASYNC)
1850 goto skip_flushes;
Chris Wilson77ae9952017-01-27 09:40:07 +00001851
Chris Wilson2889caa2017-06-16 15:05:19 +01001852 err = i915_gem_request_await_object
1853 (eb->request, obj, entry->flags & EXEC_OBJECT_WRITE);
1854 if (err)
1855 return err;
1856
1857skip_flushes:
1858 i915_vma_move_to_active(vma, eb->request, entry->flags);
1859 __eb_unreserve_vma(vma, entry);
1860 vma->exec_entry = NULL;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001861 }
1862
Chris Wilson2889caa2017-06-16 15:05:19 +01001863 for (i = 0; i < count; i++) {
1864 const struct drm_i915_gem_exec_object2 *entry = &eb->exec[i];
1865 struct i915_vma *vma = exec_to_vma(entry);
1866
Chris Wilson95ff7c72017-06-16 15:05:25 +01001867 eb_export_fence(vma, eb->request, entry->flags);
Chris Wilsondade2a62017-06-16 15:05:20 +01001868 if (unlikely(entry->flags & __EXEC_OBJECT_HAS_REF))
1869 i915_vma_put(vma);
Chris Wilson2889caa2017-06-16 15:05:19 +01001870 }
1871 eb->exec = NULL;
1872
Chris Wilsondcd79932016-08-18 17:16:40 +01001873 /* Unconditionally flush any chipset caches (for streaming writes). */
Chris Wilson650bc632017-06-15 09:14:33 +01001874 i915_gem_chipset_flush(eb->i915);
Daniel Vetter6ac42f42012-07-21 12:25:01 +02001875
Chris Wilsonc7fe7d22016-08-02 22:50:24 +01001876 /* Unconditionally invalidate GPU caches and TLBs. */
Chris Wilson650bc632017-06-15 09:14:33 +01001877 return eb->engine->emit_flush(eb->request, EMIT_INVALIDATE);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001878}
1879
Chris Wilson2889caa2017-06-16 15:05:19 +01001880static bool i915_gem_check_execbuffer(struct drm_i915_gem_execbuffer2 *exec)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001881{
Chris Wilson650bc632017-06-15 09:14:33 +01001882 if (exec->flags & __I915_EXEC_ILLEGAL_FLAGS)
Daniel Vettered5982e2013-01-17 22:23:36 +01001883 return false;
1884
Chris Wilson2f5945b2015-10-06 11:39:55 +01001885 /* Kernel clipping was a DRI1 misfeature */
1886 if (exec->num_cliprects || exec->cliprects_ptr)
1887 return false;
1888
1889 if (exec->DR4 == 0xffffffff) {
1890 DRM_DEBUG("UXA submitting garbage DR4, fixing up\n");
1891 exec->DR4 = 0;
1892 }
1893 if (exec->DR1 || exec->DR4)
1894 return false;
1895
1896 if ((exec->batch_start_offset | exec->batch_len) & 0x7)
1897 return false;
1898
1899 return true;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001900}
1901
Chris Wilson5cf3d282016-08-04 07:52:43 +01001902void i915_vma_move_to_active(struct i915_vma *vma,
1903 struct drm_i915_gem_request *req,
1904 unsigned int flags)
1905{
1906 struct drm_i915_gem_object *obj = vma->obj;
1907 const unsigned int idx = req->engine->id;
1908
Chris Wilson81147b02016-12-18 15:37:18 +00001909 lockdep_assert_held(&req->i915->drm.struct_mutex);
Chris Wilson5cf3d282016-08-04 07:52:43 +01001910 GEM_BUG_ON(!drm_mm_node_allocated(&vma->node));
1911
Chris Wilson2889caa2017-06-16 15:05:19 +01001912 /*
1913 * Add a reference if we're newly entering the active list.
Chris Wilsonb0decaf2016-08-04 07:52:44 +01001914 * The order in which we add operations to the retirement queue is
1915 * vital here: mark_active adds to the start of the callback list,
1916 * such that subsequent callbacks are called first. Therefore we
1917 * add the active reference first and queue for it to be dropped
1918 * *last*.
1919 */
Chris Wilsond07f0e52016-10-28 13:58:44 +01001920 if (!i915_vma_is_active(vma))
1921 obj->active_count++;
1922 i915_vma_set_active(vma, idx);
1923 i915_gem_active_set(&vma->last_read[idx], req);
1924 list_move_tail(&vma->vm_link, &vma->vm->active_list);
Chris Wilson5cf3d282016-08-04 07:52:43 +01001925
Chris Wilsone27ab732017-06-15 13:38:49 +01001926 obj->base.write_domain = 0;
Chris Wilson5cf3d282016-08-04 07:52:43 +01001927 if (flags & EXEC_OBJECT_WRITE) {
Chris Wilsone27ab732017-06-15 13:38:49 +01001928 obj->base.write_domain = I915_GEM_DOMAIN_RENDER;
1929
Chris Wilson5b8c8ae2016-11-16 19:07:04 +00001930 if (intel_fb_obj_invalidate(obj, ORIGIN_CS))
1931 i915_gem_active_set(&obj->frontbuffer_write, req);
Chris Wilson5cf3d282016-08-04 07:52:43 +01001932
Chris Wilsone27ab732017-06-15 13:38:49 +01001933 obj->base.read_domains = 0;
Chris Wilson5cf3d282016-08-04 07:52:43 +01001934 }
Chris Wilsone27ab732017-06-15 13:38:49 +01001935 obj->base.read_domains |= I915_GEM_GPU_DOMAINS;
Chris Wilson5cf3d282016-08-04 07:52:43 +01001936
Chris Wilson49ef5292016-08-18 17:17:00 +01001937 if (flags & EXEC_OBJECT_NEEDS_FENCE)
1938 i915_gem_active_set(&vma->last_fence, req);
Chris Wilson5cf3d282016-08-04 07:52:43 +01001939}
1940
Chris Wilson2889caa2017-06-16 15:05:19 +01001941static int i915_reset_gen7_sol_offsets(struct drm_i915_gem_request *req)
Eric Anholtae662d32012-01-03 09:23:29 -08001942{
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001943 u32 *cs;
1944 int i;
Eric Anholtae662d32012-01-03 09:23:29 -08001945
Chris Wilsonb5321f32016-08-02 22:50:18 +01001946 if (!IS_GEN7(req->i915) || req->engine->id != RCS) {
Daniel Vetter9d662da2014-04-24 08:09:09 +02001947 DRM_DEBUG("sol reset is gen7/rcs only\n");
1948 return -EINVAL;
1949 }
Eric Anholtae662d32012-01-03 09:23:29 -08001950
Chris Wilson2889caa2017-06-16 15:05:19 +01001951 cs = intel_ring_begin(req, 4 * 2 + 2);
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001952 if (IS_ERR(cs))
1953 return PTR_ERR(cs);
Eric Anholtae662d32012-01-03 09:23:29 -08001954
Chris Wilson2889caa2017-06-16 15:05:19 +01001955 *cs++ = MI_LOAD_REGISTER_IMM(4);
Eric Anholtae662d32012-01-03 09:23:29 -08001956 for (i = 0; i < 4; i++) {
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001957 *cs++ = i915_mmio_reg_offset(GEN7_SO_WRITE_OFFSET(i));
1958 *cs++ = 0;
Eric Anholtae662d32012-01-03 09:23:29 -08001959 }
Chris Wilson2889caa2017-06-16 15:05:19 +01001960 *cs++ = MI_NOOP;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001961 intel_ring_advance(req, cs);
Eric Anholtae662d32012-01-03 09:23:29 -08001962
1963 return 0;
1964}
1965
Chris Wilson650bc632017-06-15 09:14:33 +01001966static struct i915_vma *eb_parse(struct i915_execbuffer *eb, bool is_master)
Brad Volkin71745372014-12-11 12:13:12 -08001967{
Brad Volkin71745372014-12-11 12:13:12 -08001968 struct drm_i915_gem_object *shadow_batch_obj;
Chris Wilson17cabf52015-01-14 11:20:57 +00001969 struct i915_vma *vma;
Chris Wilson2889caa2017-06-16 15:05:19 +01001970 int err;
Brad Volkin71745372014-12-11 12:13:12 -08001971
Chris Wilson650bc632017-06-15 09:14:33 +01001972 shadow_batch_obj = i915_gem_batch_pool_get(&eb->engine->batch_pool,
1973 PAGE_ALIGN(eb->batch_len));
Brad Volkin71745372014-12-11 12:13:12 -08001974 if (IS_ERR(shadow_batch_obj))
Chris Wilson59bfa122016-08-04 16:32:31 +01001975 return ERR_CAST(shadow_batch_obj);
Brad Volkin71745372014-12-11 12:13:12 -08001976
Chris Wilson2889caa2017-06-16 15:05:19 +01001977 err = intel_engine_cmd_parser(eb->engine,
Chris Wilson650bc632017-06-15 09:14:33 +01001978 eb->batch->obj,
Chris Wilson33a051a2016-07-27 09:07:26 +01001979 shadow_batch_obj,
Chris Wilson650bc632017-06-15 09:14:33 +01001980 eb->batch_start_offset,
1981 eb->batch_len,
Chris Wilson33a051a2016-07-27 09:07:26 +01001982 is_master);
Chris Wilson2889caa2017-06-16 15:05:19 +01001983 if (err) {
1984 if (err == -EACCES) /* unhandled chained batch */
Chris Wilson058d88c2016-08-15 10:49:06 +01001985 vma = NULL;
1986 else
Chris Wilson2889caa2017-06-16 15:05:19 +01001987 vma = ERR_PTR(err);
Chris Wilson058d88c2016-08-15 10:49:06 +01001988 goto out;
1989 }
Brad Volkin71745372014-12-11 12:13:12 -08001990
Chris Wilson058d88c2016-08-15 10:49:06 +01001991 vma = i915_gem_object_ggtt_pin(shadow_batch_obj, NULL, 0, 0, 0);
1992 if (IS_ERR(vma))
1993 goto out;
Chris Wilsonde4e7832015-04-07 16:20:35 +01001994
Chris Wilson650bc632017-06-15 09:14:33 +01001995 vma->exec_entry =
Chris Wilson2889caa2017-06-16 15:05:19 +01001996 memset(&eb->exec[eb->buffer_count++],
1997 0, sizeof(*vma->exec_entry));
Chris Wilsondade2a62017-06-16 15:05:20 +01001998 vma->exec_entry->flags = __EXEC_OBJECT_HAS_PIN | __EXEC_OBJECT_HAS_REF;
Chris Wilson2889caa2017-06-16 15:05:19 +01001999 __exec_to_vma(vma->exec_entry) = (uintptr_t)i915_vma_get(vma);
Brad Volkin71745372014-12-11 12:13:12 -08002000
Chris Wilson058d88c2016-08-15 10:49:06 +01002001out:
Chris Wilsonde4e7832015-04-07 16:20:35 +01002002 i915_gem_object_unpin_pages(shadow_batch_obj);
Chris Wilson058d88c2016-08-15 10:49:06 +01002003 return vma;
Brad Volkin71745372014-12-11 12:13:12 -08002004}
Chris Wilson5c6c6002014-09-06 10:28:27 +01002005
Chris Wilsonc8659ef2017-03-02 12:25:25 +00002006static void
Chris Wilson2889caa2017-06-16 15:05:19 +01002007add_to_client(struct drm_i915_gem_request *req, struct drm_file *file)
Chris Wilsonc8659ef2017-03-02 12:25:25 +00002008{
2009 req->file_priv = file->driver_priv;
2010 list_add_tail(&req->client_link, &req->file_priv->mm.request_list);
2011}
2012
Chris Wilson2889caa2017-06-16 15:05:19 +01002013static int eb_submit(struct i915_execbuffer *eb)
Oscar Mateo78382592014-07-03 16:28:05 +01002014{
Chris Wilson2889caa2017-06-16 15:05:19 +01002015 int err;
Oscar Mateo78382592014-07-03 16:28:05 +01002016
Chris Wilson2889caa2017-06-16 15:05:19 +01002017 err = eb_move_to_gpu(eb);
2018 if (err)
2019 return err;
Oscar Mateo78382592014-07-03 16:28:05 +01002020
Chris Wilson2889caa2017-06-16 15:05:19 +01002021 err = i915_switch_context(eb->request);
2022 if (err)
2023 return err;
Oscar Mateo78382592014-07-03 16:28:05 +01002024
Chris Wilson650bc632017-06-15 09:14:33 +01002025 if (eb->args->flags & I915_EXEC_GEN7_SOL_RESET) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002026 err = i915_reset_gen7_sol_offsets(eb->request);
2027 if (err)
2028 return err;
Oscar Mateo78382592014-07-03 16:28:05 +01002029 }
2030
Chris Wilson2889caa2017-06-16 15:05:19 +01002031 err = eb->engine->emit_bb_start(eb->request,
Chris Wilson650bc632017-06-15 09:14:33 +01002032 eb->batch->node.start +
2033 eb->batch_start_offset,
2034 eb->batch_len,
Chris Wilson2889caa2017-06-16 15:05:19 +01002035 eb->batch_flags);
2036 if (err)
2037 return err;
Oscar Mateo78382592014-07-03 16:28:05 +01002038
Chris Wilson2f5945b2015-10-06 11:39:55 +01002039 return 0;
Oscar Mateo78382592014-07-03 16:28:05 +01002040}
2041
Zhao Yakuia8ebba72014-04-17 10:37:40 +08002042/**
2043 * Find one BSD ring to dispatch the corresponding BSD command.
Chris Wilsonc80ff162016-07-27 09:07:27 +01002044 * The engine index is returned.
Zhao Yakuia8ebba72014-04-17 10:37:40 +08002045 */
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002046static unsigned int
Chris Wilsonc80ff162016-07-27 09:07:27 +01002047gen8_dispatch_bsd_engine(struct drm_i915_private *dev_priv,
2048 struct drm_file *file)
Zhao Yakuia8ebba72014-04-17 10:37:40 +08002049{
Zhao Yakuia8ebba72014-04-17 10:37:40 +08002050 struct drm_i915_file_private *file_priv = file->driver_priv;
2051
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002052 /* Check whether the file_priv has already selected one ring. */
Joonas Lahtinen6f633402016-09-01 14:58:21 +03002053 if ((int)file_priv->bsd_engine < 0)
2054 file_priv->bsd_engine = atomic_fetch_xor(1,
2055 &dev_priv->mm.bsd_engine_dispatch_index);
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002056
Chris Wilsonc80ff162016-07-27 09:07:27 +01002057 return file_priv->bsd_engine;
Chris Wilsond23db882014-05-23 08:48:08 +02002058}
2059
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002060#define I915_USER_RINGS (4)
2061
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00002062static const enum intel_engine_id user_ring_map[I915_USER_RINGS + 1] = {
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002063 [I915_EXEC_DEFAULT] = RCS,
2064 [I915_EXEC_RENDER] = RCS,
2065 [I915_EXEC_BLT] = BCS,
2066 [I915_EXEC_BSD] = VCS,
2067 [I915_EXEC_VEBOX] = VECS
2068};
2069
Dave Gordonf8ca0c02016-07-20 18:16:07 +01002070static struct intel_engine_cs *
2071eb_select_engine(struct drm_i915_private *dev_priv,
2072 struct drm_file *file,
2073 struct drm_i915_gem_execbuffer2 *args)
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002074{
2075 unsigned int user_ring_id = args->flags & I915_EXEC_RING_MASK;
Dave Gordonf8ca0c02016-07-20 18:16:07 +01002076 struct intel_engine_cs *engine;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002077
2078 if (user_ring_id > I915_USER_RINGS) {
2079 DRM_DEBUG("execbuf with unknown ring: %u\n", user_ring_id);
Dave Gordonf8ca0c02016-07-20 18:16:07 +01002080 return NULL;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002081 }
2082
2083 if ((user_ring_id != I915_EXEC_BSD) &&
2084 ((args->flags & I915_EXEC_BSD_MASK) != 0)) {
2085 DRM_DEBUG("execbuf with non bsd ring but with invalid "
2086 "bsd dispatch flags: %d\n", (int)(args->flags));
Dave Gordonf8ca0c02016-07-20 18:16:07 +01002087 return NULL;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002088 }
2089
2090 if (user_ring_id == I915_EXEC_BSD && HAS_BSD2(dev_priv)) {
2091 unsigned int bsd_idx = args->flags & I915_EXEC_BSD_MASK;
2092
2093 if (bsd_idx == I915_EXEC_BSD_DEFAULT) {
Chris Wilsonc80ff162016-07-27 09:07:27 +01002094 bsd_idx = gen8_dispatch_bsd_engine(dev_priv, file);
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002095 } else if (bsd_idx >= I915_EXEC_BSD_RING1 &&
2096 bsd_idx <= I915_EXEC_BSD_RING2) {
Tvrtko Ursulind9da6aa2016-01-27 13:41:09 +00002097 bsd_idx >>= I915_EXEC_BSD_SHIFT;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002098 bsd_idx--;
2099 } else {
2100 DRM_DEBUG("execbuf with unknown bsd ring: %u\n",
2101 bsd_idx);
Dave Gordonf8ca0c02016-07-20 18:16:07 +01002102 return NULL;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002103 }
2104
Akash Goel3b3f1652016-10-13 22:44:48 +05302105 engine = dev_priv->engine[_VCS(bsd_idx)];
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002106 } else {
Akash Goel3b3f1652016-10-13 22:44:48 +05302107 engine = dev_priv->engine[user_ring_map[user_ring_id]];
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002108 }
2109
Akash Goel3b3f1652016-10-13 22:44:48 +05302110 if (!engine) {
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002111 DRM_DEBUG("execbuf with invalid ring: %u\n", user_ring_id);
Dave Gordonf8ca0c02016-07-20 18:16:07 +01002112 return NULL;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002113 }
2114
Dave Gordonf8ca0c02016-07-20 18:16:07 +01002115 return engine;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002116}
2117
Eric Anholtae662d32012-01-03 09:23:29 -08002118static int
Chris Wilson650bc632017-06-15 09:14:33 +01002119i915_gem_do_execbuffer(struct drm_device *dev,
Chris Wilson54cf91d2010-11-25 18:00:26 +00002120 struct drm_file *file,
2121 struct drm_i915_gem_execbuffer2 *args,
Ben Widawsky41bde552013-12-06 14:11:21 -08002122 struct drm_i915_gem_exec_object2 *exec)
Chris Wilson54cf91d2010-11-25 18:00:26 +00002123{
Chris Wilson650bc632017-06-15 09:14:33 +01002124 struct i915_execbuffer eb;
Chris Wilsonfec04452017-01-27 09:40:08 +00002125 struct dma_fence *in_fence = NULL;
2126 struct sync_file *out_fence = NULL;
2127 int out_fence_fd = -1;
Chris Wilson2889caa2017-06-16 15:05:19 +01002128 int err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002129
Chris Wilson2889caa2017-06-16 15:05:19 +01002130 BUILD_BUG_ON(__EXEC_OBJECT_INTERNAL_FLAGS &
2131 ~__EXEC_OBJECT_UNKNOWN_FLAGS);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002132
Chris Wilson650bc632017-06-15 09:14:33 +01002133 eb.i915 = to_i915(dev);
2134 eb.file = file;
2135 eb.args = args;
Chris Wilson7dd4f672017-06-16 15:05:24 +01002136 if (DBG_FORCE_RELOC || !(args->flags & I915_EXEC_NO_RELOC))
Chris Wilson2889caa2017-06-16 15:05:19 +01002137 args->flags |= __EXEC_HAS_RELOC;
Chris Wilson650bc632017-06-15 09:14:33 +01002138 eb.exec = exec;
Chris Wilson2889caa2017-06-16 15:05:19 +01002139 eb.ctx = NULL;
2140 eb.invalid_flags = __EXEC_OBJECT_UNKNOWN_FLAGS;
2141 if (USES_FULL_PPGTT(eb.i915))
2142 eb.invalid_flags |= EXEC_OBJECT_NEEDS_GTT;
Chris Wilson650bc632017-06-15 09:14:33 +01002143 reloc_cache_init(&eb.reloc_cache, eb.i915);
2144
Chris Wilson2889caa2017-06-16 15:05:19 +01002145 eb.buffer_count = args->buffer_count;
Chris Wilson650bc632017-06-15 09:14:33 +01002146 eb.batch_start_offset = args->batch_start_offset;
2147 eb.batch_len = args->batch_len;
2148
Chris Wilson2889caa2017-06-16 15:05:19 +01002149 eb.batch_flags = 0;
Chris Wilsond7d4eed2012-10-17 12:09:54 +01002150 if (args->flags & I915_EXEC_SECURE) {
Daniel Vetterb3ac9f22016-06-21 10:54:20 +02002151 if (!drm_is_current_master(file) || !capable(CAP_SYS_ADMIN))
Chris Wilsond7d4eed2012-10-17 12:09:54 +01002152 return -EPERM;
2153
Chris Wilson2889caa2017-06-16 15:05:19 +01002154 eb.batch_flags |= I915_DISPATCH_SECURE;
Chris Wilsond7d4eed2012-10-17 12:09:54 +01002155 }
Daniel Vetterb45305f2012-12-17 16:21:27 +01002156 if (args->flags & I915_EXEC_IS_PINNED)
Chris Wilson2889caa2017-06-16 15:05:19 +01002157 eb.batch_flags |= I915_DISPATCH_PINNED;
Chris Wilsond7d4eed2012-10-17 12:09:54 +01002158
Chris Wilson650bc632017-06-15 09:14:33 +01002159 eb.engine = eb_select_engine(eb.i915, file, args);
2160 if (!eb.engine)
Dave Gordonf8ca0c02016-07-20 18:16:07 +01002161 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002162
Abdiel Janulguea9ed33c2015-07-01 10:12:23 +03002163 if (args->flags & I915_EXEC_RESOURCE_STREAMER) {
Chris Wilson650bc632017-06-15 09:14:33 +01002164 if (!HAS_RESOURCE_STREAMER(eb.i915)) {
Abdiel Janulguea9ed33c2015-07-01 10:12:23 +03002165 DRM_DEBUG("RS is only allowed for Haswell, Gen8 and above\n");
2166 return -EINVAL;
2167 }
Chris Wilson650bc632017-06-15 09:14:33 +01002168 if (eb.engine->id != RCS) {
Abdiel Janulguea9ed33c2015-07-01 10:12:23 +03002169 DRM_DEBUG("RS is not available on %s\n",
Chris Wilson650bc632017-06-15 09:14:33 +01002170 eb.engine->name);
Abdiel Janulguea9ed33c2015-07-01 10:12:23 +03002171 return -EINVAL;
2172 }
2173
Chris Wilson2889caa2017-06-16 15:05:19 +01002174 eb.batch_flags |= I915_DISPATCH_RS;
Abdiel Janulguea9ed33c2015-07-01 10:12:23 +03002175 }
2176
Chris Wilsonfec04452017-01-27 09:40:08 +00002177 if (args->flags & I915_EXEC_FENCE_IN) {
2178 in_fence = sync_file_get_fence(lower_32_bits(args->rsvd2));
Daniele Ceraolo Spurio4a04e372017-02-03 14:45:29 -08002179 if (!in_fence)
2180 return -EINVAL;
Chris Wilsonfec04452017-01-27 09:40:08 +00002181 }
2182
2183 if (args->flags & I915_EXEC_FENCE_OUT) {
2184 out_fence_fd = get_unused_fd_flags(O_CLOEXEC);
2185 if (out_fence_fd < 0) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002186 err = out_fence_fd;
Daniele Ceraolo Spurio4a04e372017-02-03 14:45:29 -08002187 goto err_in_fence;
Chris Wilsonfec04452017-01-27 09:40:08 +00002188 }
2189 }
2190
Chris Wilson4ec654b2017-06-29 16:04:25 +01002191 err = eb_create(&eb);
2192 if (err)
2193 goto err_out_fence;
2194
2195 GEM_BUG_ON(!eb.lut_size);
Chris Wilson2889caa2017-06-16 15:05:19 +01002196
2197 /*
2198 * Take a local wakeref for preparing to dispatch the execbuf as
Chris Wilson67d97da2016-07-04 08:08:31 +01002199 * we expect to access the hardware fairly frequently in the
2200 * process. Upon first dispatch, we acquire another prolonged
2201 * wakeref that we hold until the GPU has been idle for at least
2202 * 100ms.
2203 */
Chris Wilson650bc632017-06-15 09:14:33 +01002204 intel_runtime_pm_get(eb.i915);
Chris Wilson2889caa2017-06-16 15:05:19 +01002205 err = i915_mutex_lock_interruptible(dev);
2206 if (err)
2207 goto err_rpm;
Paulo Zanonif65c9162013-11-27 18:20:34 -02002208
Chris Wilson2889caa2017-06-16 15:05:19 +01002209 err = eb_select_context(&eb);
2210 if (unlikely(err))
2211 goto err_unlock;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002212
Chris Wilson2889caa2017-06-16 15:05:19 +01002213 err = eb_relocate(&eb);
Chris Wilsonadf27832017-07-21 15:50:36 +01002214 if (err) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002215 /*
2216 * If the user expects the execobject.offset and
2217 * reloc.presumed_offset to be an exact match,
2218 * as for using NO_RELOC, then we cannot update
2219 * the execobject.offset until we have completed
2220 * relocation.
2221 */
2222 args->flags &= ~__EXEC_HAS_RELOC;
Chris Wilson2889caa2017-06-16 15:05:19 +01002223 goto err_vma;
Chris Wilsonadf27832017-07-21 15:50:36 +01002224 }
Ben Widawsky41bde552013-12-06 14:11:21 -08002225
Chris Wilson2889caa2017-06-16 15:05:19 +01002226 if (unlikely(eb.batch->exec_entry->flags & EXEC_OBJECT_WRITE)) {
Daniel Vetterff240192012-01-31 21:08:14 +01002227 DRM_DEBUG("Attempting to use self-modifying batch buffer\n");
Chris Wilson2889caa2017-06-16 15:05:19 +01002228 err = -EINVAL;
2229 goto err_vma;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002230 }
Chris Wilson650bc632017-06-15 09:14:33 +01002231 if (eb.batch_start_offset > eb.batch->size ||
2232 eb.batch_len > eb.batch->size - eb.batch_start_offset) {
Chris Wilson0b537272016-08-18 17:17:12 +01002233 DRM_DEBUG("Attempting to use out-of-bounds batch\n");
Chris Wilson2889caa2017-06-16 15:05:19 +01002234 err = -EINVAL;
2235 goto err_vma;
Chris Wilson0b537272016-08-18 17:17:12 +01002236 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00002237
Chris Wilson650bc632017-06-15 09:14:33 +01002238 if (eb.engine->needs_cmd_parser && eb.batch_len) {
Chris Wilson59bfa122016-08-04 16:32:31 +01002239 struct i915_vma *vma;
Rebecca N. Palmerc7c73722015-05-08 14:26:50 +01002240
Chris Wilson650bc632017-06-15 09:14:33 +01002241 vma = eb_parse(&eb, drm_is_current_master(file));
Chris Wilson59bfa122016-08-04 16:32:31 +01002242 if (IS_ERR(vma)) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002243 err = PTR_ERR(vma);
2244 goto err_vma;
Brad Volkin78a42372014-12-11 12:13:09 -08002245 }
Chris Wilson17cabf52015-01-14 11:20:57 +00002246
Chris Wilson59bfa122016-08-04 16:32:31 +01002247 if (vma) {
Rebecca N. Palmerc7c73722015-05-08 14:26:50 +01002248 /*
2249 * Batch parsed and accepted:
2250 *
2251 * Set the DISPATCH_SECURE bit to remove the NON_SECURE
2252 * bit from MI_BATCH_BUFFER_START commands issued in
2253 * the dispatch_execbuffer implementations. We
2254 * specifically don't want that set on batches the
2255 * command parser has accepted.
2256 */
Chris Wilson2889caa2017-06-16 15:05:19 +01002257 eb.batch_flags |= I915_DISPATCH_SECURE;
Chris Wilson650bc632017-06-15 09:14:33 +01002258 eb.batch_start_offset = 0;
2259 eb.batch = vma;
Rebecca N. Palmerc7c73722015-05-08 14:26:50 +01002260 }
Brad Volkin351e3db2014-02-18 10:15:46 -08002261 }
2262
Chris Wilson650bc632017-06-15 09:14:33 +01002263 if (eb.batch_len == 0)
2264 eb.batch_len = eb.batch->size - eb.batch_start_offset;
Brad Volkin78a42372014-12-11 12:13:09 -08002265
Chris Wilson2889caa2017-06-16 15:05:19 +01002266 /*
2267 * snb/ivb/vlv conflate the "batch in ppgtt" bit with the "non-secure
Chris Wilsond7d4eed2012-10-17 12:09:54 +01002268 * batch" bit. Hence we need to pin secure batches into the global gtt.
Ben Widawsky28cf5412013-11-02 21:07:26 -07002269 * hsw should have this fixed, but bdw mucks it up again. */
Chris Wilson2889caa2017-06-16 15:05:19 +01002270 if (eb.batch_flags & I915_DISPATCH_SECURE) {
Chris Wilson058d88c2016-08-15 10:49:06 +01002271 struct i915_vma *vma;
Chris Wilson59bfa122016-08-04 16:32:31 +01002272
Daniel Vetterda51a1e2014-08-11 12:08:58 +02002273 /*
2274 * So on first glance it looks freaky that we pin the batch here
2275 * outside of the reservation loop. But:
2276 * - The batch is already pinned into the relevant ppgtt, so we
2277 * already have the backing storage fully allocated.
2278 * - No other BO uses the global gtt (well contexts, but meh),
Yannick Guerrinifd0753c2015-02-28 17:20:41 +01002279 * so we don't really have issues with multiple objects not
Daniel Vetterda51a1e2014-08-11 12:08:58 +02002280 * fitting due to fragmentation.
2281 * So this is actually safe.
2282 */
Chris Wilson2889caa2017-06-16 15:05:19 +01002283 vma = i915_gem_object_ggtt_pin(eb.batch->obj, NULL, 0, 0, 0);
Chris Wilson058d88c2016-08-15 10:49:06 +01002284 if (IS_ERR(vma)) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002285 err = PTR_ERR(vma);
2286 goto err_vma;
Chris Wilson058d88c2016-08-15 10:49:06 +01002287 }
Chris Wilsond7d4eed2012-10-17 12:09:54 +01002288
Chris Wilson650bc632017-06-15 09:14:33 +01002289 eb.batch = vma;
Chris Wilson59bfa122016-08-04 16:32:31 +01002290 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00002291
Chris Wilson7dd4f672017-06-16 15:05:24 +01002292 /* All GPU relocation batches must be submitted prior to the user rq */
2293 GEM_BUG_ON(eb.reloc_cache.rq);
2294
John Harrison0c8dac82015-05-29 17:43:25 +01002295 /* Allocate a request for this batch buffer nice and early. */
Chris Wilson650bc632017-06-15 09:14:33 +01002296 eb.request = i915_gem_request_alloc(eb.engine, eb.ctx);
2297 if (IS_ERR(eb.request)) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002298 err = PTR_ERR(eb.request);
John Harrison0c8dac82015-05-29 17:43:25 +01002299 goto err_batch_unpin;
Dave Gordon26827082016-01-19 19:02:53 +00002300 }
John Harrison0c8dac82015-05-29 17:43:25 +01002301
Chris Wilsonfec04452017-01-27 09:40:08 +00002302 if (in_fence) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002303 err = i915_gem_request_await_dma_fence(eb.request, in_fence);
2304 if (err < 0)
Chris Wilsonfec04452017-01-27 09:40:08 +00002305 goto err_request;
2306 }
2307
2308 if (out_fence_fd != -1) {
Chris Wilson650bc632017-06-15 09:14:33 +01002309 out_fence = sync_file_create(&eb.request->fence);
Chris Wilsonfec04452017-01-27 09:40:08 +00002310 if (!out_fence) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002311 err = -ENOMEM;
Chris Wilsonfec04452017-01-27 09:40:08 +00002312 goto err_request;
2313 }
2314 }
2315
Chris Wilson2889caa2017-06-16 15:05:19 +01002316 /*
2317 * Whilst this request exists, batch_obj will be on the
Chris Wilson17f298cf2016-08-10 13:41:46 +01002318 * active_list, and so will hold the active reference. Only when this
2319 * request is retired will the the batch_obj be moved onto the
2320 * inactive_list and lose its active reference. Hence we do not need
2321 * to explicitly hold another reference here.
2322 */
Chris Wilson650bc632017-06-15 09:14:33 +01002323 eb.request->batch = eb.batch;
Chris Wilson17f298cf2016-08-10 13:41:46 +01002324
Chris Wilson2889caa2017-06-16 15:05:19 +01002325 trace_i915_gem_request_queue(eb.request, eb.batch_flags);
2326 err = eb_submit(&eb);
Chris Wilsonaa9b7812016-04-13 17:35:15 +01002327err_request:
Chris Wilson2889caa2017-06-16 15:05:19 +01002328 __i915_add_request(eb.request, err == 0);
Chris Wilson650bc632017-06-15 09:14:33 +01002329 add_to_client(eb.request, file);
Chris Wilsonc8659ef2017-03-02 12:25:25 +00002330
Chris Wilsonfec04452017-01-27 09:40:08 +00002331 if (out_fence) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002332 if (err == 0) {
Chris Wilsonfec04452017-01-27 09:40:08 +00002333 fd_install(out_fence_fd, out_fence->file);
2334 args->rsvd2 &= GENMASK_ULL(0, 31); /* keep in-fence */
2335 args->rsvd2 |= (u64)out_fence_fd << 32;
2336 out_fence_fd = -1;
2337 } else {
2338 fput(out_fence->file);
2339 }
2340 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00002341
John Harrison0c8dac82015-05-29 17:43:25 +01002342err_batch_unpin:
Chris Wilson2889caa2017-06-16 15:05:19 +01002343 if (eb.batch_flags & I915_DISPATCH_SECURE)
Chris Wilson650bc632017-06-15 09:14:33 +01002344 i915_vma_unpin(eb.batch);
Chris Wilson2889caa2017-06-16 15:05:19 +01002345err_vma:
2346 if (eb.exec)
2347 eb_release_vmas(&eb);
2348 i915_gem_context_put(eb.ctx);
2349err_unlock:
Chris Wilson54cf91d2010-11-25 18:00:26 +00002350 mutex_unlock(&dev->struct_mutex);
Chris Wilson2889caa2017-06-16 15:05:19 +01002351err_rpm:
Chris Wilson650bc632017-06-15 09:14:33 +01002352 intel_runtime_pm_put(eb.i915);
Chris Wilson2889caa2017-06-16 15:05:19 +01002353 eb_destroy(&eb);
Chris Wilson4ec654b2017-06-29 16:04:25 +01002354err_out_fence:
Chris Wilsonfec04452017-01-27 09:40:08 +00002355 if (out_fence_fd != -1)
2356 put_unused_fd(out_fence_fd);
Daniele Ceraolo Spurio4a04e372017-02-03 14:45:29 -08002357err_in_fence:
Chris Wilsonfec04452017-01-27 09:40:08 +00002358 dma_fence_put(in_fence);
Chris Wilson2889caa2017-06-16 15:05:19 +01002359 return err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002360}
2361
2362/*
2363 * Legacy execbuffer just creates an exec2 list from the original exec object
2364 * list array and passes it to the real function.
2365 */
2366int
2367i915_gem_execbuffer(struct drm_device *dev, void *data,
2368 struct drm_file *file)
2369{
Chris Wilson2889caa2017-06-16 15:05:19 +01002370 const size_t sz = sizeof(struct drm_i915_gem_exec_object2);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002371 struct drm_i915_gem_execbuffer *args = data;
2372 struct drm_i915_gem_execbuffer2 exec2;
2373 struct drm_i915_gem_exec_object *exec_list = NULL;
2374 struct drm_i915_gem_exec_object2 *exec2_list = NULL;
Chris Wilson2889caa2017-06-16 15:05:19 +01002375 unsigned int i;
2376 int err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002377
Chris Wilson2889caa2017-06-16 15:05:19 +01002378 if (args->buffer_count < 1 || args->buffer_count > SIZE_MAX / sz - 1) {
2379 DRM_DEBUG("execbuf2 with %d buffers\n", args->buffer_count);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002380 return -EINVAL;
2381 }
2382
Chris Wilson2889caa2017-06-16 15:05:19 +01002383 exec2.buffers_ptr = args->buffers_ptr;
2384 exec2.buffer_count = args->buffer_count;
2385 exec2.batch_start_offset = args->batch_start_offset;
2386 exec2.batch_len = args->batch_len;
2387 exec2.DR1 = args->DR1;
2388 exec2.DR4 = args->DR4;
2389 exec2.num_cliprects = args->num_cliprects;
2390 exec2.cliprects_ptr = args->cliprects_ptr;
2391 exec2.flags = I915_EXEC_RENDER;
2392 i915_execbuffer2_set_context_id(exec2, 0);
2393
2394 if (!i915_gem_check_execbuffer(&exec2))
2395 return -EINVAL;
2396
Chris Wilson54cf91d2010-11-25 18:00:26 +00002397 /* Copy in the exec list from userland */
Chris Wilson2889caa2017-06-16 15:05:19 +01002398 exec_list = kvmalloc_array(args->buffer_count, sizeof(*exec_list),
2399 __GFP_NOWARN | GFP_TEMPORARY);
2400 exec2_list = kvmalloc_array(args->buffer_count + 1, sz,
2401 __GFP_NOWARN | GFP_TEMPORARY);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002402 if (exec_list == NULL || exec2_list == NULL) {
Daniel Vetterff240192012-01-31 21:08:14 +01002403 DRM_DEBUG("Failed to allocate exec list for %d buffers\n",
Chris Wilson54cf91d2010-11-25 18:00:26 +00002404 args->buffer_count);
Michal Hocko20981052017-05-17 14:23:12 +02002405 kvfree(exec_list);
2406 kvfree(exec2_list);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002407 return -ENOMEM;
2408 }
Chris Wilson2889caa2017-06-16 15:05:19 +01002409 err = copy_from_user(exec_list,
Gustavo Padovan3ed605b2016-04-26 12:32:27 -03002410 u64_to_user_ptr(args->buffers_ptr),
Chris Wilson54cf91d2010-11-25 18:00:26 +00002411 sizeof(*exec_list) * args->buffer_count);
Chris Wilson2889caa2017-06-16 15:05:19 +01002412 if (err) {
Daniel Vetterff240192012-01-31 21:08:14 +01002413 DRM_DEBUG("copy %d exec entries failed %d\n",
Chris Wilson2889caa2017-06-16 15:05:19 +01002414 args->buffer_count, err);
Michal Hocko20981052017-05-17 14:23:12 +02002415 kvfree(exec_list);
2416 kvfree(exec2_list);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002417 return -EFAULT;
2418 }
2419
2420 for (i = 0; i < args->buffer_count; i++) {
2421 exec2_list[i].handle = exec_list[i].handle;
2422 exec2_list[i].relocation_count = exec_list[i].relocation_count;
2423 exec2_list[i].relocs_ptr = exec_list[i].relocs_ptr;
2424 exec2_list[i].alignment = exec_list[i].alignment;
2425 exec2_list[i].offset = exec_list[i].offset;
Tvrtko Ursulinf0836b72016-11-16 08:55:32 +00002426 if (INTEL_GEN(to_i915(dev)) < 4)
Chris Wilson54cf91d2010-11-25 18:00:26 +00002427 exec2_list[i].flags = EXEC_OBJECT_NEEDS_FENCE;
2428 else
2429 exec2_list[i].flags = 0;
2430 }
2431
Chris Wilson2889caa2017-06-16 15:05:19 +01002432 err = i915_gem_do_execbuffer(dev, file, &exec2, exec2_list);
2433 if (exec2.flags & __EXEC_HAS_RELOC) {
Chris Wilson9aab8bf2014-05-23 10:45:52 +01002434 struct drm_i915_gem_exec_object __user *user_exec_list =
Gustavo Padovan3ed605b2016-04-26 12:32:27 -03002435 u64_to_user_ptr(args->buffers_ptr);
Chris Wilson9aab8bf2014-05-23 10:45:52 +01002436
Chris Wilson54cf91d2010-11-25 18:00:26 +00002437 /* Copy the new buffer offsets back to the user's exec list. */
Chris Wilson9aab8bf2014-05-23 10:45:52 +01002438 for (i = 0; i < args->buffer_count; i++) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002439 if (!(exec2_list[i].offset & UPDATE))
2440 continue;
2441
Michał Winiarski934acce2015-12-29 18:24:52 +01002442 exec2_list[i].offset =
Chris Wilson2889caa2017-06-16 15:05:19 +01002443 gen8_canonical_addr(exec2_list[i].offset & PIN_OFFSET_MASK);
2444 exec2_list[i].offset &= PIN_OFFSET_MASK;
2445 if (__copy_to_user(&user_exec_list[i].offset,
2446 &exec2_list[i].offset,
2447 sizeof(user_exec_list[i].offset)))
Chris Wilson9aab8bf2014-05-23 10:45:52 +01002448 break;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002449 }
2450 }
2451
Michal Hocko20981052017-05-17 14:23:12 +02002452 kvfree(exec_list);
2453 kvfree(exec2_list);
Chris Wilson2889caa2017-06-16 15:05:19 +01002454 return err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002455}
2456
2457int
2458i915_gem_execbuffer2(struct drm_device *dev, void *data,
2459 struct drm_file *file)
2460{
Chris Wilson2889caa2017-06-16 15:05:19 +01002461 const size_t sz = sizeof(struct drm_i915_gem_exec_object2);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002462 struct drm_i915_gem_execbuffer2 *args = data;
Chris Wilson2889caa2017-06-16 15:05:19 +01002463 struct drm_i915_gem_exec_object2 *exec2_list;
2464 int err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002465
Chris Wilson2889caa2017-06-16 15:05:19 +01002466 if (args->buffer_count < 1 || args->buffer_count > SIZE_MAX / sz - 1) {
Daniel Vetterff240192012-01-31 21:08:14 +01002467 DRM_DEBUG("execbuf2 with %d buffers\n", args->buffer_count);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002468 return -EINVAL;
2469 }
2470
Chris Wilson2889caa2017-06-16 15:05:19 +01002471 if (!i915_gem_check_execbuffer(args))
2472 return -EINVAL;
2473
2474 /* Allocate an extra slot for use by the command parser */
2475 exec2_list = kvmalloc_array(args->buffer_count + 1, sz,
2476 __GFP_NOWARN | GFP_TEMPORARY);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002477 if (exec2_list == NULL) {
Daniel Vetterff240192012-01-31 21:08:14 +01002478 DRM_DEBUG("Failed to allocate exec list for %d buffers\n",
Chris Wilson54cf91d2010-11-25 18:00:26 +00002479 args->buffer_count);
2480 return -ENOMEM;
2481 }
Chris Wilson2889caa2017-06-16 15:05:19 +01002482 if (copy_from_user(exec2_list,
2483 u64_to_user_ptr(args->buffers_ptr),
2484 sizeof(*exec2_list) * args->buffer_count)) {
2485 DRM_DEBUG("copy %d exec entries failed\n", args->buffer_count);
Michal Hocko20981052017-05-17 14:23:12 +02002486 kvfree(exec2_list);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002487 return -EFAULT;
2488 }
2489
Chris Wilson2889caa2017-06-16 15:05:19 +01002490 err = i915_gem_do_execbuffer(dev, file, args, exec2_list);
Chris Wilson9aab8bf2014-05-23 10:45:52 +01002491
Chris Wilson2889caa2017-06-16 15:05:19 +01002492 /*
2493 * Now that we have begun execution of the batchbuffer, we ignore
2494 * any new error after this point. Also given that we have already
2495 * updated the associated relocations, we try to write out the current
2496 * object locations irrespective of any error.
2497 */
2498 if (args->flags & __EXEC_HAS_RELOC) {
2499 struct drm_i915_gem_exec_object2 __user *user_exec_list =
2500 u64_to_user_ptr(args->buffers_ptr);
2501 unsigned int i;
2502
2503 /* Copy the new buffer offsets back to the user's exec list. */
2504 user_access_begin();
Chris Wilson9aab8bf2014-05-23 10:45:52 +01002505 for (i = 0; i < args->buffer_count; i++) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002506 if (!(exec2_list[i].offset & UPDATE))
2507 continue;
2508
Michał Winiarski934acce2015-12-29 18:24:52 +01002509 exec2_list[i].offset =
Chris Wilson2889caa2017-06-16 15:05:19 +01002510 gen8_canonical_addr(exec2_list[i].offset & PIN_OFFSET_MASK);
2511 unsafe_put_user(exec2_list[i].offset,
2512 &user_exec_list[i].offset,
2513 end_user);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002514 }
Chris Wilson2889caa2017-06-16 15:05:19 +01002515end_user:
2516 user_access_end();
Chris Wilson54cf91d2010-11-25 18:00:26 +00002517 }
2518
Chris Wilson2889caa2017-06-16 15:05:19 +01002519 args->flags &= ~__I915_EXEC_UNKNOWN_FLAGS;
Michal Hocko20981052017-05-17 14:23:12 +02002520 kvfree(exec2_list);
Chris Wilson2889caa2017-06-16 15:05:19 +01002521 return err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002522}