blob: 3d74f3a27c130815b1f51f3c17a3c2fc085f0b51 [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>
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +010035#include <drm/drm_syncobj.h>
Chris Wilson54cf91d2010-11-25 18:00:26 +000036#include <drm/i915_drm.h>
Chris Wilsonad778f82016-08-04 16:32:42 +010037
Chris Wilson54cf91d2010-11-25 18:00:26 +000038#include "i915_drv.h"
Chris Wilson57822dc2017-02-22 11:40:48 +000039#include "i915_gem_clflush.h"
Chris Wilson54cf91d2010-11-25 18:00:26 +000040#include "i915_trace.h"
41#include "intel_drv.h"
Chris Wilson5d723d72016-08-04 16:32:35 +010042#include "intel_frontbuffer.h"
Chris Wilson54cf91d2010-11-25 18:00:26 +000043
Chris Wilson7dd4f672017-06-16 15:05:24 +010044enum {
45 FORCE_CPU_RELOC = 1,
46 FORCE_GTT_RELOC,
47 FORCE_GPU_RELOC,
48#define DBG_FORCE_RELOC 0 /* choose one of the above! */
49};
Chris Wilsond50415c2016-08-18 17:16:52 +010050
Chris Wilsondade2a62017-06-16 15:05:20 +010051#define __EXEC_OBJECT_HAS_REF BIT(31)
52#define __EXEC_OBJECT_HAS_PIN BIT(30)
53#define __EXEC_OBJECT_HAS_FENCE BIT(29)
54#define __EXEC_OBJECT_NEEDS_MAP BIT(28)
55#define __EXEC_OBJECT_NEEDS_BIAS BIT(27)
56#define __EXEC_OBJECT_INTERNAL_FLAGS (~0u << 27) /* all of the above */
Chris Wilson2889caa2017-06-16 15:05:19 +010057#define __EXEC_OBJECT_RESERVED (__EXEC_OBJECT_HAS_PIN | __EXEC_OBJECT_HAS_FENCE)
58
59#define __EXEC_HAS_RELOC BIT(31)
60#define __EXEC_VALIDATED BIT(30)
61#define UPDATE PIN_OFFSET_FIXED
Chris Wilsond23db882014-05-23 08:48:08 +020062
63#define BATCH_OFFSET_BIAS (256*1024)
Chris Wilsona415d352013-11-26 11:23:15 +000064
Chris Wilson650bc632017-06-15 09:14:33 +010065#define __I915_EXEC_ILLEGAL_FLAGS \
66 (__I915_EXEC_UNKNOWN_FLAGS | I915_EXEC_CONSTANTS_MASK)
Chris Wilson5b043f42016-08-02 22:50:38 +010067
Chris Wilson2889caa2017-06-16 15:05:19 +010068/**
69 * DOC: User command execution
70 *
71 * Userspace submits commands to be executed on the GPU as an instruction
72 * stream within a GEM object we call a batchbuffer. This instructions may
73 * refer to other GEM objects containing auxiliary state such as kernels,
74 * samplers, render targets and even secondary batchbuffers. Userspace does
75 * not know where in the GPU memory these objects reside and so before the
76 * batchbuffer is passed to the GPU for execution, those addresses in the
77 * batchbuffer and auxiliary objects are updated. This is known as relocation,
78 * or patching. To try and avoid having to relocate each object on the next
79 * execution, userspace is told the location of those objects in this pass,
80 * but this remains just a hint as the kernel may choose a new location for
81 * any object in the future.
82 *
83 * Processing an execbuf ioctl is conceptually split up into a few phases.
84 *
85 * 1. Validation - Ensure all the pointers, handles and flags are valid.
86 * 2. Reservation - Assign GPU address space for every object
87 * 3. Relocation - Update any addresses to point to the final locations
88 * 4. Serialisation - Order the request with respect to its dependencies
89 * 5. Construction - Construct a request to execute the batchbuffer
90 * 6. Submission (at some point in the future execution)
91 *
92 * Reserving resources for the execbuf is the most complicated phase. We
93 * neither want to have to migrate the object in the address space, nor do
94 * we want to have to update any relocations pointing to this object. Ideally,
95 * we want to leave the object where it is and for all the existing relocations
96 * to match. If the object is given a new address, or if userspace thinks the
97 * object is elsewhere, we have to parse all the relocation entries and update
98 * the addresses. Userspace can set the I915_EXEC_NORELOC flag to hint that
99 * all the target addresses in all of its objects match the value in the
100 * relocation entries and that they all match the presumed offsets given by the
101 * list of execbuffer objects. Using this knowledge, we know that if we haven't
102 * moved any buffers, all the relocation entries are valid and we can skip
103 * the update. (If userspace is wrong, the likely outcome is an impromptu GPU
104 * hang.) The requirement for using I915_EXEC_NO_RELOC are:
105 *
106 * The addresses written in the objects must match the corresponding
107 * reloc.presumed_offset which in turn must match the corresponding
108 * execobject.offset.
109 *
110 * Any render targets written to in the batch must be flagged with
111 * EXEC_OBJECT_WRITE.
112 *
113 * To avoid stalling, execobject.offset should match the current
114 * address of that object within the active context.
115 *
116 * The reservation is done is multiple phases. First we try and keep any
117 * object already bound in its current location - so as long as meets the
118 * constraints imposed by the new execbuffer. Any object left unbound after the
119 * first pass is then fitted into any available idle space. If an object does
120 * not fit, all objects are removed from the reservation and the process rerun
121 * after sorting the objects into a priority order (more difficult to fit
122 * objects are tried first). Failing that, the entire VM is cleared and we try
123 * to fit the execbuf once last time before concluding that it simply will not
124 * fit.
125 *
126 * A small complication to all of this is that we allow userspace not only to
127 * specify an alignment and a size for the object in the address space, but
128 * we also allow userspace to specify the exact offset. This objects are
129 * simpler to place (the location is known a priori) all we have to do is make
130 * sure the space is available.
131 *
132 * Once all the objects are in place, patching up the buried pointers to point
133 * to the final locations is a fairly simple job of walking over the relocation
134 * entry arrays, looking up the right address and rewriting the value into
135 * the object. Simple! ... The relocation entries are stored in user memory
136 * and so to access them we have to copy them into a local buffer. That copy
137 * has to avoid taking any pagefaults as they may lead back to a GEM object
138 * requiring the struct_mutex (i.e. recursive deadlock). So once again we split
139 * the relocation into multiple passes. First we try to do everything within an
140 * atomic context (avoid the pagefaults) which requires that we never wait. If
141 * we detect that we may wait, or if we need to fault, then we have to fallback
142 * to a slower path. The slowpath has to drop the mutex. (Can you hear alarm
143 * bells yet?) Dropping the mutex means that we lose all the state we have
144 * built up so far for the execbuf and we must reset any global data. However,
145 * we do leave the objects pinned in their final locations - which is a
146 * potential issue for concurrent execbufs. Once we have left the mutex, we can
147 * allocate and copy all the relocation entries into a large array at our
148 * leisure, reacquire the mutex, reclaim all the objects and other state and
149 * then proceed to update any incorrect addresses with the objects.
150 *
151 * As we process the relocation entries, we maintain a record of whether the
152 * object is being written to. Using NORELOC, we expect userspace to provide
153 * this information instead. We also check whether we can skip the relocation
154 * by comparing the expected value inside the relocation entry with the target's
155 * final address. If they differ, we have to map the current object and rewrite
156 * the 4 or 8 byte pointer within.
157 *
158 * Serialising an execbuf is quite simple according to the rules of the GEM
159 * ABI. Execution within each context is ordered by the order of submission.
160 * Writes to any GEM object are in order of submission and are exclusive. Reads
161 * from a GEM object are unordered with respect to other reads, but ordered by
162 * writes. A write submitted after a read cannot occur before the read, and
163 * similarly any read submitted after a write cannot occur before the write.
164 * Writes are ordered between engines such that only one write occurs at any
165 * time (completing any reads beforehand) - using semaphores where available
166 * and CPU serialisation otherwise. Other GEM access obey the same rules, any
167 * write (either via mmaps using set-domain, or via pwrite) must flush all GPU
168 * reads before starting, and any read (either using set-domain or pread) must
169 * flush all GPU writes before starting. (Note we only employ a barrier before,
170 * we currently rely on userspace not concurrently starting a new execution
171 * whilst reading or writing to an object. This may be an advantage or not
172 * depending on how much you trust userspace not to shoot themselves in the
173 * foot.) Serialisation may just result in the request being inserted into
174 * a DAG awaiting its turn, but most simple is to wait on the CPU until
175 * all dependencies are resolved.
176 *
177 * After all of that, is just a matter of closing the request and handing it to
178 * the hardware (well, leaving it in a queue to be executed). However, we also
179 * offer the ability for batchbuffers to be run with elevated privileges so
180 * that they access otherwise hidden registers. (Used to adjust L3 cache etc.)
181 * Before any batch is given extra privileges we first must check that it
182 * contains no nefarious instructions, we check that each instruction is from
183 * our whitelist and all registers are also from an allowed list. We first
184 * copy the user's batchbuffer to a shadow (so that the user doesn't have
185 * access to it, either by the CPU or GPU as we scan it) and then parse each
186 * instruction. If everything is ok, we set a flag telling the hardware to run
187 * the batchbuffer in trusted mode, otherwise the ioctl is rejected.
188 */
189
Chris Wilson650bc632017-06-15 09:14:33 +0100190struct i915_execbuffer {
Chris Wilson2889caa2017-06-16 15:05:19 +0100191 struct drm_i915_private *i915; /** i915 backpointer */
192 struct drm_file *file; /** per-file lookup tables and limits */
193 struct drm_i915_gem_execbuffer2 *args; /** ioctl parameters */
194 struct drm_i915_gem_exec_object2 *exec; /** ioctl execobj[] */
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100195 struct i915_vma **vma;
196 unsigned int *flags;
Chris Wilson2889caa2017-06-16 15:05:19 +0100197
198 struct intel_engine_cs *engine; /** engine to queue the request to */
199 struct i915_gem_context *ctx; /** context for building the request */
200 struct i915_address_space *vm; /** GTT and vma for the request */
201
202 struct drm_i915_gem_request *request; /** our request to build */
203 struct i915_vma *batch; /** identity of the batch obj/vma */
204
205 /** actual size of execobj[] as we may extend it for the cmdparser */
206 unsigned int buffer_count;
207
208 /** list of vma not yet bound during reservation phase */
209 struct list_head unbound;
210
211 /** list of vma that have execobj.relocation_count */
212 struct list_head relocs;
213
214 /**
215 * Track the most recently used object for relocations, as we
216 * frequently have to perform multiple relocations within the same
217 * obj/page
218 */
Chris Wilson650bc632017-06-15 09:14:33 +0100219 struct reloc_cache {
Chris Wilson2889caa2017-06-16 15:05:19 +0100220 struct drm_mm_node node; /** temporary GTT binding */
221 unsigned long vaddr; /** Current kmap address */
222 unsigned long page; /** Currently mapped page index */
Chris Wilson7dd4f672017-06-16 15:05:24 +0100223 unsigned int gen; /** Cached value of INTEL_GEN */
Chris Wilson650bc632017-06-15 09:14:33 +0100224 bool use_64bit_reloc : 1;
Chris Wilson2889caa2017-06-16 15:05:19 +0100225 bool has_llc : 1;
226 bool has_fence : 1;
227 bool needs_unfenced : 1;
Chris Wilson7dd4f672017-06-16 15:05:24 +0100228
229 struct drm_i915_gem_request *rq;
230 u32 *rq_cmd;
231 unsigned int rq_size;
Chris Wilson650bc632017-06-15 09:14:33 +0100232 } reloc_cache;
Chris Wilson2889caa2017-06-16 15:05:19 +0100233
234 u64 invalid_flags; /** Set of execobj.flags that are invalid */
235 u32 context_flags; /** Set of execobj.flags to insert from the ctx */
236
237 u32 batch_start_offset; /** Location within object of batch */
238 u32 batch_len; /** Length of batch within object */
239 u32 batch_flags; /** Flags composed for emit_bb_start() */
240
241 /**
242 * Indicate either the size of the hastable used to resolve
243 * relocation handles, or if negative that we are using a direct
244 * index into the execobj[].
245 */
246 int lut_size;
247 struct hlist_head *buckets; /** ht for relocation handles */
Chris Wilson67731b82010-12-08 10:38:14 +0000248};
249
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100250#define exec_entry(EB, VMA) (&(EB)->exec[(VMA)->exec_flags - (EB)->flags])
Chris Wilson4ff4b442017-06-16 15:05:16 +0100251
Chris Wilson2889caa2017-06-16 15:05:19 +0100252/*
253 * Used to convert any address to canonical form.
254 * Starting from gen8, some commands (e.g. STATE_BASE_ADDRESS,
255 * MI_LOAD_REGISTER_MEM and others, see Broadwell PRM Vol2a) require the
256 * addresses to be in a canonical form:
257 * "GraphicsAddress[63:48] are ignored by the HW and assumed to be in correct
258 * canonical form [63:48] == [47]."
259 */
260#define GEN8_HIGH_ADDRESS_BIT 47
261static inline u64 gen8_canonical_addr(u64 address)
262{
263 return sign_extend64(address, GEN8_HIGH_ADDRESS_BIT);
264}
265
266static inline u64 gen8_noncanonical_addr(u64 address)
267{
268 return address & GENMASK_ULL(GEN8_HIGH_ADDRESS_BIT, 0);
269}
270
Chris Wilson650bc632017-06-15 09:14:33 +0100271static int eb_create(struct i915_execbuffer *eb)
Chris Wilson67731b82010-12-08 10:38:14 +0000272{
Chris Wilson2889caa2017-06-16 15:05:19 +0100273 if (!(eb->args->flags & I915_EXEC_HANDLE_LUT)) {
274 unsigned int size = 1 + ilog2(eb->buffer_count);
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000275
Chris Wilson2889caa2017-06-16 15:05:19 +0100276 /*
277 * Without a 1:1 association between relocation handles and
278 * the execobject[] index, we instead create a hashtable.
279 * We size it dynamically based on available memory, starting
280 * first with 1:1 assocative hash and scaling back until
281 * the allocation succeeds.
282 *
283 * Later on we use a positive lut_size to indicate we are
284 * using this hashtable, and a negative value to indicate a
285 * direct lookup.
286 */
Chris Wilson4ff4b442017-06-16 15:05:16 +0100287 do {
Chris Wilson4d470f72017-06-29 16:04:25 +0100288 unsigned int flags;
289
290 /* While we can still reduce the allocation size, don't
291 * raise a warning and allow the allocation to fail.
292 * On the last pass though, we want to try as hard
293 * as possible to perform the allocation and warn
294 * if it fails.
295 */
296 flags = GFP_TEMPORARY;
297 if (size > 1)
298 flags |= __GFP_NORETRY | __GFP_NOWARN;
299
Chris Wilson4ff4b442017-06-16 15:05:16 +0100300 eb->buckets = kzalloc(sizeof(struct hlist_head) << size,
Chris Wilson4d470f72017-06-29 16:04:25 +0100301 flags);
Chris Wilson4ff4b442017-06-16 15:05:16 +0100302 if (eb->buckets)
303 break;
304 } while (--size);
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000305
Chris Wilson4d470f72017-06-29 16:04:25 +0100306 if (unlikely(!size))
307 return -ENOMEM;
Chris Wilson4ff4b442017-06-16 15:05:16 +0100308
Chris Wilson2889caa2017-06-16 15:05:19 +0100309 eb->lut_size = size;
Chris Wilson650bc632017-06-15 09:14:33 +0100310 } else {
Chris Wilson2889caa2017-06-16 15:05:19 +0100311 eb->lut_size = -eb->buffer_count;
Chris Wilson650bc632017-06-15 09:14:33 +0100312 }
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000313
Chris Wilson650bc632017-06-15 09:14:33 +0100314 return 0;
Chris Wilson67731b82010-12-08 10:38:14 +0000315}
316
Chris Wilson2889caa2017-06-16 15:05:19 +0100317static bool
318eb_vma_misplaced(const struct drm_i915_gem_exec_object2 *entry,
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100319 const struct i915_vma *vma,
320 unsigned int flags)
Chris Wilson2889caa2017-06-16 15:05:19 +0100321{
Chris Wilson2889caa2017-06-16 15:05:19 +0100322 if (vma->node.size < entry->pad_to_size)
323 return true;
324
325 if (entry->alignment && !IS_ALIGNED(vma->node.start, entry->alignment))
326 return true;
327
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100328 if (flags & EXEC_OBJECT_PINNED &&
Chris Wilson2889caa2017-06-16 15:05:19 +0100329 vma->node.start != entry->offset)
330 return true;
331
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100332 if (flags & __EXEC_OBJECT_NEEDS_BIAS &&
Chris Wilson2889caa2017-06-16 15:05:19 +0100333 vma->node.start < BATCH_OFFSET_BIAS)
334 return true;
335
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100336 if (!(flags & EXEC_OBJECT_SUPPORTS_48B_ADDRESS) &&
Chris Wilson2889caa2017-06-16 15:05:19 +0100337 (vma->node.start + vma->node.size - 1) >> 32)
338 return true;
339
340 return false;
341}
342
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100343static inline bool
Chris Wilson2889caa2017-06-16 15:05:19 +0100344eb_pin_vma(struct i915_execbuffer *eb,
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100345 const struct drm_i915_gem_exec_object2 *entry,
Chris Wilson2889caa2017-06-16 15:05:19 +0100346 struct i915_vma *vma)
347{
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100348 unsigned int exec_flags = *vma->exec_flags;
349 u64 pin_flags;
Chris Wilson2889caa2017-06-16 15:05:19 +0100350
Chris Wilson616d9ce2017-06-16 15:05:21 +0100351 if (vma->node.size)
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100352 pin_flags = vma->node.start;
Chris Wilson616d9ce2017-06-16 15:05:21 +0100353 else
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100354 pin_flags = entry->offset & PIN_OFFSET_MASK;
Chris Wilson616d9ce2017-06-16 15:05:21 +0100355
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100356 pin_flags |= PIN_USER | PIN_NOEVICT | PIN_OFFSET_FIXED;
357 if (unlikely(exec_flags & EXEC_OBJECT_NEEDS_GTT))
358 pin_flags |= PIN_GLOBAL;
Chris Wilson616d9ce2017-06-16 15:05:21 +0100359
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100360 if (unlikely(i915_vma_pin(vma, 0, 0, pin_flags)))
361 return false;
Chris Wilson2889caa2017-06-16 15:05:19 +0100362
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100363 if (unlikely(exec_flags & EXEC_OBJECT_NEEDS_FENCE)) {
Chris Wilson2889caa2017-06-16 15:05:19 +0100364 if (unlikely(i915_vma_get_fence(vma))) {
365 i915_vma_unpin(vma);
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100366 return false;
Chris Wilson2889caa2017-06-16 15:05:19 +0100367 }
368
369 if (i915_vma_pin_fence(vma))
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100370 exec_flags |= __EXEC_OBJECT_HAS_FENCE;
Chris Wilson2889caa2017-06-16 15:05:19 +0100371 }
372
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100373 *vma->exec_flags = exec_flags | __EXEC_OBJECT_HAS_PIN;
374 return !eb_vma_misplaced(entry, vma, exec_flags);
Chris Wilson2889caa2017-06-16 15:05:19 +0100375}
376
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100377static inline void __eb_unreserve_vma(struct i915_vma *vma, unsigned int flags)
Chris Wilsond55495b2017-06-15 09:14:34 +0100378{
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100379 GEM_BUG_ON(!(flags & __EXEC_OBJECT_HAS_PIN));
Chris Wilson2889caa2017-06-16 15:05:19 +0100380
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100381 if (unlikely(flags & __EXEC_OBJECT_HAS_FENCE))
Chris Wilsond55495b2017-06-15 09:14:34 +0100382 i915_vma_unpin_fence(vma);
383
Chris Wilson2889caa2017-06-16 15:05:19 +0100384 __i915_vma_unpin(vma);
Chris Wilsond55495b2017-06-15 09:14:34 +0100385}
386
Chris Wilson2889caa2017-06-16 15:05:19 +0100387static inline void
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100388eb_unreserve_vma(struct i915_vma *vma, unsigned int *flags)
Chris Wilsond55495b2017-06-15 09:14:34 +0100389{
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100390 if (!(*flags & __EXEC_OBJECT_HAS_PIN))
Chris Wilson2889caa2017-06-16 15:05:19 +0100391 return;
Chris Wilsond55495b2017-06-15 09:14:34 +0100392
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100393 __eb_unreserve_vma(vma, *flags);
394 *flags &= ~__EXEC_OBJECT_RESERVED;
Chris Wilson4ff4b442017-06-16 15:05:16 +0100395}
396
397static int
Chris Wilson2889caa2017-06-16 15:05:19 +0100398eb_validate_vma(struct i915_execbuffer *eb,
399 struct drm_i915_gem_exec_object2 *entry,
400 struct i915_vma *vma)
401{
402 if (unlikely(entry->flags & eb->invalid_flags))
403 return -EINVAL;
404
405 if (unlikely(entry->alignment && !is_power_of_2(entry->alignment)))
406 return -EINVAL;
407
408 /*
409 * Offset can be used as input (EXEC_OBJECT_PINNED), reject
410 * any non-page-aligned or non-canonical addresses.
411 */
412 if (unlikely(entry->flags & EXEC_OBJECT_PINNED &&
413 entry->offset != gen8_canonical_addr(entry->offset & PAGE_MASK)))
414 return -EINVAL;
415
416 /* pad_to_size was once a reserved field, so sanitize it */
417 if (entry->flags & EXEC_OBJECT_PAD_TO_SIZE) {
418 if (unlikely(offset_in_page(entry->pad_to_size)))
419 return -EINVAL;
420 } else {
421 entry->pad_to_size = 0;
422 }
423
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100424 if (unlikely(vma->exec_flags)) {
Chris Wilson2889caa2017-06-16 15:05:19 +0100425 DRM_DEBUG("Object [handle %d, index %d] appears more than once in object list\n",
426 entry->handle, (int)(entry - eb->exec));
427 return -EINVAL;
428 }
429
430 /*
431 * From drm_mm perspective address space is continuous,
432 * so from this point we're always using non-canonical
433 * form internally.
434 */
435 entry->offset = gen8_noncanonical_addr(entry->offset);
436
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100437 if (!eb->reloc_cache.has_fence) {
438 entry->flags &= ~EXEC_OBJECT_NEEDS_FENCE;
439 } else {
440 if ((entry->flags & EXEC_OBJECT_NEEDS_FENCE ||
441 eb->reloc_cache.needs_unfenced) &&
442 i915_gem_object_is_tiled(vma->obj))
443 entry->flags |= EXEC_OBJECT_NEEDS_GTT | __EXEC_OBJECT_NEEDS_MAP;
444 }
445
446 if (!(entry->flags & EXEC_OBJECT_PINNED))
447 entry->flags |= eb->context_flags;
448
Chris Wilson2889caa2017-06-16 15:05:19 +0100449 return 0;
450}
451
452static int
Chris Wilsond1b48c12017-08-16 09:52:08 +0100453eb_add_vma(struct i915_execbuffer *eb, unsigned int i, struct i915_vma *vma)
Chris Wilson2889caa2017-06-16 15:05:19 +0100454{
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100455 struct drm_i915_gem_exec_object2 *entry = &eb->exec[i];
Chris Wilson2889caa2017-06-16 15:05:19 +0100456 int err;
457
458 GEM_BUG_ON(i915_vma_is_closed(vma));
459
460 if (!(eb->args->flags & __EXEC_VALIDATED)) {
461 err = eb_validate_vma(eb, entry, vma);
462 if (unlikely(err))
463 return err;
464 }
465
Chris Wilson4d470f72017-06-29 16:04:25 +0100466 if (eb->lut_size > 0) {
Chris Wilson2889caa2017-06-16 15:05:19 +0100467 vma->exec_handle = entry->handle;
468 hlist_add_head(&vma->exec_node,
469 &eb->buckets[hash_32(entry->handle,
470 eb->lut_size)]);
471 }
472
473 if (entry->relocation_count)
474 list_add_tail(&vma->reloc_link, &eb->relocs);
475
Chris Wilson2889caa2017-06-16 15:05:19 +0100476 /*
477 * Stash a pointer from the vma to execobj, so we can query its flags,
478 * size, alignment etc as provided by the user. Also we stash a pointer
479 * to the vma inside the execobj so that we can use a direct lookup
480 * to find the right target VMA when doing relocations.
481 */
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100482 eb->vma[i] = vma;
Chris Wilsond1b48c12017-08-16 09:52:08 +0100483 eb->flags[i] = entry->flags;
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100484 vma->exec_flags = &eb->flags[i];
Chris Wilson2889caa2017-06-16 15:05:19 +0100485
486 err = 0;
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100487 if (eb_pin_vma(eb, entry, vma)) {
Chris Wilson2889caa2017-06-16 15:05:19 +0100488 if (entry->offset != vma->node.start) {
489 entry->offset = vma->node.start | UPDATE;
490 eb->args->flags |= __EXEC_HAS_RELOC;
491 }
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100492 } else {
493 eb_unreserve_vma(vma, vma->exec_flags);
494
495 list_add_tail(&vma->exec_link, &eb->unbound);
496 if (drm_mm_node_allocated(&vma->node))
497 err = i915_vma_unbind(vma);
Chris Wilson2889caa2017-06-16 15:05:19 +0100498 }
499 return err;
500}
501
502static inline int use_cpu_reloc(const struct reloc_cache *cache,
503 const struct drm_i915_gem_object *obj)
504{
505 if (!i915_gem_object_has_struct_page(obj))
506 return false;
507
Chris Wilson7dd4f672017-06-16 15:05:24 +0100508 if (DBG_FORCE_RELOC == FORCE_CPU_RELOC)
509 return true;
510
511 if (DBG_FORCE_RELOC == FORCE_GTT_RELOC)
512 return false;
Chris Wilson2889caa2017-06-16 15:05:19 +0100513
514 return (cache->has_llc ||
515 obj->cache_dirty ||
516 obj->cache_level != I915_CACHE_NONE);
517}
518
519static int eb_reserve_vma(const struct i915_execbuffer *eb,
520 struct i915_vma *vma)
521{
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100522 struct drm_i915_gem_exec_object2 *entry = exec_entry(eb, vma);
523 unsigned int exec_flags = *vma->exec_flags;
524 u64 pin_flags;
Chris Wilson2889caa2017-06-16 15:05:19 +0100525 int err;
526
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100527 pin_flags = PIN_USER | PIN_NONBLOCK;
528 if (exec_flags & EXEC_OBJECT_NEEDS_GTT)
529 pin_flags |= PIN_GLOBAL;
Chris Wilson2889caa2017-06-16 15:05:19 +0100530
531 /*
532 * Wa32bitGeneralStateOffset & Wa32bitInstructionBaseOffset,
533 * limit address to the first 4GBs for unflagged objects.
534 */
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100535 if (!(exec_flags & EXEC_OBJECT_SUPPORTS_48B_ADDRESS))
536 pin_flags |= PIN_ZONE_4G;
Chris Wilson2889caa2017-06-16 15:05:19 +0100537
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100538 if (exec_flags & __EXEC_OBJECT_NEEDS_MAP)
539 pin_flags |= PIN_MAPPABLE;
Chris Wilson2889caa2017-06-16 15:05:19 +0100540
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100541 if (exec_flags & EXEC_OBJECT_PINNED) {
542 pin_flags |= entry->offset | PIN_OFFSET_FIXED;
543 pin_flags &= ~PIN_NONBLOCK; /* force overlapping checks */
544 } else if (exec_flags & __EXEC_OBJECT_NEEDS_BIAS) {
545 pin_flags |= BATCH_OFFSET_BIAS | PIN_OFFSET_BIAS;
Chris Wilson2889caa2017-06-16 15:05:19 +0100546 }
547
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100548 err = i915_vma_pin(vma,
549 entry->pad_to_size, entry->alignment,
550 pin_flags);
Chris Wilson2889caa2017-06-16 15:05:19 +0100551 if (err)
552 return err;
553
554 if (entry->offset != vma->node.start) {
555 entry->offset = vma->node.start | UPDATE;
556 eb->args->flags |= __EXEC_HAS_RELOC;
557 }
558
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100559 if (unlikely(exec_flags & EXEC_OBJECT_NEEDS_FENCE)) {
Chris Wilson2889caa2017-06-16 15:05:19 +0100560 err = i915_vma_get_fence(vma);
561 if (unlikely(err)) {
562 i915_vma_unpin(vma);
563 return err;
564 }
565
566 if (i915_vma_pin_fence(vma))
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100567 exec_flags |= __EXEC_OBJECT_HAS_FENCE;
Chris Wilson2889caa2017-06-16 15:05:19 +0100568 }
569
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100570 *vma->exec_flags = exec_flags | __EXEC_OBJECT_HAS_PIN;
571 GEM_BUG_ON(eb_vma_misplaced(entry, vma, exec_flags));
Chris Wilson1da7b542017-07-21 15:50:35 +0100572
Chris Wilson2889caa2017-06-16 15:05:19 +0100573 return 0;
574}
575
576static int eb_reserve(struct i915_execbuffer *eb)
577{
578 const unsigned int count = eb->buffer_count;
579 struct list_head last;
580 struct i915_vma *vma;
581 unsigned int i, pass;
582 int err;
583
584 /*
585 * Attempt to pin all of the buffers into the GTT.
586 * This is done in 3 phases:
587 *
588 * 1a. Unbind all objects that do not match the GTT constraints for
589 * the execbuffer (fenceable, mappable, alignment etc).
590 * 1b. Increment pin count for already bound objects.
591 * 2. Bind new objects.
592 * 3. Decrement pin count.
593 *
594 * This avoid unnecessary unbinding of later objects in order to make
595 * room for the earlier objects *unless* we need to defragment.
596 */
597
598 pass = 0;
599 err = 0;
600 do {
601 list_for_each_entry(vma, &eb->unbound, exec_link) {
602 err = eb_reserve_vma(eb, vma);
603 if (err)
604 break;
605 }
606 if (err != -ENOSPC)
607 return err;
608
609 /* Resort *all* the objects into priority order */
610 INIT_LIST_HEAD(&eb->unbound);
611 INIT_LIST_HEAD(&last);
612 for (i = 0; i < count; i++) {
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100613 unsigned int flags = eb->flags[i];
614 struct i915_vma *vma = eb->vma[i];
Chris Wilson2889caa2017-06-16 15:05:19 +0100615
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100616 if (flags & EXEC_OBJECT_PINNED &&
617 flags & __EXEC_OBJECT_HAS_PIN)
Chris Wilson2889caa2017-06-16 15:05:19 +0100618 continue;
619
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100620 eb_unreserve_vma(vma, &eb->flags[i]);
Chris Wilson2889caa2017-06-16 15:05:19 +0100621
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100622 if (flags & EXEC_OBJECT_PINNED)
Chris Wilson2889caa2017-06-16 15:05:19 +0100623 list_add(&vma->exec_link, &eb->unbound);
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100624 else if (flags & __EXEC_OBJECT_NEEDS_MAP)
Chris Wilson2889caa2017-06-16 15:05:19 +0100625 list_add_tail(&vma->exec_link, &eb->unbound);
626 else
627 list_add_tail(&vma->exec_link, &last);
628 }
629 list_splice_tail(&last, &eb->unbound);
630
631 switch (pass++) {
632 case 0:
633 break;
634
635 case 1:
636 /* Too fragmented, unbind everything and retry */
637 err = i915_gem_evict_vm(eb->vm);
638 if (err)
639 return err;
640 break;
641
642 default:
643 return -ENOSPC;
644 }
645 } while (1);
646}
647
Chris Wilson2889caa2017-06-16 15:05:19 +0100648static unsigned int eb_batch_index(const struct i915_execbuffer *eb)
649{
Chris Wilson1a71cf22017-06-16 15:05:23 +0100650 if (eb->args->flags & I915_EXEC_BATCH_FIRST)
651 return 0;
652 else
653 return eb->buffer_count - 1;
Chris Wilson2889caa2017-06-16 15:05:19 +0100654}
655
656static int eb_select_context(struct i915_execbuffer *eb)
657{
658 struct i915_gem_context *ctx;
659
660 ctx = i915_gem_context_lookup(eb->file->driver_priv, eb->args->rsvd1);
Chris Wilson1acfc102017-06-20 12:05:47 +0100661 if (unlikely(!ctx))
662 return -ENOENT;
Chris Wilson2889caa2017-06-16 15:05:19 +0100663
Chris Wilson1acfc102017-06-20 12:05:47 +0100664 eb->ctx = ctx;
Chris Wilson2889caa2017-06-16 15:05:19 +0100665 eb->vm = ctx->ppgtt ? &ctx->ppgtt->base : &eb->i915->ggtt.base;
666
667 eb->context_flags = 0;
668 if (ctx->flags & CONTEXT_NO_ZEROMAP)
669 eb->context_flags |= __EXEC_OBJECT_NEEDS_BIAS;
670
671 return 0;
672}
673
674static int eb_lookup_vmas(struct i915_execbuffer *eb)
Chris Wilson4ff4b442017-06-16 15:05:16 +0100675{
Chris Wilsond1b48c12017-08-16 09:52:08 +0100676 struct radix_tree_root *handles_vma = &eb->ctx->handles_vma;
Chris Wilson170fa292017-08-16 09:52:07 +0100677 struct drm_i915_gem_object *uninitialized_var(obj);
Chris Wilson2889caa2017-06-16 15:05:19 +0100678 unsigned int i;
Chris Wilson2889caa2017-06-16 15:05:19 +0100679 int err;
Chris Wilson4ff4b442017-06-16 15:05:16 +0100680
Chris Wilson8bcbfb12017-08-16 09:52:05 +0100681 if (unlikely(i915_gem_context_is_closed(eb->ctx)))
682 return -ENOENT;
683
684 if (unlikely(i915_gem_context_is_banned(eb->ctx)))
685 return -EIO;
686
Chris Wilson2889caa2017-06-16 15:05:19 +0100687 INIT_LIST_HEAD(&eb->relocs);
688 INIT_LIST_HEAD(&eb->unbound);
Chris Wilson4ff4b442017-06-16 15:05:16 +0100689
Chris Wilson170fa292017-08-16 09:52:07 +0100690 for (i = 0; i < eb->buffer_count; i++) {
691 u32 handle = eb->exec[i].handle;
Chris Wilsond1b48c12017-08-16 09:52:08 +0100692 struct i915_lut_handle *lut;
Chris Wilson170fa292017-08-16 09:52:07 +0100693 struct i915_vma *vma;
694
Chris Wilsond1b48c12017-08-16 09:52:08 +0100695 vma = radix_tree_lookup(handles_vma, handle);
696 if (likely(vma))
Chris Wilson170fa292017-08-16 09:52:07 +0100697 goto add_vma;
Chris Wilson4ff4b442017-06-16 15:05:16 +0100698
Chris Wilson170fa292017-08-16 09:52:07 +0100699 obj = i915_gem_object_lookup(eb->file, handle);
Chris Wilson4ff4b442017-06-16 15:05:16 +0100700 if (unlikely(!obj)) {
Chris Wilson2889caa2017-06-16 15:05:19 +0100701 err = -ENOENT;
Chris Wilson170fa292017-08-16 09:52:07 +0100702 goto err_vma;
Chris Wilson4ff4b442017-06-16 15:05:16 +0100703 }
704
Chris Wilson4ff4b442017-06-16 15:05:16 +0100705 vma = i915_vma_instance(obj, eb->vm, NULL);
706 if (unlikely(IS_ERR(vma))) {
Chris Wilson2889caa2017-06-16 15:05:19 +0100707 err = PTR_ERR(vma);
Chris Wilson170fa292017-08-16 09:52:07 +0100708 goto err_obj;
Chris Wilson4ff4b442017-06-16 15:05:16 +0100709 }
710
Chris Wilsond1b48c12017-08-16 09:52:08 +0100711 lut = kmem_cache_alloc(eb->i915->luts, GFP_KERNEL);
712 if (unlikely(!lut)) {
713 err = -ENOMEM;
714 goto err_obj;
Chris Wilson4ff4b442017-06-16 15:05:16 +0100715 }
716
Chris Wilsond1b48c12017-08-16 09:52:08 +0100717 err = radix_tree_insert(handles_vma, handle, vma);
718 if (unlikely(err)) {
719 kfree(lut);
720 goto err_obj;
721 }
722
723 list_add(&lut->obj_link, &obj->lut_list);
724 list_add(&lut->ctx_link, &eb->ctx->handles_list);
725 lut->ctx = eb->ctx;
726 lut->handle = handle;
727
728 /* transfer ref to ctx */
729 obj = NULL;
730
Chris Wilson170fa292017-08-16 09:52:07 +0100731add_vma:
Chris Wilsond1b48c12017-08-16 09:52:08 +0100732 err = eb_add_vma(eb, i, vma);
Chris Wilson2889caa2017-06-16 15:05:19 +0100733 if (unlikely(err))
Chris Wilson170fa292017-08-16 09:52:07 +0100734 goto err_obj;
Chris Wilsondade2a62017-06-16 15:05:20 +0100735
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100736 GEM_BUG_ON(vma != eb->vma[i]);
737 GEM_BUG_ON(vma->exec_flags != &eb->flags[i]);
Chris Wilson4ff4b442017-06-16 15:05:16 +0100738 }
739
Chris Wilson2889caa2017-06-16 15:05:19 +0100740 /* take note of the batch buffer before we might reorder the lists */
741 i = eb_batch_index(eb);
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100742 eb->batch = eb->vma[i];
743 GEM_BUG_ON(eb->batch->exec_flags != &eb->flags[i]);
Chris Wilson59bfa122016-08-04 16:32:31 +0100744
745 /*
746 * SNA is doing fancy tricks with compressing batch buffers, which leads
747 * to negative relocation deltas. Usually that works out ok since the
748 * relocate address is still positive, except when the batch is placed
749 * very low in the GTT. Ensure this doesn't happen.
750 *
751 * Note that actual hangs have only been observed on gen7, but for
752 * paranoia do it everywhere.
753 */
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100754 if (!(eb->flags[i] & EXEC_OBJECT_PINNED))
755 eb->flags[i] |= __EXEC_OBJECT_NEEDS_BIAS;
Chris Wilson2889caa2017-06-16 15:05:19 +0100756 if (eb->reloc_cache.has_fence)
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100757 eb->flags[i] |= EXEC_OBJECT_NEEDS_FENCE;
Chris Wilson59bfa122016-08-04 16:32:31 +0100758
Chris Wilson2889caa2017-06-16 15:05:19 +0100759 eb->args->flags |= __EXEC_VALIDATED;
760 return eb_reserve(eb);
761
Chris Wilson170fa292017-08-16 09:52:07 +0100762err_obj:
763 if (obj)
764 i915_gem_object_put(obj);
765err_vma:
766 eb->vma[i] = NULL;
Chris Wilson2889caa2017-06-16 15:05:19 +0100767 return err;
Chris Wilson59bfa122016-08-04 16:32:31 +0100768}
769
Chris Wilson4ff4b442017-06-16 15:05:16 +0100770static struct i915_vma *
Chris Wilson2889caa2017-06-16 15:05:19 +0100771eb_get_vma(const struct i915_execbuffer *eb, unsigned long handle)
Chris Wilson3b96eff2013-01-08 10:53:14 +0000772{
Chris Wilson2889caa2017-06-16 15:05:19 +0100773 if (eb->lut_size < 0) {
774 if (handle >= -eb->lut_size)
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000775 return NULL;
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100776 return eb->vma[handle];
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000777 } else {
778 struct hlist_head *head;
Geliang Tangaa459502016-01-18 23:54:20 +0800779 struct i915_vma *vma;
Chris Wilson67731b82010-12-08 10:38:14 +0000780
Chris Wilson2889caa2017-06-16 15:05:19 +0100781 head = &eb->buckets[hash_32(handle, eb->lut_size)];
Geliang Tangaa459502016-01-18 23:54:20 +0800782 hlist_for_each_entry(vma, head, exec_node) {
Ben Widawsky27173f12013-08-14 11:38:36 +0200783 if (vma->exec_handle == handle)
784 return vma;
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000785 }
786 return NULL;
Chris Wilson67731b82010-12-08 10:38:14 +0000787 }
Chris Wilson67731b82010-12-08 10:38:14 +0000788}
789
Chris Wilson2889caa2017-06-16 15:05:19 +0100790static void eb_release_vmas(const struct i915_execbuffer *eb)
Chris Wilsona415d352013-11-26 11:23:15 +0000791{
Chris Wilson2889caa2017-06-16 15:05:19 +0100792 const unsigned int count = eb->buffer_count;
793 unsigned int i;
Chris Wilson650bc632017-06-15 09:14:33 +0100794
Chris Wilson2889caa2017-06-16 15:05:19 +0100795 for (i = 0; i < count; i++) {
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100796 struct i915_vma *vma = eb->vma[i];
797 unsigned int flags = eb->flags[i];
Chris Wilson2889caa2017-06-16 15:05:19 +0100798
799 if (!vma)
Chris Wilson170fa292017-08-16 09:52:07 +0100800 break;
Chris Wilsonbcffc3f2013-01-08 10:53:15 +0000801
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100802 GEM_BUG_ON(vma->exec_flags != &eb->flags[i]);
803 vma->exec_flags = NULL;
804 eb->vma[i] = NULL;
Chris Wilson2889caa2017-06-16 15:05:19 +0100805
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100806 if (flags & __EXEC_OBJECT_HAS_PIN)
807 __eb_unreserve_vma(vma, flags);
Chris Wilson2889caa2017-06-16 15:05:19 +0100808
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100809 if (flags & __EXEC_OBJECT_HAS_REF)
Chris Wilsondade2a62017-06-16 15:05:20 +0100810 i915_vma_put(vma);
Chris Wilsonbcffc3f2013-01-08 10:53:15 +0000811 }
Chris Wilson2889caa2017-06-16 15:05:19 +0100812}
Chris Wilsond55495b2017-06-15 09:14:34 +0100813
Chris Wilson2889caa2017-06-16 15:05:19 +0100814static void eb_reset_vmas(const struct i915_execbuffer *eb)
815{
816 eb_release_vmas(eb);
Chris Wilson4d470f72017-06-29 16:04:25 +0100817 if (eb->lut_size > 0)
Chris Wilson2889caa2017-06-16 15:05:19 +0100818 memset(eb->buckets, 0,
819 sizeof(struct hlist_head) << eb->lut_size);
820}
Chris Wilsond55495b2017-06-15 09:14:34 +0100821
Chris Wilson2889caa2017-06-16 15:05:19 +0100822static void eb_destroy(const struct i915_execbuffer *eb)
823{
Chris Wilson7dd4f672017-06-16 15:05:24 +0100824 GEM_BUG_ON(eb->reloc_cache.rq);
825
Chris Wilson4d470f72017-06-29 16:04:25 +0100826 if (eb->lut_size > 0)
Chris Wilsond55495b2017-06-15 09:14:34 +0100827 kfree(eb->buckets);
Chris Wilson67731b82010-12-08 10:38:14 +0000828}
829
Chris Wilson2889caa2017-06-16 15:05:19 +0100830static inline u64
Chris Wilsond50415c2016-08-18 17:16:52 +0100831relocation_target(const struct drm_i915_gem_relocation_entry *reloc,
Chris Wilson2889caa2017-06-16 15:05:19 +0100832 const struct i915_vma *target)
Michał Winiarski934acce2015-12-29 18:24:52 +0100833{
Chris Wilson2889caa2017-06-16 15:05:19 +0100834 return gen8_canonical_addr((int)reloc->delta + target->node.start);
Michał Winiarski934acce2015-12-29 18:24:52 +0100835}
836
Chris Wilsond50415c2016-08-18 17:16:52 +0100837static void reloc_cache_init(struct reloc_cache *cache,
838 struct drm_i915_private *i915)
Rafael Barbalho5032d872013-08-21 17:10:51 +0100839{
Chris Wilson31a39202016-08-18 17:16:46 +0100840 cache->page = -1;
Chris Wilsond50415c2016-08-18 17:16:52 +0100841 cache->vaddr = 0;
Joonas Lahtinendfc51482016-11-03 10:39:46 +0200842 /* Must be a variable in the struct to allow GCC to unroll. */
Chris Wilson7dd4f672017-06-16 15:05:24 +0100843 cache->gen = INTEL_GEN(i915);
Chris Wilson2889caa2017-06-16 15:05:19 +0100844 cache->has_llc = HAS_LLC(i915);
Joonas Lahtinendfc51482016-11-03 10:39:46 +0200845 cache->use_64bit_reloc = HAS_64BIT_RELOC(i915);
Chris Wilson7dd4f672017-06-16 15:05:24 +0100846 cache->has_fence = cache->gen < 4;
847 cache->needs_unfenced = INTEL_INFO(i915)->unfenced_needs_alignment;
Chris Wilsone8cb9092016-08-18 17:16:53 +0100848 cache->node.allocated = false;
Chris Wilson7dd4f672017-06-16 15:05:24 +0100849 cache->rq = NULL;
850 cache->rq_size = 0;
Chris Wilson31a39202016-08-18 17:16:46 +0100851}
Rafael Barbalho5032d872013-08-21 17:10:51 +0100852
Chris Wilsond50415c2016-08-18 17:16:52 +0100853static inline void *unmask_page(unsigned long p)
854{
855 return (void *)(uintptr_t)(p & PAGE_MASK);
856}
Rafael Barbalho5032d872013-08-21 17:10:51 +0100857
Chris Wilsond50415c2016-08-18 17:16:52 +0100858static inline unsigned int unmask_flags(unsigned long p)
859{
860 return p & ~PAGE_MASK;
861}
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700862
Chris Wilsond50415c2016-08-18 17:16:52 +0100863#define KMAP 0x4 /* after CLFLUSH_FLAGS */
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700864
Chris Wilson650bc632017-06-15 09:14:33 +0100865static inline struct i915_ggtt *cache_to_ggtt(struct reloc_cache *cache)
866{
867 struct drm_i915_private *i915 =
868 container_of(cache, struct i915_execbuffer, reloc_cache)->i915;
869 return &i915->ggtt;
870}
871
Chris Wilson7dd4f672017-06-16 15:05:24 +0100872static void reloc_gpu_flush(struct reloc_cache *cache)
873{
874 GEM_BUG_ON(cache->rq_size >= cache->rq->batch->obj->base.size / sizeof(u32));
875 cache->rq_cmd[cache->rq_size] = MI_BATCH_BUFFER_END;
876 i915_gem_object_unpin_map(cache->rq->batch->obj);
877 i915_gem_chipset_flush(cache->rq->i915);
878
879 __i915_add_request(cache->rq, true);
880 cache->rq = NULL;
881}
882
Chris Wilson650bc632017-06-15 09:14:33 +0100883static void reloc_cache_reset(struct reloc_cache *cache)
Chris Wilson31a39202016-08-18 17:16:46 +0100884{
Chris Wilsond50415c2016-08-18 17:16:52 +0100885 void *vaddr;
886
Chris Wilson7dd4f672017-06-16 15:05:24 +0100887 if (cache->rq)
888 reloc_gpu_flush(cache);
889
Chris Wilson31a39202016-08-18 17:16:46 +0100890 if (!cache->vaddr)
891 return;
892
Chris Wilsond50415c2016-08-18 17:16:52 +0100893 vaddr = unmask_page(cache->vaddr);
894 if (cache->vaddr & KMAP) {
895 if (cache->vaddr & CLFLUSH_AFTER)
896 mb();
Chris Wilson31a39202016-08-18 17:16:46 +0100897
Chris Wilsond50415c2016-08-18 17:16:52 +0100898 kunmap_atomic(vaddr);
899 i915_gem_obj_finish_shmem_access((struct drm_i915_gem_object *)cache->node.mm);
900 } else {
Chris Wilsone8cb9092016-08-18 17:16:53 +0100901 wmb();
Chris Wilsond50415c2016-08-18 17:16:52 +0100902 io_mapping_unmap_atomic((void __iomem *)vaddr);
Chris Wilsone8cb9092016-08-18 17:16:53 +0100903 if (cache->node.allocated) {
Chris Wilson650bc632017-06-15 09:14:33 +0100904 struct i915_ggtt *ggtt = cache_to_ggtt(cache);
Chris Wilsone8cb9092016-08-18 17:16:53 +0100905
906 ggtt->base.clear_range(&ggtt->base,
907 cache->node.start,
Michał Winiarski4fb84d92016-10-13 14:02:40 +0200908 cache->node.size);
Chris Wilsone8cb9092016-08-18 17:16:53 +0100909 drm_mm_remove_node(&cache->node);
910 } else {
911 i915_vma_unpin((struct i915_vma *)cache->node.mm);
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700912 }
Chris Wilson31a39202016-08-18 17:16:46 +0100913 }
Chris Wilson650bc632017-06-15 09:14:33 +0100914
915 cache->vaddr = 0;
916 cache->page = -1;
Chris Wilson31a39202016-08-18 17:16:46 +0100917}
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700918
Chris Wilson31a39202016-08-18 17:16:46 +0100919static void *reloc_kmap(struct drm_i915_gem_object *obj,
920 struct reloc_cache *cache,
Chris Wilson2889caa2017-06-16 15:05:19 +0100921 unsigned long page)
Chris Wilson31a39202016-08-18 17:16:46 +0100922{
Chris Wilsond50415c2016-08-18 17:16:52 +0100923 void *vaddr;
Chris Wilson31a39202016-08-18 17:16:46 +0100924
Chris Wilsond50415c2016-08-18 17:16:52 +0100925 if (cache->vaddr) {
926 kunmap_atomic(unmask_page(cache->vaddr));
927 } else {
928 unsigned int flushes;
Chris Wilson2889caa2017-06-16 15:05:19 +0100929 int err;
Chris Wilson31a39202016-08-18 17:16:46 +0100930
Chris Wilson2889caa2017-06-16 15:05:19 +0100931 err = i915_gem_obj_prepare_shmem_write(obj, &flushes);
932 if (err)
933 return ERR_PTR(err);
Chris Wilsond50415c2016-08-18 17:16:52 +0100934
935 BUILD_BUG_ON(KMAP & CLFLUSH_FLAGS);
936 BUILD_BUG_ON((KMAP | CLFLUSH_FLAGS) & PAGE_MASK);
937
938 cache->vaddr = flushes | KMAP;
939 cache->node.mm = (void *)obj;
940 if (flushes)
941 mb();
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700942 }
943
Chris Wilsond50415c2016-08-18 17:16:52 +0100944 vaddr = kmap_atomic(i915_gem_object_get_dirty_page(obj, page));
945 cache->vaddr = unmask_flags(cache->vaddr) | (unsigned long)vaddr;
Chris Wilson31a39202016-08-18 17:16:46 +0100946 cache->page = page;
Chris Wilson31a39202016-08-18 17:16:46 +0100947
Chris Wilsond50415c2016-08-18 17:16:52 +0100948 return vaddr;
Chris Wilson31a39202016-08-18 17:16:46 +0100949}
950
Chris Wilsond50415c2016-08-18 17:16:52 +0100951static void *reloc_iomap(struct drm_i915_gem_object *obj,
Chris Wilson31a39202016-08-18 17:16:46 +0100952 struct reloc_cache *cache,
Chris Wilson2889caa2017-06-16 15:05:19 +0100953 unsigned long page)
Chris Wilson31a39202016-08-18 17:16:46 +0100954{
Chris Wilson650bc632017-06-15 09:14:33 +0100955 struct i915_ggtt *ggtt = cache_to_ggtt(cache);
Chris Wilsone8cb9092016-08-18 17:16:53 +0100956 unsigned long offset;
Chris Wilsond50415c2016-08-18 17:16:52 +0100957 void *vaddr;
Chris Wilson31a39202016-08-18 17:16:46 +0100958
Chris Wilsond50415c2016-08-18 17:16:52 +0100959 if (cache->vaddr) {
Jani Nikula615e5002016-10-04 12:54:13 +0300960 io_mapping_unmap_atomic((void __force __iomem *) unmask_page(cache->vaddr));
Chris Wilsond50415c2016-08-18 17:16:52 +0100961 } else {
962 struct i915_vma *vma;
Chris Wilson2889caa2017-06-16 15:05:19 +0100963 int err;
Chris Wilson31a39202016-08-18 17:16:46 +0100964
Chris Wilson2889caa2017-06-16 15:05:19 +0100965 if (use_cpu_reloc(cache, obj))
Chris Wilsond50415c2016-08-18 17:16:52 +0100966 return NULL;
Chris Wilson31a39202016-08-18 17:16:46 +0100967
Chris Wilson2889caa2017-06-16 15:05:19 +0100968 err = i915_gem_object_set_to_gtt_domain(obj, true);
969 if (err)
970 return ERR_PTR(err);
Chris Wilson31a39202016-08-18 17:16:46 +0100971
Chris Wilsond50415c2016-08-18 17:16:52 +0100972 vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0,
973 PIN_MAPPABLE | PIN_NONBLOCK);
Chris Wilsone8cb9092016-08-18 17:16:53 +0100974 if (IS_ERR(vma)) {
975 memset(&cache->node, 0, sizeof(cache->node));
Chris Wilson2889caa2017-06-16 15:05:19 +0100976 err = drm_mm_insert_node_in_range
Chris Wilsone8cb9092016-08-18 17:16:53 +0100977 (&ggtt->base.mm, &cache->node,
Chris Wilsonf51455d2017-01-10 14:47:34 +0000978 PAGE_SIZE, 0, I915_COLOR_UNEVICTABLE,
Chris Wilsone8cb9092016-08-18 17:16:53 +0100979 0, ggtt->mappable_end,
Chris Wilson4e64e552017-02-02 21:04:38 +0000980 DRM_MM_INSERT_LOW);
Chris Wilson2889caa2017-06-16 15:05:19 +0100981 if (err) /* no inactive aperture space, use cpu reloc */
Chris Wilsonc92fa4f2016-10-07 07:53:25 +0100982 return NULL;
Chris Wilsone8cb9092016-08-18 17:16:53 +0100983 } else {
Chris Wilson2889caa2017-06-16 15:05:19 +0100984 err = i915_vma_put_fence(vma);
985 if (err) {
Chris Wilsone8cb9092016-08-18 17:16:53 +0100986 i915_vma_unpin(vma);
Chris Wilson2889caa2017-06-16 15:05:19 +0100987 return ERR_PTR(err);
Chris Wilsone8cb9092016-08-18 17:16:53 +0100988 }
Rafael Barbalho5032d872013-08-21 17:10:51 +0100989
Chris Wilsone8cb9092016-08-18 17:16:53 +0100990 cache->node.start = vma->node.start;
991 cache->node.mm = (void *)vma;
Chris Wilsond50415c2016-08-18 17:16:52 +0100992 }
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700993 }
994
Chris Wilsone8cb9092016-08-18 17:16:53 +0100995 offset = cache->node.start;
996 if (cache->node.allocated) {
Chris Wilsonfc099092016-10-28 15:27:56 +0100997 wmb();
Chris Wilsone8cb9092016-08-18 17:16:53 +0100998 ggtt->base.insert_page(&ggtt->base,
999 i915_gem_object_get_dma_address(obj, page),
1000 offset, I915_CACHE_NONE, 0);
1001 } else {
1002 offset += page << PAGE_SHIFT;
1003 }
1004
Chris Wilson650bc632017-06-15 09:14:33 +01001005 vaddr = (void __force *)io_mapping_map_atomic_wc(&ggtt->mappable,
1006 offset);
Chris Wilsond50415c2016-08-18 17:16:52 +01001007 cache->page = page;
1008 cache->vaddr = (unsigned long)vaddr;
1009
1010 return vaddr;
Rafael Barbalho5032d872013-08-21 17:10:51 +01001011}
1012
Chris Wilsond50415c2016-08-18 17:16:52 +01001013static void *reloc_vaddr(struct drm_i915_gem_object *obj,
1014 struct reloc_cache *cache,
Chris Wilson2889caa2017-06-16 15:05:19 +01001015 unsigned long page)
Chris Wilsonedf4427b2015-01-14 11:20:56 +00001016{
Chris Wilsond50415c2016-08-18 17:16:52 +01001017 void *vaddr;
1018
1019 if (cache->page == page) {
1020 vaddr = unmask_page(cache->vaddr);
1021 } else {
1022 vaddr = NULL;
1023 if ((cache->vaddr & KMAP) == 0)
1024 vaddr = reloc_iomap(obj, cache, page);
1025 if (!vaddr)
1026 vaddr = reloc_kmap(obj, cache, page);
1027 }
1028
1029 return vaddr;
1030}
1031
1032static void clflush_write32(u32 *addr, u32 value, unsigned int flushes)
1033{
1034 if (unlikely(flushes & (CLFLUSH_BEFORE | CLFLUSH_AFTER))) {
1035 if (flushes & CLFLUSH_BEFORE) {
1036 clflushopt(addr);
1037 mb();
1038 }
1039
1040 *addr = value;
1041
Chris Wilson2889caa2017-06-16 15:05:19 +01001042 /*
1043 * Writes to the same cacheline are serialised by the CPU
Chris Wilsond50415c2016-08-18 17:16:52 +01001044 * (including clflush). On the write path, we only require
1045 * that it hits memory in an orderly fashion and place
1046 * mb barriers at the start and end of the relocation phase
1047 * to ensure ordering of clflush wrt to the system.
1048 */
1049 if (flushes & CLFLUSH_AFTER)
1050 clflushopt(addr);
1051 } else
1052 *addr = value;
Chris Wilsonedf4427b2015-01-14 11:20:56 +00001053}
1054
Chris Wilson7dd4f672017-06-16 15:05:24 +01001055static int __reloc_gpu_alloc(struct i915_execbuffer *eb,
1056 struct i915_vma *vma,
1057 unsigned int len)
1058{
1059 struct reloc_cache *cache = &eb->reloc_cache;
1060 struct drm_i915_gem_object *obj;
1061 struct drm_i915_gem_request *rq;
1062 struct i915_vma *batch;
1063 u32 *cmd;
1064 int err;
1065
1066 GEM_BUG_ON(vma->obj->base.write_domain & I915_GEM_DOMAIN_CPU);
1067
1068 obj = i915_gem_batch_pool_get(&eb->engine->batch_pool, PAGE_SIZE);
1069 if (IS_ERR(obj))
1070 return PTR_ERR(obj);
1071
1072 cmd = i915_gem_object_pin_map(obj,
1073 cache->has_llc ? I915_MAP_WB : I915_MAP_WC);
1074 i915_gem_object_unpin_pages(obj);
1075 if (IS_ERR(cmd))
1076 return PTR_ERR(cmd);
1077
1078 err = i915_gem_object_set_to_wc_domain(obj, false);
1079 if (err)
1080 goto err_unmap;
1081
1082 batch = i915_vma_instance(obj, vma->vm, NULL);
1083 if (IS_ERR(batch)) {
1084 err = PTR_ERR(batch);
1085 goto err_unmap;
1086 }
1087
1088 err = i915_vma_pin(batch, 0, 0, PIN_USER | PIN_NONBLOCK);
1089 if (err)
1090 goto err_unmap;
1091
1092 rq = i915_gem_request_alloc(eb->engine, eb->ctx);
1093 if (IS_ERR(rq)) {
1094 err = PTR_ERR(rq);
1095 goto err_unpin;
1096 }
1097
1098 err = i915_gem_request_await_object(rq, vma->obj, true);
1099 if (err)
1100 goto err_request;
1101
1102 err = eb->engine->emit_flush(rq, EMIT_INVALIDATE);
1103 if (err)
1104 goto err_request;
1105
1106 err = i915_switch_context(rq);
1107 if (err)
1108 goto err_request;
1109
1110 err = eb->engine->emit_bb_start(rq,
1111 batch->node.start, PAGE_SIZE,
1112 cache->gen > 5 ? 0 : I915_DISPATCH_SECURE);
1113 if (err)
1114 goto err_request;
1115
Chris Wilson95ff7c72017-06-16 15:05:25 +01001116 GEM_BUG_ON(!reservation_object_test_signaled_rcu(batch->resv, true));
Chris Wilson7dd4f672017-06-16 15:05:24 +01001117 i915_vma_move_to_active(batch, rq, 0);
Chris Wilson95ff7c72017-06-16 15:05:25 +01001118 reservation_object_lock(batch->resv, NULL);
1119 reservation_object_add_excl_fence(batch->resv, &rq->fence);
1120 reservation_object_unlock(batch->resv);
Chris Wilson7dd4f672017-06-16 15:05:24 +01001121 i915_vma_unpin(batch);
1122
Chris Wilson25ffaa62017-06-20 13:43:20 +01001123 i915_vma_move_to_active(vma, rq, EXEC_OBJECT_WRITE);
Chris Wilson95ff7c72017-06-16 15:05:25 +01001124 reservation_object_lock(vma->resv, NULL);
1125 reservation_object_add_excl_fence(vma->resv, &rq->fence);
1126 reservation_object_unlock(vma->resv);
Chris Wilson7dd4f672017-06-16 15:05:24 +01001127
1128 rq->batch = batch;
1129
1130 cache->rq = rq;
1131 cache->rq_cmd = cmd;
1132 cache->rq_size = 0;
1133
1134 /* Return with batch mapping (cmd) still pinned */
1135 return 0;
1136
1137err_request:
1138 i915_add_request(rq);
1139err_unpin:
1140 i915_vma_unpin(batch);
1141err_unmap:
1142 i915_gem_object_unpin_map(obj);
1143 return err;
1144}
1145
1146static u32 *reloc_gpu(struct i915_execbuffer *eb,
1147 struct i915_vma *vma,
1148 unsigned int len)
1149{
1150 struct reloc_cache *cache = &eb->reloc_cache;
1151 u32 *cmd;
1152
1153 if (cache->rq_size > PAGE_SIZE/sizeof(u32) - (len + 1))
1154 reloc_gpu_flush(cache);
1155
1156 if (unlikely(!cache->rq)) {
1157 int err;
1158
1159 err = __reloc_gpu_alloc(eb, vma, len);
1160 if (unlikely(err))
1161 return ERR_PTR(err);
1162 }
1163
1164 cmd = cache->rq_cmd + cache->rq_size;
1165 cache->rq_size += len;
1166
1167 return cmd;
1168}
1169
Chris Wilson2889caa2017-06-16 15:05:19 +01001170static u64
1171relocate_entry(struct i915_vma *vma,
Chris Wilsond50415c2016-08-18 17:16:52 +01001172 const struct drm_i915_gem_relocation_entry *reloc,
Chris Wilson2889caa2017-06-16 15:05:19 +01001173 struct i915_execbuffer *eb,
1174 const struct i915_vma *target)
Chris Wilsonedf4427b2015-01-14 11:20:56 +00001175{
Chris Wilsond50415c2016-08-18 17:16:52 +01001176 u64 offset = reloc->offset;
Chris Wilson2889caa2017-06-16 15:05:19 +01001177 u64 target_offset = relocation_target(reloc, target);
1178 bool wide = eb->reloc_cache.use_64bit_reloc;
Chris Wilsond50415c2016-08-18 17:16:52 +01001179 void *vaddr;
Chris Wilsonedf4427b2015-01-14 11:20:56 +00001180
Chris Wilson7dd4f672017-06-16 15:05:24 +01001181 if (!eb->reloc_cache.vaddr &&
1182 (DBG_FORCE_RELOC == FORCE_GPU_RELOC ||
Chris Wilsonf2f5c062017-08-16 09:52:04 +01001183 !reservation_object_test_signaled_rcu(vma->resv, true)) &&
1184 __intel_engine_can_store_dword(eb->reloc_cache.gen,
1185 eb->engine->class)) {
Chris Wilson7dd4f672017-06-16 15:05:24 +01001186 const unsigned int gen = eb->reloc_cache.gen;
1187 unsigned int len;
1188 u32 *batch;
1189 u64 addr;
1190
1191 if (wide)
1192 len = offset & 7 ? 8 : 5;
1193 else if (gen >= 4)
1194 len = 4;
Chris Wilsonf2f5c062017-08-16 09:52:04 +01001195 else
Chris Wilson7dd4f672017-06-16 15:05:24 +01001196 len = 3;
Chris Wilson7dd4f672017-06-16 15:05:24 +01001197
1198 batch = reloc_gpu(eb, vma, len);
1199 if (IS_ERR(batch))
1200 goto repeat;
1201
1202 addr = gen8_canonical_addr(vma->node.start + offset);
1203 if (wide) {
1204 if (offset & 7) {
1205 *batch++ = MI_STORE_DWORD_IMM_GEN4;
1206 *batch++ = lower_32_bits(addr);
1207 *batch++ = upper_32_bits(addr);
1208 *batch++ = lower_32_bits(target_offset);
1209
1210 addr = gen8_canonical_addr(addr + 4);
1211
1212 *batch++ = MI_STORE_DWORD_IMM_GEN4;
1213 *batch++ = lower_32_bits(addr);
1214 *batch++ = upper_32_bits(addr);
1215 *batch++ = upper_32_bits(target_offset);
1216 } else {
1217 *batch++ = (MI_STORE_DWORD_IMM_GEN4 | (1 << 21)) + 1;
1218 *batch++ = lower_32_bits(addr);
1219 *batch++ = upper_32_bits(addr);
1220 *batch++ = lower_32_bits(target_offset);
1221 *batch++ = upper_32_bits(target_offset);
1222 }
1223 } else if (gen >= 6) {
1224 *batch++ = MI_STORE_DWORD_IMM_GEN4;
1225 *batch++ = 0;
1226 *batch++ = addr;
1227 *batch++ = target_offset;
1228 } else if (gen >= 4) {
1229 *batch++ = MI_STORE_DWORD_IMM_GEN4 | MI_USE_GGTT;
1230 *batch++ = 0;
1231 *batch++ = addr;
1232 *batch++ = target_offset;
1233 } else {
1234 *batch++ = MI_STORE_DWORD_IMM | MI_MEM_VIRTUAL;
1235 *batch++ = addr;
1236 *batch++ = target_offset;
1237 }
1238
1239 goto out;
1240 }
1241
Chris Wilsond50415c2016-08-18 17:16:52 +01001242repeat:
Chris Wilson95ff7c72017-06-16 15:05:25 +01001243 vaddr = reloc_vaddr(vma->obj, &eb->reloc_cache, offset >> PAGE_SHIFT);
Chris Wilsond50415c2016-08-18 17:16:52 +01001244 if (IS_ERR(vaddr))
1245 return PTR_ERR(vaddr);
Chris Wilsonedf4427b2015-01-14 11:20:56 +00001246
Chris Wilsond50415c2016-08-18 17:16:52 +01001247 clflush_write32(vaddr + offset_in_page(offset),
1248 lower_32_bits(target_offset),
Chris Wilson2889caa2017-06-16 15:05:19 +01001249 eb->reloc_cache.vaddr);
Chris Wilsonedf4427b2015-01-14 11:20:56 +00001250
Chris Wilsond50415c2016-08-18 17:16:52 +01001251 if (wide) {
1252 offset += sizeof(u32);
1253 target_offset >>= 32;
1254 wide = false;
1255 goto repeat;
Chris Wilsonedf4427b2015-01-14 11:20:56 +00001256 }
Chris Wilsondabdfe02012-03-26 10:10:27 +02001257
Chris Wilson7dd4f672017-06-16 15:05:24 +01001258out:
Chris Wilson2889caa2017-06-16 15:05:19 +01001259 return target->node.start | UPDATE;
Rafael Barbalho5032d872013-08-21 17:10:51 +01001260}
1261
Chris Wilson2889caa2017-06-16 15:05:19 +01001262static u64
1263eb_relocate_entry(struct i915_execbuffer *eb,
1264 struct i915_vma *vma,
1265 const struct drm_i915_gem_relocation_entry *reloc)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001266{
Chris Wilson507d9772017-06-16 15:05:17 +01001267 struct i915_vma *target;
Chris Wilson2889caa2017-06-16 15:05:19 +01001268 int err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001269
Chris Wilson67731b82010-12-08 10:38:14 +00001270 /* we've already hold a reference to all valid objects */
Chris Wilson507d9772017-06-16 15:05:17 +01001271 target = eb_get_vma(eb, reloc->target_handle);
1272 if (unlikely(!target))
Chris Wilson54cf91d2010-11-25 18:00:26 +00001273 return -ENOENT;
Eric Anholte844b992012-07-31 15:35:01 -07001274
Chris Wilson54cf91d2010-11-25 18:00:26 +00001275 /* Validate that the target is in a valid r/w GPU domain */
Chris Wilsonb8f7ab12010-12-08 10:43:06 +00001276 if (unlikely(reloc->write_domain & (reloc->write_domain - 1))) {
Daniel Vetterff240192012-01-31 21:08:14 +01001277 DRM_DEBUG("reloc with multiple write domains: "
Chris Wilson507d9772017-06-16 15:05:17 +01001278 "target %d offset %d "
Chris Wilson54cf91d2010-11-25 18:00:26 +00001279 "read %08x write %08x",
Chris Wilson507d9772017-06-16 15:05:17 +01001280 reloc->target_handle,
Chris Wilson54cf91d2010-11-25 18:00:26 +00001281 (int) reloc->offset,
1282 reloc->read_domains,
1283 reloc->write_domain);
Ben Widawsky8b78f0e2013-12-26 13:39:50 -08001284 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001285 }
Daniel Vetter4ca4a252011-12-14 13:57:27 +01001286 if (unlikely((reloc->write_domain | reloc->read_domains)
1287 & ~I915_GEM_GPU_DOMAINS)) {
Daniel Vetterff240192012-01-31 21:08:14 +01001288 DRM_DEBUG("reloc with read/write non-GPU domains: "
Chris Wilson507d9772017-06-16 15:05:17 +01001289 "target %d offset %d "
Chris Wilson54cf91d2010-11-25 18:00:26 +00001290 "read %08x write %08x",
Chris Wilson507d9772017-06-16 15:05:17 +01001291 reloc->target_handle,
Chris Wilson54cf91d2010-11-25 18:00:26 +00001292 (int) reloc->offset,
1293 reloc->read_domains,
1294 reloc->write_domain);
Ben Widawsky8b78f0e2013-12-26 13:39:50 -08001295 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001296 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001297
Chris Wilson2889caa2017-06-16 15:05:19 +01001298 if (reloc->write_domain) {
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001299 *target->exec_flags |= EXEC_OBJECT_WRITE;
Chris Wilson507d9772017-06-16 15:05:17 +01001300
Chris Wilson2889caa2017-06-16 15:05:19 +01001301 /*
1302 * Sandybridge PPGTT errata: We need a global gtt mapping
1303 * for MI and pipe_control writes because the gpu doesn't
1304 * properly redirect them through the ppgtt for non_secure
1305 * batchbuffers.
1306 */
1307 if (reloc->write_domain == I915_GEM_DOMAIN_INSTRUCTION &&
1308 IS_GEN6(eb->i915)) {
1309 err = i915_vma_bind(target, target->obj->cache_level,
1310 PIN_GLOBAL);
1311 if (WARN_ONCE(err,
1312 "Unexpected failure to bind target VMA!"))
1313 return err;
1314 }
Chris Wilson507d9772017-06-16 15:05:17 +01001315 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001316
Chris Wilson2889caa2017-06-16 15:05:19 +01001317 /*
1318 * If the relocation already has the right value in it, no
Chris Wilson54cf91d2010-11-25 18:00:26 +00001319 * more work needs to be done.
1320 */
Chris Wilson7dd4f672017-06-16 15:05:24 +01001321 if (!DBG_FORCE_RELOC &&
1322 gen8_canonical_addr(target->node.start) == reloc->presumed_offset)
Chris Wilson67731b82010-12-08 10:38:14 +00001323 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001324
1325 /* Check that the relocation address is valid... */
Ben Widawsky3c94cee2013-11-02 21:07:11 -07001326 if (unlikely(reloc->offset >
Chris Wilson507d9772017-06-16 15:05:17 +01001327 vma->size - (eb->reloc_cache.use_64bit_reloc ? 8 : 4))) {
Daniel Vetterff240192012-01-31 21:08:14 +01001328 DRM_DEBUG("Relocation beyond object bounds: "
Chris Wilson507d9772017-06-16 15:05:17 +01001329 "target %d offset %d size %d.\n",
1330 reloc->target_handle,
1331 (int)reloc->offset,
1332 (int)vma->size);
Ben Widawsky8b78f0e2013-12-26 13:39:50 -08001333 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001334 }
Chris Wilsonb8f7ab12010-12-08 10:43:06 +00001335 if (unlikely(reloc->offset & 3)) {
Daniel Vetterff240192012-01-31 21:08:14 +01001336 DRM_DEBUG("Relocation not 4-byte aligned: "
Chris Wilson507d9772017-06-16 15:05:17 +01001337 "target %d offset %d.\n",
1338 reloc->target_handle,
1339 (int)reloc->offset);
Ben Widawsky8b78f0e2013-12-26 13:39:50 -08001340 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001341 }
1342
Chris Wilson071750e2017-06-16 15:05:18 +01001343 /*
1344 * If we write into the object, we need to force the synchronisation
1345 * barrier, either with an asynchronous clflush or if we executed the
1346 * patching using the GPU (though that should be serialised by the
1347 * timeline). To be completely sure, and since we are required to
1348 * do relocations we are already stalling, disable the user's opt
Chris Wilson0519bcb2017-08-16 09:52:09 +01001349 * out of our synchronisation.
Chris Wilson071750e2017-06-16 15:05:18 +01001350 */
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001351 *vma->exec_flags &= ~EXEC_OBJECT_ASYNC;
Chris Wilson071750e2017-06-16 15:05:18 +01001352
Chris Wilson54cf91d2010-11-25 18:00:26 +00001353 /* and update the user's relocation entry */
Chris Wilson2889caa2017-06-16 15:05:19 +01001354 return relocate_entry(vma, reloc, eb, target);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001355}
1356
Chris Wilson2889caa2017-06-16 15:05:19 +01001357static int eb_relocate_vma(struct i915_execbuffer *eb, struct i915_vma *vma)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001358{
Chris Wilson1d83f442012-03-24 20:12:53 +00001359#define N_RELOC(x) ((x) / sizeof(struct drm_i915_gem_relocation_entry))
Chris Wilson2889caa2017-06-16 15:05:19 +01001360 struct drm_i915_gem_relocation_entry stack[N_RELOC(512)];
1361 struct drm_i915_gem_relocation_entry __user *urelocs;
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001362 const struct drm_i915_gem_exec_object2 *entry = exec_entry(eb, vma);
Chris Wilson2889caa2017-06-16 15:05:19 +01001363 unsigned int remain;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001364
Chris Wilson2889caa2017-06-16 15:05:19 +01001365 urelocs = u64_to_user_ptr(entry->relocs_ptr);
Chris Wilson1d83f442012-03-24 20:12:53 +00001366 remain = entry->relocation_count;
Chris Wilson2889caa2017-06-16 15:05:19 +01001367 if (unlikely(remain > N_RELOC(ULONG_MAX)))
1368 return -EINVAL;
Chris Wilsonebc08082016-10-18 13:02:51 +01001369
Chris Wilson2889caa2017-06-16 15:05:19 +01001370 /*
1371 * We must check that the entire relocation array is safe
1372 * to read. However, if the array is not writable the user loses
1373 * the updated relocation values.
1374 */
Imre Deakedd90032017-07-14 18:12:42 +03001375 if (unlikely(!access_ok(VERIFY_READ, urelocs, remain*sizeof(*urelocs))))
Chris Wilson2889caa2017-06-16 15:05:19 +01001376 return -EFAULT;
Chris Wilson1d83f442012-03-24 20:12:53 +00001377
Chris Wilson2889caa2017-06-16 15:05:19 +01001378 do {
1379 struct drm_i915_gem_relocation_entry *r = stack;
1380 unsigned int count =
1381 min_t(unsigned int, remain, ARRAY_SIZE(stack));
1382 unsigned int copied;
1383
1384 /*
1385 * This is the fast path and we cannot handle a pagefault
Chris Wilsonebc08082016-10-18 13:02:51 +01001386 * whilst holding the struct mutex lest the user pass in the
1387 * relocations contained within a mmaped bo. For in such a case
1388 * we, the page fault handler would call i915_gem_fault() and
1389 * we would try to acquire the struct mutex again. Obviously
1390 * this is bad and so lockdep complains vehemently.
1391 */
1392 pagefault_disable();
Chris Wilson2889caa2017-06-16 15:05:19 +01001393 copied = __copy_from_user_inatomic(r, urelocs, count * sizeof(r[0]));
Chris Wilsonebc08082016-10-18 13:02:51 +01001394 pagefault_enable();
Chris Wilson2889caa2017-06-16 15:05:19 +01001395 if (unlikely(copied)) {
1396 remain = -EFAULT;
Chris Wilson31a39202016-08-18 17:16:46 +01001397 goto out;
1398 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001399
Chris Wilson2889caa2017-06-16 15:05:19 +01001400 remain -= count;
Chris Wilson1d83f442012-03-24 20:12:53 +00001401 do {
Chris Wilson2889caa2017-06-16 15:05:19 +01001402 u64 offset = eb_relocate_entry(eb, vma, r);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001403
Chris Wilson2889caa2017-06-16 15:05:19 +01001404 if (likely(offset == 0)) {
1405 } else if ((s64)offset < 0) {
1406 remain = (int)offset;
Chris Wilson31a39202016-08-18 17:16:46 +01001407 goto out;
Chris Wilson2889caa2017-06-16 15:05:19 +01001408 } else {
1409 /*
1410 * Note that reporting an error now
1411 * leaves everything in an inconsistent
1412 * state as we have *already* changed
1413 * the relocation value inside the
1414 * object. As we have not changed the
1415 * reloc.presumed_offset or will not
1416 * change the execobject.offset, on the
1417 * call we may not rewrite the value
1418 * inside the object, leaving it
1419 * dangling and causing a GPU hang. Unless
1420 * userspace dynamically rebuilds the
1421 * relocations on each execbuf rather than
1422 * presume a static tree.
1423 *
1424 * We did previously check if the relocations
1425 * were writable (access_ok), an error now
1426 * would be a strange race with mprotect,
1427 * having already demonstrated that we
1428 * can read from this userspace address.
1429 */
1430 offset = gen8_canonical_addr(offset & ~UPDATE);
1431 __put_user(offset,
1432 &urelocs[r-stack].presumed_offset);
Chris Wilson1d83f442012-03-24 20:12:53 +00001433 }
Chris Wilson2889caa2017-06-16 15:05:19 +01001434 } while (r++, --count);
1435 urelocs += ARRAY_SIZE(stack);
1436 } while (remain);
Chris Wilson31a39202016-08-18 17:16:46 +01001437out:
Chris Wilson650bc632017-06-15 09:14:33 +01001438 reloc_cache_reset(&eb->reloc_cache);
Chris Wilson2889caa2017-06-16 15:05:19 +01001439 return remain;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001440}
1441
1442static int
Chris Wilson2889caa2017-06-16 15:05:19 +01001443eb_relocate_vma_slow(struct i915_execbuffer *eb, struct i915_vma *vma)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001444{
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001445 const struct drm_i915_gem_exec_object2 *entry = exec_entry(eb, vma);
Chris Wilson2889caa2017-06-16 15:05:19 +01001446 struct drm_i915_gem_relocation_entry *relocs =
1447 u64_to_ptr(typeof(*relocs), entry->relocs_ptr);
1448 unsigned int i;
1449 int err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001450
1451 for (i = 0; i < entry->relocation_count; i++) {
Chris Wilson2889caa2017-06-16 15:05:19 +01001452 u64 offset = eb_relocate_entry(eb, vma, &relocs[i]);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001453
Chris Wilson2889caa2017-06-16 15:05:19 +01001454 if ((s64)offset < 0) {
1455 err = (int)offset;
1456 goto err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001457 }
Chris Wilson2889caa2017-06-16 15:05:19 +01001458 }
1459 err = 0;
Chris Wilsona415d352013-11-26 11:23:15 +00001460err:
Chris Wilson2889caa2017-06-16 15:05:19 +01001461 reloc_cache_reset(&eb->reloc_cache);
1462 return err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001463}
1464
Chris Wilson2889caa2017-06-16 15:05:19 +01001465static int check_relocations(const struct drm_i915_gem_exec_object2 *entry)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001466{
Chris Wilson2889caa2017-06-16 15:05:19 +01001467 const char __user *addr, *end;
1468 unsigned long size;
1469 char __maybe_unused c;
Ben Widawsky27173f12013-08-14 11:38:36 +02001470
Chris Wilson2889caa2017-06-16 15:05:19 +01001471 size = entry->relocation_count;
1472 if (size == 0)
1473 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001474
Chris Wilson2889caa2017-06-16 15:05:19 +01001475 if (size > N_RELOC(ULONG_MAX))
1476 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001477
Chris Wilson2889caa2017-06-16 15:05:19 +01001478 addr = u64_to_user_ptr(entry->relocs_ptr);
1479 size *= sizeof(struct drm_i915_gem_relocation_entry);
1480 if (!access_ok(VERIFY_READ, addr, size))
1481 return -EFAULT;
1482
1483 end = addr + size;
1484 for (; addr < end; addr += PAGE_SIZE) {
1485 int err = __get_user(c, addr);
1486 if (err)
1487 return err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001488 }
Chris Wilson2889caa2017-06-16 15:05:19 +01001489 return __get_user(c, end - 1);
1490}
Chris Wilson54cf91d2010-11-25 18:00:26 +00001491
Chris Wilson2889caa2017-06-16 15:05:19 +01001492static int eb_copy_relocations(const struct i915_execbuffer *eb)
1493{
1494 const unsigned int count = eb->buffer_count;
1495 unsigned int i;
1496 int err;
1497
Chris Wilson54cf91d2010-11-25 18:00:26 +00001498 for (i = 0; i < count; i++) {
Chris Wilson2889caa2017-06-16 15:05:19 +01001499 const unsigned int nreloc = eb->exec[i].relocation_count;
1500 struct drm_i915_gem_relocation_entry __user *urelocs;
1501 struct drm_i915_gem_relocation_entry *relocs;
1502 unsigned long size;
1503 unsigned long copied;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001504
Chris Wilson2889caa2017-06-16 15:05:19 +01001505 if (nreloc == 0)
1506 continue;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001507
Chris Wilson2889caa2017-06-16 15:05:19 +01001508 err = check_relocations(&eb->exec[i]);
1509 if (err)
1510 goto err;
1511
1512 urelocs = u64_to_user_ptr(eb->exec[i].relocs_ptr);
1513 size = nreloc * sizeof(*relocs);
1514
1515 relocs = kvmalloc_array(size, 1, GFP_TEMPORARY);
1516 if (!relocs) {
1517 kvfree(relocs);
1518 err = -ENOMEM;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001519 goto err;
1520 }
1521
Chris Wilson2889caa2017-06-16 15:05:19 +01001522 /* copy_from_user is limited to < 4GiB */
1523 copied = 0;
1524 do {
1525 unsigned int len =
1526 min_t(u64, BIT_ULL(31), size - copied);
1527
1528 if (__copy_from_user((char *)relocs + copied,
1529 (char *)urelocs + copied,
1530 len)) {
1531 kvfree(relocs);
1532 err = -EFAULT;
1533 goto err;
1534 }
1535
1536 copied += len;
1537 } while (copied < size);
1538
1539 /*
1540 * As we do not update the known relocation offsets after
Chris Wilson262b6d32013-01-15 16:17:54 +00001541 * relocating (due to the complexities in lock handling),
1542 * we need to mark them as invalid now so that we force the
1543 * relocation processing next time. Just in case the target
1544 * object is evicted and then rebound into its old
1545 * presumed_offset before the next execbuffer - if that
1546 * happened we would make the mistake of assuming that the
1547 * relocations were valid.
1548 */
Chris Wilson2889caa2017-06-16 15:05:19 +01001549 user_access_begin();
1550 for (copied = 0; copied < nreloc; copied++)
1551 unsafe_put_user(-1,
1552 &urelocs[copied].presumed_offset,
1553 end_user);
1554end_user:
1555 user_access_end();
Chris Wilson262b6d32013-01-15 16:17:54 +00001556
Chris Wilson2889caa2017-06-16 15:05:19 +01001557 eb->exec[i].relocs_ptr = (uintptr_t)relocs;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001558 }
1559
Chris Wilson2889caa2017-06-16 15:05:19 +01001560 return 0;
1561
1562err:
1563 while (i--) {
1564 struct drm_i915_gem_relocation_entry *relocs =
1565 u64_to_ptr(typeof(*relocs), eb->exec[i].relocs_ptr);
1566 if (eb->exec[i].relocation_count)
1567 kvfree(relocs);
1568 }
1569 return err;
1570}
1571
1572static int eb_prefault_relocations(const struct i915_execbuffer *eb)
1573{
1574 const unsigned int count = eb->buffer_count;
1575 unsigned int i;
1576
1577 if (unlikely(i915.prefault_disable))
1578 return 0;
1579
1580 for (i = 0; i < count; i++) {
1581 int err;
1582
1583 err = check_relocations(&eb->exec[i]);
1584 if (err)
1585 return err;
1586 }
1587
1588 return 0;
1589}
1590
1591static noinline int eb_relocate_slow(struct i915_execbuffer *eb)
1592{
1593 struct drm_device *dev = &eb->i915->drm;
1594 bool have_copy = false;
1595 struct i915_vma *vma;
1596 int err = 0;
1597
1598repeat:
1599 if (signal_pending(current)) {
1600 err = -ERESTARTSYS;
1601 goto out;
1602 }
1603
1604 /* We may process another execbuffer during the unlock... */
1605 eb_reset_vmas(eb);
1606 mutex_unlock(&dev->struct_mutex);
1607
1608 /*
1609 * We take 3 passes through the slowpatch.
1610 *
1611 * 1 - we try to just prefault all the user relocation entries and
1612 * then attempt to reuse the atomic pagefault disabled fast path again.
1613 *
1614 * 2 - we copy the user entries to a local buffer here outside of the
1615 * local and allow ourselves to wait upon any rendering before
1616 * relocations
1617 *
1618 * 3 - we already have a local copy of the relocation entries, but
1619 * were interrupted (EAGAIN) whilst waiting for the objects, try again.
1620 */
1621 if (!err) {
1622 err = eb_prefault_relocations(eb);
1623 } else if (!have_copy) {
1624 err = eb_copy_relocations(eb);
1625 have_copy = err == 0;
1626 } else {
1627 cond_resched();
1628 err = 0;
1629 }
1630 if (err) {
Chris Wilson54cf91d2010-11-25 18:00:26 +00001631 mutex_lock(&dev->struct_mutex);
Chris Wilson2889caa2017-06-16 15:05:19 +01001632 goto out;
1633 }
1634
Chris Wilson8a2421b2017-06-16 15:05:22 +01001635 /* A frequent cause for EAGAIN are currently unavailable client pages */
1636 flush_workqueue(eb->i915->mm.userptr_wq);
1637
Chris Wilson2889caa2017-06-16 15:05:19 +01001638 err = i915_mutex_lock_interruptible(dev);
1639 if (err) {
1640 mutex_lock(&dev->struct_mutex);
1641 goto out;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001642 }
1643
Chris Wilson67731b82010-12-08 10:38:14 +00001644 /* reacquire the objects */
Chris Wilson2889caa2017-06-16 15:05:19 +01001645 err = eb_lookup_vmas(eb);
1646 if (err)
Chris Wilson3b96eff2013-01-08 10:53:14 +00001647 goto err;
Chris Wilson67731b82010-12-08 10:38:14 +00001648
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001649 GEM_BUG_ON(!eb->batch);
1650
Chris Wilson2889caa2017-06-16 15:05:19 +01001651 list_for_each_entry(vma, &eb->relocs, reloc_link) {
1652 if (!have_copy) {
1653 pagefault_disable();
1654 err = eb_relocate_vma(eb, vma);
1655 pagefault_enable();
1656 if (err)
1657 goto repeat;
1658 } else {
1659 err = eb_relocate_vma_slow(eb, vma);
1660 if (err)
1661 goto err;
1662 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001663 }
1664
Chris Wilson2889caa2017-06-16 15:05:19 +01001665 /*
1666 * Leave the user relocations as are, this is the painfully slow path,
Chris Wilson54cf91d2010-11-25 18:00:26 +00001667 * and we want to avoid the complication of dropping the lock whilst
1668 * having buffers reserved in the aperture and so causing spurious
1669 * ENOSPC for random operations.
1670 */
1671
1672err:
Chris Wilson2889caa2017-06-16 15:05:19 +01001673 if (err == -EAGAIN)
1674 goto repeat;
1675
1676out:
1677 if (have_copy) {
1678 const unsigned int count = eb->buffer_count;
1679 unsigned int i;
1680
1681 for (i = 0; i < count; i++) {
1682 const struct drm_i915_gem_exec_object2 *entry =
1683 &eb->exec[i];
1684 struct drm_i915_gem_relocation_entry *relocs;
1685
1686 if (!entry->relocation_count)
1687 continue;
1688
1689 relocs = u64_to_ptr(typeof(*relocs), entry->relocs_ptr);
1690 kvfree(relocs);
1691 }
1692 }
1693
Chris Wilson1f727d92017-07-21 15:50:36 +01001694 return err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001695}
1696
Chris Wilson2889caa2017-06-16 15:05:19 +01001697static int eb_relocate(struct i915_execbuffer *eb)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001698{
Chris Wilson2889caa2017-06-16 15:05:19 +01001699 if (eb_lookup_vmas(eb))
1700 goto slow;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001701
Chris Wilson2889caa2017-06-16 15:05:19 +01001702 /* The objects are in their final locations, apply the relocations. */
1703 if (eb->args->flags & __EXEC_HAS_RELOC) {
1704 struct i915_vma *vma;
1705
1706 list_for_each_entry(vma, &eb->relocs, reloc_link) {
1707 if (eb_relocate_vma(eb, vma))
1708 goto slow;
1709 }
1710 }
1711
1712 return 0;
1713
1714slow:
1715 return eb_relocate_slow(eb);
1716}
1717
Chris Wilson95ff7c72017-06-16 15:05:25 +01001718static void eb_export_fence(struct i915_vma *vma,
Chris Wilson2889caa2017-06-16 15:05:19 +01001719 struct drm_i915_gem_request *req,
1720 unsigned int flags)
1721{
Chris Wilson95ff7c72017-06-16 15:05:25 +01001722 struct reservation_object *resv = vma->resv;
Chris Wilson2889caa2017-06-16 15:05:19 +01001723
1724 /*
1725 * Ignore errors from failing to allocate the new fence, we can't
1726 * handle an error right now. Worst case should be missed
1727 * synchronisation leading to rendering corruption.
1728 */
1729 reservation_object_lock(resv, NULL);
1730 if (flags & EXEC_OBJECT_WRITE)
1731 reservation_object_add_excl_fence(resv, &req->fence);
1732 else if (reservation_object_reserve_shared(resv) == 0)
1733 reservation_object_add_shared_fence(resv, &req->fence);
1734 reservation_object_unlock(resv);
1735}
1736
1737static int eb_move_to_gpu(struct i915_execbuffer *eb)
1738{
1739 const unsigned int count = eb->buffer_count;
1740 unsigned int i;
1741 int err;
1742
1743 for (i = 0; i < count; i++) {
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001744 unsigned int flags = eb->flags[i];
1745 struct i915_vma *vma = eb->vma[i];
Ben Widawsky27173f12013-08-14 11:38:36 +02001746 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilson03ade512015-04-27 13:41:18 +01001747
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001748 if (flags & EXEC_OBJECT_CAPTURE) {
Chris Wilsonb0fd47a2017-04-15 10:39:02 +01001749 struct i915_gem_capture_list *capture;
1750
1751 capture = kmalloc(sizeof(*capture), GFP_KERNEL);
1752 if (unlikely(!capture))
1753 return -ENOMEM;
1754
Chris Wilson650bc632017-06-15 09:14:33 +01001755 capture->next = eb->request->capture_list;
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001756 capture->vma = eb->vma[i];
Chris Wilson650bc632017-06-15 09:14:33 +01001757 eb->request->capture_list = capture;
Chris Wilsonb0fd47a2017-04-15 10:39:02 +01001758 }
1759
Chris Wilsonb8f55be2017-08-11 12:11:16 +01001760 /*
1761 * If the GPU is not _reading_ through the CPU cache, we need
1762 * to make sure that any writes (both previous GPU writes from
1763 * before a change in snooping levels and normal CPU writes)
1764 * caught in that cache are flushed to main memory.
1765 *
1766 * We want to say
1767 * obj->cache_dirty &&
1768 * !(obj->cache_coherent & I915_BO_CACHE_COHERENT_FOR_READ)
1769 * but gcc's optimiser doesn't handle that as well and emits
1770 * two jumps instead of one. Maybe one day...
1771 */
1772 if (unlikely(obj->cache_dirty & ~obj->cache_coherent)) {
Chris Wilson0f46daa2017-07-21 15:50:37 +01001773 if (i915_gem_clflush_object(obj, 0))
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001774 flags &= ~EXEC_OBJECT_ASYNC;
Chris Wilson0f46daa2017-07-21 15:50:37 +01001775 }
1776
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001777 if (flags & EXEC_OBJECT_ASYNC)
1778 continue;
Chris Wilson77ae9952017-01-27 09:40:07 +00001779
Chris Wilson2889caa2017-06-16 15:05:19 +01001780 err = i915_gem_request_await_object
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001781 (eb->request, obj, flags & EXEC_OBJECT_WRITE);
Chris Wilson2889caa2017-06-16 15:05:19 +01001782 if (err)
1783 return err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001784 }
1785
Chris Wilson2889caa2017-06-16 15:05:19 +01001786 for (i = 0; i < count; i++) {
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001787 unsigned int flags = eb->flags[i];
1788 struct i915_vma *vma = eb->vma[i];
Chris Wilson2889caa2017-06-16 15:05:19 +01001789
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001790 i915_vma_move_to_active(vma, eb->request, flags);
1791 eb_export_fence(vma, eb->request, flags);
1792
1793 __eb_unreserve_vma(vma, flags);
1794 vma->exec_flags = NULL;
1795
1796 if (unlikely(flags & __EXEC_OBJECT_HAS_REF))
Chris Wilsondade2a62017-06-16 15:05:20 +01001797 i915_vma_put(vma);
Chris Wilson2889caa2017-06-16 15:05:19 +01001798 }
1799 eb->exec = NULL;
1800
Chris Wilsondcd79932016-08-18 17:16:40 +01001801 /* Unconditionally flush any chipset caches (for streaming writes). */
Chris Wilson650bc632017-06-15 09:14:33 +01001802 i915_gem_chipset_flush(eb->i915);
Daniel Vetter6ac42f42012-07-21 12:25:01 +02001803
Chris Wilsonc7fe7d22016-08-02 22:50:24 +01001804 /* Unconditionally invalidate GPU caches and TLBs. */
Chris Wilson650bc632017-06-15 09:14:33 +01001805 return eb->engine->emit_flush(eb->request, EMIT_INVALIDATE);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001806}
1807
Chris Wilson2889caa2017-06-16 15:05:19 +01001808static bool i915_gem_check_execbuffer(struct drm_i915_gem_execbuffer2 *exec)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001809{
Chris Wilson650bc632017-06-15 09:14:33 +01001810 if (exec->flags & __I915_EXEC_ILLEGAL_FLAGS)
Daniel Vettered5982e2013-01-17 22:23:36 +01001811 return false;
1812
Chris Wilson2f5945b2015-10-06 11:39:55 +01001813 /* Kernel clipping was a DRI1 misfeature */
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01001814 if (!(exec->flags & I915_EXEC_FENCE_ARRAY)) {
1815 if (exec->num_cliprects || exec->cliprects_ptr)
1816 return false;
1817 }
Chris Wilson2f5945b2015-10-06 11:39:55 +01001818
1819 if (exec->DR4 == 0xffffffff) {
1820 DRM_DEBUG("UXA submitting garbage DR4, fixing up\n");
1821 exec->DR4 = 0;
1822 }
1823 if (exec->DR1 || exec->DR4)
1824 return false;
1825
1826 if ((exec->batch_start_offset | exec->batch_len) & 0x7)
1827 return false;
1828
1829 return true;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001830}
1831
Chris Wilson5cf3d282016-08-04 07:52:43 +01001832void i915_vma_move_to_active(struct i915_vma *vma,
1833 struct drm_i915_gem_request *req,
1834 unsigned int flags)
1835{
1836 struct drm_i915_gem_object *obj = vma->obj;
1837 const unsigned int idx = req->engine->id;
1838
Chris Wilson81147b02016-12-18 15:37:18 +00001839 lockdep_assert_held(&req->i915->drm.struct_mutex);
Chris Wilson5cf3d282016-08-04 07:52:43 +01001840 GEM_BUG_ON(!drm_mm_node_allocated(&vma->node));
1841
Chris Wilson2889caa2017-06-16 15:05:19 +01001842 /*
1843 * Add a reference if we're newly entering the active list.
Chris Wilsonb0decaf2016-08-04 07:52:44 +01001844 * The order in which we add operations to the retirement queue is
1845 * vital here: mark_active adds to the start of the callback list,
1846 * such that subsequent callbacks are called first. Therefore we
1847 * add the active reference first and queue for it to be dropped
1848 * *last*.
1849 */
Chris Wilsond07f0e52016-10-28 13:58:44 +01001850 if (!i915_vma_is_active(vma))
1851 obj->active_count++;
1852 i915_vma_set_active(vma, idx);
1853 i915_gem_active_set(&vma->last_read[idx], req);
1854 list_move_tail(&vma->vm_link, &vma->vm->active_list);
Chris Wilson5cf3d282016-08-04 07:52:43 +01001855
Chris Wilsone27ab732017-06-15 13:38:49 +01001856 obj->base.write_domain = 0;
Chris Wilson5cf3d282016-08-04 07:52:43 +01001857 if (flags & EXEC_OBJECT_WRITE) {
Chris Wilsone27ab732017-06-15 13:38:49 +01001858 obj->base.write_domain = I915_GEM_DOMAIN_RENDER;
1859
Chris Wilson5b8c8ae2016-11-16 19:07:04 +00001860 if (intel_fb_obj_invalidate(obj, ORIGIN_CS))
1861 i915_gem_active_set(&obj->frontbuffer_write, req);
Chris Wilson5cf3d282016-08-04 07:52:43 +01001862
Chris Wilsone27ab732017-06-15 13:38:49 +01001863 obj->base.read_domains = 0;
Chris Wilson5cf3d282016-08-04 07:52:43 +01001864 }
Chris Wilsone27ab732017-06-15 13:38:49 +01001865 obj->base.read_domains |= I915_GEM_GPU_DOMAINS;
Chris Wilson5cf3d282016-08-04 07:52:43 +01001866
Chris Wilson49ef5292016-08-18 17:17:00 +01001867 if (flags & EXEC_OBJECT_NEEDS_FENCE)
1868 i915_gem_active_set(&vma->last_fence, req);
Chris Wilson5cf3d282016-08-04 07:52:43 +01001869}
1870
Chris Wilson2889caa2017-06-16 15:05:19 +01001871static int i915_reset_gen7_sol_offsets(struct drm_i915_gem_request *req)
Eric Anholtae662d32012-01-03 09:23:29 -08001872{
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001873 u32 *cs;
1874 int i;
Eric Anholtae662d32012-01-03 09:23:29 -08001875
Chris Wilsonb5321f32016-08-02 22:50:18 +01001876 if (!IS_GEN7(req->i915) || req->engine->id != RCS) {
Daniel Vetter9d662da2014-04-24 08:09:09 +02001877 DRM_DEBUG("sol reset is gen7/rcs only\n");
1878 return -EINVAL;
1879 }
Eric Anholtae662d32012-01-03 09:23:29 -08001880
Chris Wilson2889caa2017-06-16 15:05:19 +01001881 cs = intel_ring_begin(req, 4 * 2 + 2);
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001882 if (IS_ERR(cs))
1883 return PTR_ERR(cs);
Eric Anholtae662d32012-01-03 09:23:29 -08001884
Chris Wilson2889caa2017-06-16 15:05:19 +01001885 *cs++ = MI_LOAD_REGISTER_IMM(4);
Eric Anholtae662d32012-01-03 09:23:29 -08001886 for (i = 0; i < 4; i++) {
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001887 *cs++ = i915_mmio_reg_offset(GEN7_SO_WRITE_OFFSET(i));
1888 *cs++ = 0;
Eric Anholtae662d32012-01-03 09:23:29 -08001889 }
Chris Wilson2889caa2017-06-16 15:05:19 +01001890 *cs++ = MI_NOOP;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001891 intel_ring_advance(req, cs);
Eric Anholtae662d32012-01-03 09:23:29 -08001892
1893 return 0;
1894}
1895
Chris Wilson650bc632017-06-15 09:14:33 +01001896static struct i915_vma *eb_parse(struct i915_execbuffer *eb, bool is_master)
Brad Volkin71745372014-12-11 12:13:12 -08001897{
Brad Volkin71745372014-12-11 12:13:12 -08001898 struct drm_i915_gem_object *shadow_batch_obj;
Chris Wilson17cabf52015-01-14 11:20:57 +00001899 struct i915_vma *vma;
Chris Wilson2889caa2017-06-16 15:05:19 +01001900 int err;
Brad Volkin71745372014-12-11 12:13:12 -08001901
Chris Wilson650bc632017-06-15 09:14:33 +01001902 shadow_batch_obj = i915_gem_batch_pool_get(&eb->engine->batch_pool,
1903 PAGE_ALIGN(eb->batch_len));
Brad Volkin71745372014-12-11 12:13:12 -08001904 if (IS_ERR(shadow_batch_obj))
Chris Wilson59bfa122016-08-04 16:32:31 +01001905 return ERR_CAST(shadow_batch_obj);
Brad Volkin71745372014-12-11 12:13:12 -08001906
Chris Wilson2889caa2017-06-16 15:05:19 +01001907 err = intel_engine_cmd_parser(eb->engine,
Chris Wilson650bc632017-06-15 09:14:33 +01001908 eb->batch->obj,
Chris Wilson33a051a2016-07-27 09:07:26 +01001909 shadow_batch_obj,
Chris Wilson650bc632017-06-15 09:14:33 +01001910 eb->batch_start_offset,
1911 eb->batch_len,
Chris Wilson33a051a2016-07-27 09:07:26 +01001912 is_master);
Chris Wilson2889caa2017-06-16 15:05:19 +01001913 if (err) {
1914 if (err == -EACCES) /* unhandled chained batch */
Chris Wilson058d88c2016-08-15 10:49:06 +01001915 vma = NULL;
1916 else
Chris Wilson2889caa2017-06-16 15:05:19 +01001917 vma = ERR_PTR(err);
Chris Wilson058d88c2016-08-15 10:49:06 +01001918 goto out;
1919 }
Brad Volkin71745372014-12-11 12:13:12 -08001920
Chris Wilson058d88c2016-08-15 10:49:06 +01001921 vma = i915_gem_object_ggtt_pin(shadow_batch_obj, NULL, 0, 0, 0);
1922 if (IS_ERR(vma))
1923 goto out;
Chris Wilsonde4e7832015-04-07 16:20:35 +01001924
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001925 eb->vma[eb->buffer_count] = i915_vma_get(vma);
1926 eb->flags[eb->buffer_count] =
1927 __EXEC_OBJECT_HAS_PIN | __EXEC_OBJECT_HAS_REF;
1928 vma->exec_flags = &eb->flags[eb->buffer_count];
1929 eb->buffer_count++;
Brad Volkin71745372014-12-11 12:13:12 -08001930
Chris Wilson058d88c2016-08-15 10:49:06 +01001931out:
Chris Wilsonde4e7832015-04-07 16:20:35 +01001932 i915_gem_object_unpin_pages(shadow_batch_obj);
Chris Wilson058d88c2016-08-15 10:49:06 +01001933 return vma;
Brad Volkin71745372014-12-11 12:13:12 -08001934}
Chris Wilson5c6c6002014-09-06 10:28:27 +01001935
Chris Wilsonc8659ef2017-03-02 12:25:25 +00001936static void
Chris Wilson2889caa2017-06-16 15:05:19 +01001937add_to_client(struct drm_i915_gem_request *req, struct drm_file *file)
Chris Wilsonc8659ef2017-03-02 12:25:25 +00001938{
1939 req->file_priv = file->driver_priv;
1940 list_add_tail(&req->client_link, &req->file_priv->mm.request_list);
1941}
1942
Chris Wilson2889caa2017-06-16 15:05:19 +01001943static int eb_submit(struct i915_execbuffer *eb)
Oscar Mateo78382592014-07-03 16:28:05 +01001944{
Chris Wilson2889caa2017-06-16 15:05:19 +01001945 int err;
Oscar Mateo78382592014-07-03 16:28:05 +01001946
Chris Wilson2889caa2017-06-16 15:05:19 +01001947 err = eb_move_to_gpu(eb);
1948 if (err)
1949 return err;
Oscar Mateo78382592014-07-03 16:28:05 +01001950
Chris Wilson2889caa2017-06-16 15:05:19 +01001951 err = i915_switch_context(eb->request);
1952 if (err)
1953 return err;
Oscar Mateo78382592014-07-03 16:28:05 +01001954
Chris Wilson650bc632017-06-15 09:14:33 +01001955 if (eb->args->flags & I915_EXEC_GEN7_SOL_RESET) {
Chris Wilson2889caa2017-06-16 15:05:19 +01001956 err = i915_reset_gen7_sol_offsets(eb->request);
1957 if (err)
1958 return err;
Oscar Mateo78382592014-07-03 16:28:05 +01001959 }
1960
Chris Wilson2889caa2017-06-16 15:05:19 +01001961 err = eb->engine->emit_bb_start(eb->request,
Chris Wilson650bc632017-06-15 09:14:33 +01001962 eb->batch->node.start +
1963 eb->batch_start_offset,
1964 eb->batch_len,
Chris Wilson2889caa2017-06-16 15:05:19 +01001965 eb->batch_flags);
1966 if (err)
1967 return err;
Oscar Mateo78382592014-07-03 16:28:05 +01001968
Chris Wilson2f5945b2015-10-06 11:39:55 +01001969 return 0;
Oscar Mateo78382592014-07-03 16:28:05 +01001970}
1971
Zhao Yakuia8ebba72014-04-17 10:37:40 +08001972/**
1973 * Find one BSD ring to dispatch the corresponding BSD command.
Chris Wilsonc80ff162016-07-27 09:07:27 +01001974 * The engine index is returned.
Zhao Yakuia8ebba72014-04-17 10:37:40 +08001975 */
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001976static unsigned int
Chris Wilsonc80ff162016-07-27 09:07:27 +01001977gen8_dispatch_bsd_engine(struct drm_i915_private *dev_priv,
1978 struct drm_file *file)
Zhao Yakuia8ebba72014-04-17 10:37:40 +08001979{
Zhao Yakuia8ebba72014-04-17 10:37:40 +08001980 struct drm_i915_file_private *file_priv = file->driver_priv;
1981
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001982 /* Check whether the file_priv has already selected one ring. */
Joonas Lahtinen6f633402016-09-01 14:58:21 +03001983 if ((int)file_priv->bsd_engine < 0)
1984 file_priv->bsd_engine = atomic_fetch_xor(1,
1985 &dev_priv->mm.bsd_engine_dispatch_index);
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001986
Chris Wilsonc80ff162016-07-27 09:07:27 +01001987 return file_priv->bsd_engine;
Chris Wilsond23db882014-05-23 08:48:08 +02001988}
1989
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001990#define I915_USER_RINGS (4)
1991
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00001992static const enum intel_engine_id user_ring_map[I915_USER_RINGS + 1] = {
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00001993 [I915_EXEC_DEFAULT] = RCS,
1994 [I915_EXEC_RENDER] = RCS,
1995 [I915_EXEC_BLT] = BCS,
1996 [I915_EXEC_BSD] = VCS,
1997 [I915_EXEC_VEBOX] = VECS
1998};
1999
Dave Gordonf8ca0c02016-07-20 18:16:07 +01002000static struct intel_engine_cs *
2001eb_select_engine(struct drm_i915_private *dev_priv,
2002 struct drm_file *file,
2003 struct drm_i915_gem_execbuffer2 *args)
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002004{
2005 unsigned int user_ring_id = args->flags & I915_EXEC_RING_MASK;
Dave Gordonf8ca0c02016-07-20 18:16:07 +01002006 struct intel_engine_cs *engine;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002007
2008 if (user_ring_id > I915_USER_RINGS) {
2009 DRM_DEBUG("execbuf with unknown ring: %u\n", user_ring_id);
Dave Gordonf8ca0c02016-07-20 18:16:07 +01002010 return NULL;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002011 }
2012
2013 if ((user_ring_id != I915_EXEC_BSD) &&
2014 ((args->flags & I915_EXEC_BSD_MASK) != 0)) {
2015 DRM_DEBUG("execbuf with non bsd ring but with invalid "
2016 "bsd dispatch flags: %d\n", (int)(args->flags));
Dave Gordonf8ca0c02016-07-20 18:16:07 +01002017 return NULL;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002018 }
2019
2020 if (user_ring_id == I915_EXEC_BSD && HAS_BSD2(dev_priv)) {
2021 unsigned int bsd_idx = args->flags & I915_EXEC_BSD_MASK;
2022
2023 if (bsd_idx == I915_EXEC_BSD_DEFAULT) {
Chris Wilsonc80ff162016-07-27 09:07:27 +01002024 bsd_idx = gen8_dispatch_bsd_engine(dev_priv, file);
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002025 } else if (bsd_idx >= I915_EXEC_BSD_RING1 &&
2026 bsd_idx <= I915_EXEC_BSD_RING2) {
Tvrtko Ursulind9da6aa2016-01-27 13:41:09 +00002027 bsd_idx >>= I915_EXEC_BSD_SHIFT;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002028 bsd_idx--;
2029 } else {
2030 DRM_DEBUG("execbuf with unknown bsd ring: %u\n",
2031 bsd_idx);
Dave Gordonf8ca0c02016-07-20 18:16:07 +01002032 return NULL;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002033 }
2034
Akash Goel3b3f1652016-10-13 22:44:48 +05302035 engine = dev_priv->engine[_VCS(bsd_idx)];
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002036 } else {
Akash Goel3b3f1652016-10-13 22:44:48 +05302037 engine = dev_priv->engine[user_ring_map[user_ring_id]];
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002038 }
2039
Akash Goel3b3f1652016-10-13 22:44:48 +05302040 if (!engine) {
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002041 DRM_DEBUG("execbuf with invalid ring: %u\n", user_ring_id);
Dave Gordonf8ca0c02016-07-20 18:16:07 +01002042 return NULL;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002043 }
2044
Dave Gordonf8ca0c02016-07-20 18:16:07 +01002045 return engine;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002046}
2047
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01002048static void
2049__free_fence_array(struct drm_syncobj **fences, unsigned int n)
2050{
2051 while (n--)
2052 drm_syncobj_put(ptr_mask_bits(fences[n], 2));
2053 kvfree(fences);
2054}
2055
2056static struct drm_syncobj **
2057get_fence_array(struct drm_i915_gem_execbuffer2 *args,
2058 struct drm_file *file)
2059{
2060 const unsigned int nfences = args->num_cliprects;
2061 struct drm_i915_gem_exec_fence __user *user;
2062 struct drm_syncobj **fences;
2063 unsigned int n;
2064 int err;
2065
2066 if (!(args->flags & I915_EXEC_FENCE_ARRAY))
2067 return NULL;
2068
2069 if (nfences > SIZE_MAX / sizeof(*fences))
2070 return ERR_PTR(-EINVAL);
2071
2072 user = u64_to_user_ptr(args->cliprects_ptr);
2073 if (!access_ok(VERIFY_READ, user, nfences * 2 * sizeof(u32)))
2074 return ERR_PTR(-EFAULT);
2075
2076 fences = kvmalloc_array(args->num_cliprects, sizeof(*fences),
2077 __GFP_NOWARN | GFP_TEMPORARY);
2078 if (!fences)
2079 return ERR_PTR(-ENOMEM);
2080
2081 for (n = 0; n < nfences; n++) {
2082 struct drm_i915_gem_exec_fence fence;
2083 struct drm_syncobj *syncobj;
2084
2085 if (__copy_from_user(&fence, user++, sizeof(fence))) {
2086 err = -EFAULT;
2087 goto err;
2088 }
2089
2090 syncobj = drm_syncobj_find(file, fence.handle);
2091 if (!syncobj) {
2092 DRM_DEBUG("Invalid syncobj handle provided\n");
2093 err = -ENOENT;
2094 goto err;
2095 }
2096
2097 fences[n] = ptr_pack_bits(syncobj, fence.flags, 2);
2098 }
2099
2100 return fences;
2101
2102err:
2103 __free_fence_array(fences, n);
2104 return ERR_PTR(err);
2105}
2106
2107static void
2108put_fence_array(struct drm_i915_gem_execbuffer2 *args,
2109 struct drm_syncobj **fences)
2110{
2111 if (fences)
2112 __free_fence_array(fences, args->num_cliprects);
2113}
2114
2115static int
2116await_fence_array(struct i915_execbuffer *eb,
2117 struct drm_syncobj **fences)
2118{
2119 const unsigned int nfences = eb->args->num_cliprects;
2120 unsigned int n;
2121 int err;
2122
2123 for (n = 0; n < nfences; n++) {
2124 struct drm_syncobj *syncobj;
2125 struct dma_fence *fence;
2126 unsigned int flags;
2127
2128 syncobj = ptr_unpack_bits(fences[n], &flags, 2);
2129 if (!(flags & I915_EXEC_FENCE_WAIT))
2130 continue;
2131
2132 rcu_read_lock();
2133 fence = dma_fence_get_rcu_safe(&syncobj->fence);
2134 rcu_read_unlock();
2135 if (!fence)
2136 return -EINVAL;
2137
2138 err = i915_gem_request_await_dma_fence(eb->request, fence);
2139 dma_fence_put(fence);
2140 if (err < 0)
2141 return err;
2142 }
2143
2144 return 0;
2145}
2146
2147static void
2148signal_fence_array(struct i915_execbuffer *eb,
2149 struct drm_syncobj **fences)
2150{
2151 const unsigned int nfences = eb->args->num_cliprects;
2152 struct dma_fence * const fence = &eb->request->fence;
2153 unsigned int n;
2154
2155 for (n = 0; n < nfences; n++) {
2156 struct drm_syncobj *syncobj;
2157 unsigned int flags;
2158
2159 syncobj = ptr_unpack_bits(fences[n], &flags, 2);
2160 if (!(flags & I915_EXEC_FENCE_SIGNAL))
2161 continue;
2162
2163 drm_syncobj_replace_fence(syncobj, fence);
2164 }
2165}
2166
Eric Anholtae662d32012-01-03 09:23:29 -08002167static int
Chris Wilson650bc632017-06-15 09:14:33 +01002168i915_gem_do_execbuffer(struct drm_device *dev,
Chris Wilson54cf91d2010-11-25 18:00:26 +00002169 struct drm_file *file,
2170 struct drm_i915_gem_execbuffer2 *args,
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01002171 struct drm_i915_gem_exec_object2 *exec,
2172 struct drm_syncobj **fences)
Chris Wilson54cf91d2010-11-25 18:00:26 +00002173{
Chris Wilson650bc632017-06-15 09:14:33 +01002174 struct i915_execbuffer eb;
Chris Wilsonfec04452017-01-27 09:40:08 +00002175 struct dma_fence *in_fence = NULL;
2176 struct sync_file *out_fence = NULL;
2177 int out_fence_fd = -1;
Chris Wilson2889caa2017-06-16 15:05:19 +01002178 int err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002179
Chris Wilson2889caa2017-06-16 15:05:19 +01002180 BUILD_BUG_ON(__EXEC_OBJECT_INTERNAL_FLAGS &
2181 ~__EXEC_OBJECT_UNKNOWN_FLAGS);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002182
Chris Wilson650bc632017-06-15 09:14:33 +01002183 eb.i915 = to_i915(dev);
2184 eb.file = file;
2185 eb.args = args;
Chris Wilson7dd4f672017-06-16 15:05:24 +01002186 if (DBG_FORCE_RELOC || !(args->flags & I915_EXEC_NO_RELOC))
Chris Wilson2889caa2017-06-16 15:05:19 +01002187 args->flags |= __EXEC_HAS_RELOC;
Chris Wilsonc7c6e462017-08-16 09:52:06 +01002188
Chris Wilson650bc632017-06-15 09:14:33 +01002189 eb.exec = exec;
Chris Wilson170fa292017-08-16 09:52:07 +01002190 eb.vma = (struct i915_vma **)(exec + args->buffer_count + 1);
2191 eb.vma[0] = NULL;
Chris Wilsonc7c6e462017-08-16 09:52:06 +01002192 eb.flags = (unsigned int *)(eb.vma + args->buffer_count + 1);
2193
Chris Wilson2889caa2017-06-16 15:05:19 +01002194 eb.invalid_flags = __EXEC_OBJECT_UNKNOWN_FLAGS;
2195 if (USES_FULL_PPGTT(eb.i915))
2196 eb.invalid_flags |= EXEC_OBJECT_NEEDS_GTT;
Chris Wilson650bc632017-06-15 09:14:33 +01002197 reloc_cache_init(&eb.reloc_cache, eb.i915);
2198
Chris Wilson2889caa2017-06-16 15:05:19 +01002199 eb.buffer_count = args->buffer_count;
Chris Wilson650bc632017-06-15 09:14:33 +01002200 eb.batch_start_offset = args->batch_start_offset;
2201 eb.batch_len = args->batch_len;
2202
Chris Wilson2889caa2017-06-16 15:05:19 +01002203 eb.batch_flags = 0;
Chris Wilsond7d4eed2012-10-17 12:09:54 +01002204 if (args->flags & I915_EXEC_SECURE) {
Daniel Vetterb3ac9f22016-06-21 10:54:20 +02002205 if (!drm_is_current_master(file) || !capable(CAP_SYS_ADMIN))
Chris Wilsond7d4eed2012-10-17 12:09:54 +01002206 return -EPERM;
2207
Chris Wilson2889caa2017-06-16 15:05:19 +01002208 eb.batch_flags |= I915_DISPATCH_SECURE;
Chris Wilsond7d4eed2012-10-17 12:09:54 +01002209 }
Daniel Vetterb45305f2012-12-17 16:21:27 +01002210 if (args->flags & I915_EXEC_IS_PINNED)
Chris Wilson2889caa2017-06-16 15:05:19 +01002211 eb.batch_flags |= I915_DISPATCH_PINNED;
Chris Wilsond7d4eed2012-10-17 12:09:54 +01002212
Chris Wilson650bc632017-06-15 09:14:33 +01002213 eb.engine = eb_select_engine(eb.i915, file, args);
2214 if (!eb.engine)
Dave Gordonf8ca0c02016-07-20 18:16:07 +01002215 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002216
Abdiel Janulguea9ed33c2015-07-01 10:12:23 +03002217 if (args->flags & I915_EXEC_RESOURCE_STREAMER) {
Chris Wilson650bc632017-06-15 09:14:33 +01002218 if (!HAS_RESOURCE_STREAMER(eb.i915)) {
Abdiel Janulguea9ed33c2015-07-01 10:12:23 +03002219 DRM_DEBUG("RS is only allowed for Haswell, Gen8 and above\n");
2220 return -EINVAL;
2221 }
Chris Wilson650bc632017-06-15 09:14:33 +01002222 if (eb.engine->id != RCS) {
Abdiel Janulguea9ed33c2015-07-01 10:12:23 +03002223 DRM_DEBUG("RS is not available on %s\n",
Chris Wilson650bc632017-06-15 09:14:33 +01002224 eb.engine->name);
Abdiel Janulguea9ed33c2015-07-01 10:12:23 +03002225 return -EINVAL;
2226 }
2227
Chris Wilson2889caa2017-06-16 15:05:19 +01002228 eb.batch_flags |= I915_DISPATCH_RS;
Abdiel Janulguea9ed33c2015-07-01 10:12:23 +03002229 }
2230
Chris Wilsonfec04452017-01-27 09:40:08 +00002231 if (args->flags & I915_EXEC_FENCE_IN) {
2232 in_fence = sync_file_get_fence(lower_32_bits(args->rsvd2));
Daniele Ceraolo Spurio4a04e372017-02-03 14:45:29 -08002233 if (!in_fence)
2234 return -EINVAL;
Chris Wilsonfec04452017-01-27 09:40:08 +00002235 }
2236
2237 if (args->flags & I915_EXEC_FENCE_OUT) {
2238 out_fence_fd = get_unused_fd_flags(O_CLOEXEC);
2239 if (out_fence_fd < 0) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002240 err = out_fence_fd;
Daniele Ceraolo Spurio4a04e372017-02-03 14:45:29 -08002241 goto err_in_fence;
Chris Wilsonfec04452017-01-27 09:40:08 +00002242 }
2243 }
2244
Chris Wilson4d470f72017-06-29 16:04:25 +01002245 err = eb_create(&eb);
2246 if (err)
2247 goto err_out_fence;
2248
2249 GEM_BUG_ON(!eb.lut_size);
Chris Wilson2889caa2017-06-16 15:05:19 +01002250
Chris Wilson1acfc102017-06-20 12:05:47 +01002251 err = eb_select_context(&eb);
2252 if (unlikely(err))
2253 goto err_destroy;
2254
Chris Wilson2889caa2017-06-16 15:05:19 +01002255 /*
2256 * Take a local wakeref for preparing to dispatch the execbuf as
Chris Wilson67d97da2016-07-04 08:08:31 +01002257 * we expect to access the hardware fairly frequently in the
2258 * process. Upon first dispatch, we acquire another prolonged
2259 * wakeref that we hold until the GPU has been idle for at least
2260 * 100ms.
2261 */
Chris Wilson650bc632017-06-15 09:14:33 +01002262 intel_runtime_pm_get(eb.i915);
Chris Wilson1acfc102017-06-20 12:05:47 +01002263
Chris Wilson2889caa2017-06-16 15:05:19 +01002264 err = i915_mutex_lock_interruptible(dev);
2265 if (err)
2266 goto err_rpm;
Paulo Zanonif65c9162013-11-27 18:20:34 -02002267
Chris Wilson2889caa2017-06-16 15:05:19 +01002268 err = eb_relocate(&eb);
Chris Wilson1f727d92017-07-21 15:50:36 +01002269 if (err) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002270 /*
2271 * If the user expects the execobject.offset and
2272 * reloc.presumed_offset to be an exact match,
2273 * as for using NO_RELOC, then we cannot update
2274 * the execobject.offset until we have completed
2275 * relocation.
2276 */
2277 args->flags &= ~__EXEC_HAS_RELOC;
Chris Wilson2889caa2017-06-16 15:05:19 +01002278 goto err_vma;
Chris Wilson1f727d92017-07-21 15:50:36 +01002279 }
Ben Widawsky41bde552013-12-06 14:11:21 -08002280
Chris Wilsonc7c6e462017-08-16 09:52:06 +01002281 if (unlikely(*eb.batch->exec_flags & EXEC_OBJECT_WRITE)) {
Daniel Vetterff240192012-01-31 21:08:14 +01002282 DRM_DEBUG("Attempting to use self-modifying batch buffer\n");
Chris Wilson2889caa2017-06-16 15:05:19 +01002283 err = -EINVAL;
2284 goto err_vma;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002285 }
Chris Wilson650bc632017-06-15 09:14:33 +01002286 if (eb.batch_start_offset > eb.batch->size ||
2287 eb.batch_len > eb.batch->size - eb.batch_start_offset) {
Chris Wilson0b537272016-08-18 17:17:12 +01002288 DRM_DEBUG("Attempting to use out-of-bounds batch\n");
Chris Wilson2889caa2017-06-16 15:05:19 +01002289 err = -EINVAL;
2290 goto err_vma;
Chris Wilson0b537272016-08-18 17:17:12 +01002291 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00002292
Chris Wilson650bc632017-06-15 09:14:33 +01002293 if (eb.engine->needs_cmd_parser && eb.batch_len) {
Chris Wilson59bfa122016-08-04 16:32:31 +01002294 struct i915_vma *vma;
Rebecca N. Palmerc7c73722015-05-08 14:26:50 +01002295
Chris Wilson650bc632017-06-15 09:14:33 +01002296 vma = eb_parse(&eb, drm_is_current_master(file));
Chris Wilson59bfa122016-08-04 16:32:31 +01002297 if (IS_ERR(vma)) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002298 err = PTR_ERR(vma);
2299 goto err_vma;
Brad Volkin78a42372014-12-11 12:13:09 -08002300 }
Chris Wilson17cabf52015-01-14 11:20:57 +00002301
Chris Wilson59bfa122016-08-04 16:32:31 +01002302 if (vma) {
Rebecca N. Palmerc7c73722015-05-08 14:26:50 +01002303 /*
2304 * Batch parsed and accepted:
2305 *
2306 * Set the DISPATCH_SECURE bit to remove the NON_SECURE
2307 * bit from MI_BATCH_BUFFER_START commands issued in
2308 * the dispatch_execbuffer implementations. We
2309 * specifically don't want that set on batches the
2310 * command parser has accepted.
2311 */
Chris Wilson2889caa2017-06-16 15:05:19 +01002312 eb.batch_flags |= I915_DISPATCH_SECURE;
Chris Wilson650bc632017-06-15 09:14:33 +01002313 eb.batch_start_offset = 0;
2314 eb.batch = vma;
Rebecca N. Palmerc7c73722015-05-08 14:26:50 +01002315 }
Brad Volkin351e3db2014-02-18 10:15:46 -08002316 }
2317
Chris Wilson650bc632017-06-15 09:14:33 +01002318 if (eb.batch_len == 0)
2319 eb.batch_len = eb.batch->size - eb.batch_start_offset;
Brad Volkin78a42372014-12-11 12:13:09 -08002320
Chris Wilson2889caa2017-06-16 15:05:19 +01002321 /*
2322 * snb/ivb/vlv conflate the "batch in ppgtt" bit with the "non-secure
Chris Wilsond7d4eed2012-10-17 12:09:54 +01002323 * batch" bit. Hence we need to pin secure batches into the global gtt.
Ben Widawsky28cf5412013-11-02 21:07:26 -07002324 * hsw should have this fixed, but bdw mucks it up again. */
Chris Wilson2889caa2017-06-16 15:05:19 +01002325 if (eb.batch_flags & I915_DISPATCH_SECURE) {
Chris Wilson058d88c2016-08-15 10:49:06 +01002326 struct i915_vma *vma;
Chris Wilson59bfa122016-08-04 16:32:31 +01002327
Daniel Vetterda51a1e2014-08-11 12:08:58 +02002328 /*
2329 * So on first glance it looks freaky that we pin the batch here
2330 * outside of the reservation loop. But:
2331 * - The batch is already pinned into the relevant ppgtt, so we
2332 * already have the backing storage fully allocated.
2333 * - No other BO uses the global gtt (well contexts, but meh),
Yannick Guerrinifd0753c2015-02-28 17:20:41 +01002334 * so we don't really have issues with multiple objects not
Daniel Vetterda51a1e2014-08-11 12:08:58 +02002335 * fitting due to fragmentation.
2336 * So this is actually safe.
2337 */
Chris Wilson2889caa2017-06-16 15:05:19 +01002338 vma = i915_gem_object_ggtt_pin(eb.batch->obj, NULL, 0, 0, 0);
Chris Wilson058d88c2016-08-15 10:49:06 +01002339 if (IS_ERR(vma)) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002340 err = PTR_ERR(vma);
2341 goto err_vma;
Chris Wilson058d88c2016-08-15 10:49:06 +01002342 }
Chris Wilsond7d4eed2012-10-17 12:09:54 +01002343
Chris Wilson650bc632017-06-15 09:14:33 +01002344 eb.batch = vma;
Chris Wilson59bfa122016-08-04 16:32:31 +01002345 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00002346
Chris Wilson7dd4f672017-06-16 15:05:24 +01002347 /* All GPU relocation batches must be submitted prior to the user rq */
2348 GEM_BUG_ON(eb.reloc_cache.rq);
2349
John Harrison0c8dac82015-05-29 17:43:25 +01002350 /* Allocate a request for this batch buffer nice and early. */
Chris Wilson650bc632017-06-15 09:14:33 +01002351 eb.request = i915_gem_request_alloc(eb.engine, eb.ctx);
2352 if (IS_ERR(eb.request)) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002353 err = PTR_ERR(eb.request);
John Harrison0c8dac82015-05-29 17:43:25 +01002354 goto err_batch_unpin;
Dave Gordon26827082016-01-19 19:02:53 +00002355 }
John Harrison0c8dac82015-05-29 17:43:25 +01002356
Chris Wilsonfec04452017-01-27 09:40:08 +00002357 if (in_fence) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002358 err = i915_gem_request_await_dma_fence(eb.request, in_fence);
2359 if (err < 0)
Chris Wilsonfec04452017-01-27 09:40:08 +00002360 goto err_request;
2361 }
2362
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01002363 if (fences) {
2364 err = await_fence_array(&eb, fences);
2365 if (err)
2366 goto err_request;
2367 }
2368
Chris Wilsonfec04452017-01-27 09:40:08 +00002369 if (out_fence_fd != -1) {
Chris Wilson650bc632017-06-15 09:14:33 +01002370 out_fence = sync_file_create(&eb.request->fence);
Chris Wilsonfec04452017-01-27 09:40:08 +00002371 if (!out_fence) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002372 err = -ENOMEM;
Chris Wilsonfec04452017-01-27 09:40:08 +00002373 goto err_request;
2374 }
2375 }
2376
Chris Wilson2889caa2017-06-16 15:05:19 +01002377 /*
2378 * Whilst this request exists, batch_obj will be on the
Chris Wilson17f298cf2016-08-10 13:41:46 +01002379 * active_list, and so will hold the active reference. Only when this
2380 * request is retired will the the batch_obj be moved onto the
2381 * inactive_list and lose its active reference. Hence we do not need
2382 * to explicitly hold another reference here.
2383 */
Chris Wilson650bc632017-06-15 09:14:33 +01002384 eb.request->batch = eb.batch;
Chris Wilson17f298cf2016-08-10 13:41:46 +01002385
Chris Wilson2889caa2017-06-16 15:05:19 +01002386 trace_i915_gem_request_queue(eb.request, eb.batch_flags);
2387 err = eb_submit(&eb);
Chris Wilsonaa9b7812016-04-13 17:35:15 +01002388err_request:
Chris Wilson2889caa2017-06-16 15:05:19 +01002389 __i915_add_request(eb.request, err == 0);
Chris Wilson650bc632017-06-15 09:14:33 +01002390 add_to_client(eb.request, file);
Chris Wilsonc8659ef2017-03-02 12:25:25 +00002391
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01002392 if (fences)
2393 signal_fence_array(&eb, fences);
2394
Chris Wilsonfec04452017-01-27 09:40:08 +00002395 if (out_fence) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002396 if (err == 0) {
Chris Wilsonfec04452017-01-27 09:40:08 +00002397 fd_install(out_fence_fd, out_fence->file);
2398 args->rsvd2 &= GENMASK_ULL(0, 31); /* keep in-fence */
2399 args->rsvd2 |= (u64)out_fence_fd << 32;
2400 out_fence_fd = -1;
2401 } else {
2402 fput(out_fence->file);
2403 }
2404 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00002405
John Harrison0c8dac82015-05-29 17:43:25 +01002406err_batch_unpin:
Chris Wilson2889caa2017-06-16 15:05:19 +01002407 if (eb.batch_flags & I915_DISPATCH_SECURE)
Chris Wilson650bc632017-06-15 09:14:33 +01002408 i915_vma_unpin(eb.batch);
Chris Wilson2889caa2017-06-16 15:05:19 +01002409err_vma:
2410 if (eb.exec)
2411 eb_release_vmas(&eb);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002412 mutex_unlock(&dev->struct_mutex);
Chris Wilson2889caa2017-06-16 15:05:19 +01002413err_rpm:
Chris Wilson650bc632017-06-15 09:14:33 +01002414 intel_runtime_pm_put(eb.i915);
Chris Wilson1acfc102017-06-20 12:05:47 +01002415 i915_gem_context_put(eb.ctx);
2416err_destroy:
Chris Wilson2889caa2017-06-16 15:05:19 +01002417 eb_destroy(&eb);
Chris Wilson4d470f72017-06-29 16:04:25 +01002418err_out_fence:
Chris Wilsonfec04452017-01-27 09:40:08 +00002419 if (out_fence_fd != -1)
2420 put_unused_fd(out_fence_fd);
Daniele Ceraolo Spurio4a04e372017-02-03 14:45:29 -08002421err_in_fence:
Chris Wilsonfec04452017-01-27 09:40:08 +00002422 dma_fence_put(in_fence);
Chris Wilson2889caa2017-06-16 15:05:19 +01002423 return err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002424}
2425
2426/*
2427 * Legacy execbuffer just creates an exec2 list from the original exec object
2428 * list array and passes it to the real function.
2429 */
2430int
2431i915_gem_execbuffer(struct drm_device *dev, void *data,
2432 struct drm_file *file)
2433{
Chris Wilsonc7c6e462017-08-16 09:52:06 +01002434 const size_t sz = (sizeof(struct drm_i915_gem_exec_object2) +
2435 sizeof(struct i915_vma *) +
2436 sizeof(unsigned int));
Chris Wilson54cf91d2010-11-25 18:00:26 +00002437 struct drm_i915_gem_execbuffer *args = data;
2438 struct drm_i915_gem_execbuffer2 exec2;
2439 struct drm_i915_gem_exec_object *exec_list = NULL;
2440 struct drm_i915_gem_exec_object2 *exec2_list = NULL;
Chris Wilson2889caa2017-06-16 15:05:19 +01002441 unsigned int i;
2442 int err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002443
Chris Wilson2889caa2017-06-16 15:05:19 +01002444 if (args->buffer_count < 1 || args->buffer_count > SIZE_MAX / sz - 1) {
2445 DRM_DEBUG("execbuf2 with %d buffers\n", args->buffer_count);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002446 return -EINVAL;
2447 }
2448
Chris Wilson2889caa2017-06-16 15:05:19 +01002449 exec2.buffers_ptr = args->buffers_ptr;
2450 exec2.buffer_count = args->buffer_count;
2451 exec2.batch_start_offset = args->batch_start_offset;
2452 exec2.batch_len = args->batch_len;
2453 exec2.DR1 = args->DR1;
2454 exec2.DR4 = args->DR4;
2455 exec2.num_cliprects = args->num_cliprects;
2456 exec2.cliprects_ptr = args->cliprects_ptr;
2457 exec2.flags = I915_EXEC_RENDER;
2458 i915_execbuffer2_set_context_id(exec2, 0);
2459
2460 if (!i915_gem_check_execbuffer(&exec2))
2461 return -EINVAL;
2462
Chris Wilson54cf91d2010-11-25 18:00:26 +00002463 /* Copy in the exec list from userland */
Chris Wilson2889caa2017-06-16 15:05:19 +01002464 exec_list = kvmalloc_array(args->buffer_count, sizeof(*exec_list),
2465 __GFP_NOWARN | GFP_TEMPORARY);
2466 exec2_list = kvmalloc_array(args->buffer_count + 1, sz,
2467 __GFP_NOWARN | GFP_TEMPORARY);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002468 if (exec_list == NULL || exec2_list == NULL) {
Daniel Vetterff240192012-01-31 21:08:14 +01002469 DRM_DEBUG("Failed to allocate exec list for %d buffers\n",
Chris Wilson54cf91d2010-11-25 18:00:26 +00002470 args->buffer_count);
Michal Hocko20981052017-05-17 14:23:12 +02002471 kvfree(exec_list);
2472 kvfree(exec2_list);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002473 return -ENOMEM;
2474 }
Chris Wilson2889caa2017-06-16 15:05:19 +01002475 err = copy_from_user(exec_list,
Gustavo Padovan3ed605b2016-04-26 12:32:27 -03002476 u64_to_user_ptr(args->buffers_ptr),
Chris Wilson54cf91d2010-11-25 18:00:26 +00002477 sizeof(*exec_list) * args->buffer_count);
Chris Wilson2889caa2017-06-16 15:05:19 +01002478 if (err) {
Daniel Vetterff240192012-01-31 21:08:14 +01002479 DRM_DEBUG("copy %d exec entries failed %d\n",
Chris Wilson2889caa2017-06-16 15:05:19 +01002480 args->buffer_count, err);
Michal Hocko20981052017-05-17 14:23:12 +02002481 kvfree(exec_list);
2482 kvfree(exec2_list);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002483 return -EFAULT;
2484 }
2485
2486 for (i = 0; i < args->buffer_count; i++) {
2487 exec2_list[i].handle = exec_list[i].handle;
2488 exec2_list[i].relocation_count = exec_list[i].relocation_count;
2489 exec2_list[i].relocs_ptr = exec_list[i].relocs_ptr;
2490 exec2_list[i].alignment = exec_list[i].alignment;
2491 exec2_list[i].offset = exec_list[i].offset;
Tvrtko Ursulinf0836b72016-11-16 08:55:32 +00002492 if (INTEL_GEN(to_i915(dev)) < 4)
Chris Wilson54cf91d2010-11-25 18:00:26 +00002493 exec2_list[i].flags = EXEC_OBJECT_NEEDS_FENCE;
2494 else
2495 exec2_list[i].flags = 0;
2496 }
2497
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01002498 err = i915_gem_do_execbuffer(dev, file, &exec2, exec2_list, NULL);
Chris Wilson2889caa2017-06-16 15:05:19 +01002499 if (exec2.flags & __EXEC_HAS_RELOC) {
Chris Wilson9aab8bf2014-05-23 10:45:52 +01002500 struct drm_i915_gem_exec_object __user *user_exec_list =
Gustavo Padovan3ed605b2016-04-26 12:32:27 -03002501 u64_to_user_ptr(args->buffers_ptr);
Chris Wilson9aab8bf2014-05-23 10:45:52 +01002502
Chris Wilson54cf91d2010-11-25 18:00:26 +00002503 /* Copy the new buffer offsets back to the user's exec list. */
Chris Wilson9aab8bf2014-05-23 10:45:52 +01002504 for (i = 0; i < args->buffer_count; i++) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002505 if (!(exec2_list[i].offset & UPDATE))
2506 continue;
2507
Michał Winiarski934acce2015-12-29 18:24:52 +01002508 exec2_list[i].offset =
Chris Wilson2889caa2017-06-16 15:05:19 +01002509 gen8_canonical_addr(exec2_list[i].offset & PIN_OFFSET_MASK);
2510 exec2_list[i].offset &= PIN_OFFSET_MASK;
2511 if (__copy_to_user(&user_exec_list[i].offset,
2512 &exec2_list[i].offset,
2513 sizeof(user_exec_list[i].offset)))
Chris Wilson9aab8bf2014-05-23 10:45:52 +01002514 break;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002515 }
2516 }
2517
Michal Hocko20981052017-05-17 14:23:12 +02002518 kvfree(exec_list);
2519 kvfree(exec2_list);
Chris Wilson2889caa2017-06-16 15:05:19 +01002520 return err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002521}
2522
2523int
2524i915_gem_execbuffer2(struct drm_device *dev, void *data,
2525 struct drm_file *file)
2526{
Chris Wilsonc7c6e462017-08-16 09:52:06 +01002527 const size_t sz = (sizeof(struct drm_i915_gem_exec_object2) +
2528 sizeof(struct i915_vma *) +
2529 sizeof(unsigned int));
Chris Wilson54cf91d2010-11-25 18:00:26 +00002530 struct drm_i915_gem_execbuffer2 *args = data;
Chris Wilson2889caa2017-06-16 15:05:19 +01002531 struct drm_i915_gem_exec_object2 *exec2_list;
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01002532 struct drm_syncobj **fences = NULL;
Chris Wilson2889caa2017-06-16 15:05:19 +01002533 int err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002534
Chris Wilson2889caa2017-06-16 15:05:19 +01002535 if (args->buffer_count < 1 || args->buffer_count > SIZE_MAX / sz - 1) {
Daniel Vetterff240192012-01-31 21:08:14 +01002536 DRM_DEBUG("execbuf2 with %d buffers\n", args->buffer_count);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002537 return -EINVAL;
2538 }
2539
Chris Wilson2889caa2017-06-16 15:05:19 +01002540 if (!i915_gem_check_execbuffer(args))
2541 return -EINVAL;
2542
2543 /* Allocate an extra slot for use by the command parser */
2544 exec2_list = kvmalloc_array(args->buffer_count + 1, sz,
2545 __GFP_NOWARN | GFP_TEMPORARY);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002546 if (exec2_list == NULL) {
Daniel Vetterff240192012-01-31 21:08:14 +01002547 DRM_DEBUG("Failed to allocate exec list for %d buffers\n",
Chris Wilson54cf91d2010-11-25 18:00:26 +00002548 args->buffer_count);
2549 return -ENOMEM;
2550 }
Chris Wilson2889caa2017-06-16 15:05:19 +01002551 if (copy_from_user(exec2_list,
2552 u64_to_user_ptr(args->buffers_ptr),
2553 sizeof(*exec2_list) * args->buffer_count)) {
2554 DRM_DEBUG("copy %d exec entries failed\n", args->buffer_count);
Michal Hocko20981052017-05-17 14:23:12 +02002555 kvfree(exec2_list);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002556 return -EFAULT;
2557 }
2558
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01002559 if (args->flags & I915_EXEC_FENCE_ARRAY) {
2560 fences = get_fence_array(args, file);
2561 if (IS_ERR(fences)) {
2562 kvfree(exec2_list);
2563 return PTR_ERR(fences);
2564 }
2565 }
2566
2567 err = i915_gem_do_execbuffer(dev, file, args, exec2_list, fences);
Chris Wilson9aab8bf2014-05-23 10:45:52 +01002568
Chris Wilson2889caa2017-06-16 15:05:19 +01002569 /*
2570 * Now that we have begun execution of the batchbuffer, we ignore
2571 * any new error after this point. Also given that we have already
2572 * updated the associated relocations, we try to write out the current
2573 * object locations irrespective of any error.
2574 */
2575 if (args->flags & __EXEC_HAS_RELOC) {
2576 struct drm_i915_gem_exec_object2 __user *user_exec_list =
2577 u64_to_user_ptr(args->buffers_ptr);
2578 unsigned int i;
2579
2580 /* Copy the new buffer offsets back to the user's exec list. */
2581 user_access_begin();
Chris Wilson9aab8bf2014-05-23 10:45:52 +01002582 for (i = 0; i < args->buffer_count; i++) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002583 if (!(exec2_list[i].offset & UPDATE))
2584 continue;
2585
Michał Winiarski934acce2015-12-29 18:24:52 +01002586 exec2_list[i].offset =
Chris Wilson2889caa2017-06-16 15:05:19 +01002587 gen8_canonical_addr(exec2_list[i].offset & PIN_OFFSET_MASK);
2588 unsafe_put_user(exec2_list[i].offset,
2589 &user_exec_list[i].offset,
2590 end_user);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002591 }
Chris Wilson2889caa2017-06-16 15:05:19 +01002592end_user:
2593 user_access_end();
Chris Wilson54cf91d2010-11-25 18:00:26 +00002594 }
2595
Chris Wilson2889caa2017-06-16 15:05:19 +01002596 args->flags &= ~__I915_EXEC_UNKNOWN_FLAGS;
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01002597 put_fence_array(args, fences);
Michal Hocko20981052017-05-17 14:23:12 +02002598 kvfree(exec2_list);
Chris Wilson2889caa2017-06-16 15:05:19 +01002599 return err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002600}