blob: f627a8c47c58a36f6ff92f17a4d6d672b28bc00b [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)
Chris Wilson74c1c692017-09-21 12:01:35 +010061#define __EXEC_INTERNAL_FLAGS (~0u << 30)
Chris Wilson2889caa2017-06-16 15:05:19 +010062#define UPDATE PIN_OFFSET_FIXED
Chris Wilsond23db882014-05-23 08:48:08 +020063
64#define BATCH_OFFSET_BIAS (256*1024)
Chris Wilsona415d352013-11-26 11:23:15 +000065
Chris Wilson650bc632017-06-15 09:14:33 +010066#define __I915_EXEC_ILLEGAL_FLAGS \
67 (__I915_EXEC_UNKNOWN_FLAGS | I915_EXEC_CONSTANTS_MASK)
Chris Wilson5b043f42016-08-02 22:50:38 +010068
Chris Wilson2889caa2017-06-16 15:05:19 +010069/**
70 * DOC: User command execution
71 *
72 * Userspace submits commands to be executed on the GPU as an instruction
73 * stream within a GEM object we call a batchbuffer. This instructions may
74 * refer to other GEM objects containing auxiliary state such as kernels,
75 * samplers, render targets and even secondary batchbuffers. Userspace does
76 * not know where in the GPU memory these objects reside and so before the
77 * batchbuffer is passed to the GPU for execution, those addresses in the
78 * batchbuffer and auxiliary objects are updated. This is known as relocation,
79 * or patching. To try and avoid having to relocate each object on the next
80 * execution, userspace is told the location of those objects in this pass,
81 * but this remains just a hint as the kernel may choose a new location for
82 * any object in the future.
83 *
Kevin Rogovin99d7e4e2018-04-06 11:05:57 +030084 * At the level of talking to the hardware, submitting a batchbuffer for the
85 * GPU to execute is to add content to a buffer from which the HW
86 * command streamer is reading.
87 *
88 * 1. Add a command to load the HW context. For Logical Ring Contexts, i.e.
89 * Execlists, this command is not placed on the same buffer as the
90 * remaining items.
91 *
92 * 2. Add a command to invalidate caches to the buffer.
93 *
94 * 3. Add a batchbuffer start command to the buffer; the start command is
95 * essentially a token together with the GPU address of the batchbuffer
96 * to be executed.
97 *
98 * 4. Add a pipeline flush to the buffer.
99 *
100 * 5. Add a memory write command to the buffer to record when the GPU
101 * is done executing the batchbuffer. The memory write writes the
102 * global sequence number of the request, ``i915_request::global_seqno``;
103 * the i915 driver uses the current value in the register to determine
104 * if the GPU has completed the batchbuffer.
105 *
106 * 6. Add a user interrupt command to the buffer. This command instructs
107 * the GPU to issue an interrupt when the command, pipeline flush and
108 * memory write are completed.
109 *
110 * 7. Inform the hardware of the additional commands added to the buffer
111 * (by updating the tail pointer).
112 *
Chris Wilson2889caa2017-06-16 15:05:19 +0100113 * Processing an execbuf ioctl is conceptually split up into a few phases.
114 *
115 * 1. Validation - Ensure all the pointers, handles and flags are valid.
116 * 2. Reservation - Assign GPU address space for every object
117 * 3. Relocation - Update any addresses to point to the final locations
118 * 4. Serialisation - Order the request with respect to its dependencies
119 * 5. Construction - Construct a request to execute the batchbuffer
120 * 6. Submission (at some point in the future execution)
121 *
122 * Reserving resources for the execbuf is the most complicated phase. We
123 * neither want to have to migrate the object in the address space, nor do
124 * we want to have to update any relocations pointing to this object. Ideally,
125 * we want to leave the object where it is and for all the existing relocations
126 * to match. If the object is given a new address, or if userspace thinks the
127 * object is elsewhere, we have to parse all the relocation entries and update
128 * the addresses. Userspace can set the I915_EXEC_NORELOC flag to hint that
129 * all the target addresses in all of its objects match the value in the
130 * relocation entries and that they all match the presumed offsets given by the
131 * list of execbuffer objects. Using this knowledge, we know that if we haven't
132 * moved any buffers, all the relocation entries are valid and we can skip
133 * the update. (If userspace is wrong, the likely outcome is an impromptu GPU
134 * hang.) The requirement for using I915_EXEC_NO_RELOC are:
135 *
136 * The addresses written in the objects must match the corresponding
137 * reloc.presumed_offset which in turn must match the corresponding
138 * execobject.offset.
139 *
140 * Any render targets written to in the batch must be flagged with
141 * EXEC_OBJECT_WRITE.
142 *
143 * To avoid stalling, execobject.offset should match the current
144 * address of that object within the active context.
145 *
146 * The reservation is done is multiple phases. First we try and keep any
147 * object already bound in its current location - so as long as meets the
148 * constraints imposed by the new execbuffer. Any object left unbound after the
149 * first pass is then fitted into any available idle space. If an object does
150 * not fit, all objects are removed from the reservation and the process rerun
151 * after sorting the objects into a priority order (more difficult to fit
152 * objects are tried first). Failing that, the entire VM is cleared and we try
153 * to fit the execbuf once last time before concluding that it simply will not
154 * fit.
155 *
156 * A small complication to all of this is that we allow userspace not only to
157 * specify an alignment and a size for the object in the address space, but
158 * we also allow userspace to specify the exact offset. This objects are
159 * simpler to place (the location is known a priori) all we have to do is make
160 * sure the space is available.
161 *
162 * Once all the objects are in place, patching up the buried pointers to point
163 * to the final locations is a fairly simple job of walking over the relocation
164 * entry arrays, looking up the right address and rewriting the value into
165 * the object. Simple! ... The relocation entries are stored in user memory
166 * and so to access them we have to copy them into a local buffer. That copy
167 * has to avoid taking any pagefaults as they may lead back to a GEM object
168 * requiring the struct_mutex (i.e. recursive deadlock). So once again we split
169 * the relocation into multiple passes. First we try to do everything within an
170 * atomic context (avoid the pagefaults) which requires that we never wait. If
171 * we detect that we may wait, or if we need to fault, then we have to fallback
172 * to a slower path. The slowpath has to drop the mutex. (Can you hear alarm
173 * bells yet?) Dropping the mutex means that we lose all the state we have
174 * built up so far for the execbuf and we must reset any global data. However,
175 * we do leave the objects pinned in their final locations - which is a
176 * potential issue for concurrent execbufs. Once we have left the mutex, we can
177 * allocate and copy all the relocation entries into a large array at our
178 * leisure, reacquire the mutex, reclaim all the objects and other state and
179 * then proceed to update any incorrect addresses with the objects.
180 *
181 * As we process the relocation entries, we maintain a record of whether the
182 * object is being written to. Using NORELOC, we expect userspace to provide
183 * this information instead. We also check whether we can skip the relocation
184 * by comparing the expected value inside the relocation entry with the target's
185 * final address. If they differ, we have to map the current object and rewrite
186 * the 4 or 8 byte pointer within.
187 *
188 * Serialising an execbuf is quite simple according to the rules of the GEM
189 * ABI. Execution within each context is ordered by the order of submission.
190 * Writes to any GEM object are in order of submission and are exclusive. Reads
191 * from a GEM object are unordered with respect to other reads, but ordered by
192 * writes. A write submitted after a read cannot occur before the read, and
193 * similarly any read submitted after a write cannot occur before the write.
194 * Writes are ordered between engines such that only one write occurs at any
195 * time (completing any reads beforehand) - using semaphores where available
196 * and CPU serialisation otherwise. Other GEM access obey the same rules, any
197 * write (either via mmaps using set-domain, or via pwrite) must flush all GPU
198 * reads before starting, and any read (either using set-domain or pread) must
199 * flush all GPU writes before starting. (Note we only employ a barrier before,
200 * we currently rely on userspace not concurrently starting a new execution
201 * whilst reading or writing to an object. This may be an advantage or not
202 * depending on how much you trust userspace not to shoot themselves in the
203 * foot.) Serialisation may just result in the request being inserted into
204 * a DAG awaiting its turn, but most simple is to wait on the CPU until
205 * all dependencies are resolved.
206 *
207 * After all of that, is just a matter of closing the request and handing it to
208 * the hardware (well, leaving it in a queue to be executed). However, we also
209 * offer the ability for batchbuffers to be run with elevated privileges so
210 * that they access otherwise hidden registers. (Used to adjust L3 cache etc.)
211 * Before any batch is given extra privileges we first must check that it
212 * contains no nefarious instructions, we check that each instruction is from
213 * our whitelist and all registers are also from an allowed list. We first
214 * copy the user's batchbuffer to a shadow (so that the user doesn't have
215 * access to it, either by the CPU or GPU as we scan it) and then parse each
216 * instruction. If everything is ok, we set a flag telling the hardware to run
217 * the batchbuffer in trusted mode, otherwise the ioctl is rejected.
218 */
219
Chris Wilson650bc632017-06-15 09:14:33 +0100220struct i915_execbuffer {
Chris Wilson2889caa2017-06-16 15:05:19 +0100221 struct drm_i915_private *i915; /** i915 backpointer */
222 struct drm_file *file; /** per-file lookup tables and limits */
223 struct drm_i915_gem_execbuffer2 *args; /** ioctl parameters */
224 struct drm_i915_gem_exec_object2 *exec; /** ioctl execobj[] */
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100225 struct i915_vma **vma;
226 unsigned int *flags;
Chris Wilson2889caa2017-06-16 15:05:19 +0100227
228 struct intel_engine_cs *engine; /** engine to queue the request to */
229 struct i915_gem_context *ctx; /** context for building the request */
230 struct i915_address_space *vm; /** GTT and vma for the request */
231
Chris Wilsone61e0f52018-02-21 09:56:36 +0000232 struct i915_request *request; /** our request to build */
Chris Wilson2889caa2017-06-16 15:05:19 +0100233 struct i915_vma *batch; /** identity of the batch obj/vma */
234
235 /** actual size of execobj[] as we may extend it for the cmdparser */
236 unsigned int buffer_count;
237
238 /** list of vma not yet bound during reservation phase */
239 struct list_head unbound;
240
241 /** list of vma that have execobj.relocation_count */
242 struct list_head relocs;
243
244 /**
245 * Track the most recently used object for relocations, as we
246 * frequently have to perform multiple relocations within the same
247 * obj/page
248 */
Chris Wilson650bc632017-06-15 09:14:33 +0100249 struct reloc_cache {
Chris Wilson2889caa2017-06-16 15:05:19 +0100250 struct drm_mm_node node; /** temporary GTT binding */
251 unsigned long vaddr; /** Current kmap address */
252 unsigned long page; /** Currently mapped page index */
Chris Wilson7dd4f672017-06-16 15:05:24 +0100253 unsigned int gen; /** Cached value of INTEL_GEN */
Chris Wilson650bc632017-06-15 09:14:33 +0100254 bool use_64bit_reloc : 1;
Chris Wilson2889caa2017-06-16 15:05:19 +0100255 bool has_llc : 1;
256 bool has_fence : 1;
257 bool needs_unfenced : 1;
Chris Wilson7dd4f672017-06-16 15:05:24 +0100258
Chris Wilsone61e0f52018-02-21 09:56:36 +0000259 struct i915_request *rq;
Chris Wilson7dd4f672017-06-16 15:05:24 +0100260 u32 *rq_cmd;
261 unsigned int rq_size;
Chris Wilson650bc632017-06-15 09:14:33 +0100262 } reloc_cache;
Chris Wilson2889caa2017-06-16 15:05:19 +0100263
264 u64 invalid_flags; /** Set of execobj.flags that are invalid */
265 u32 context_flags; /** Set of execobj.flags to insert from the ctx */
266
267 u32 batch_start_offset; /** Location within object of batch */
268 u32 batch_len; /** Length of batch within object */
269 u32 batch_flags; /** Flags composed for emit_bb_start() */
270
271 /**
272 * Indicate either the size of the hastable used to resolve
273 * relocation handles, or if negative that we are using a direct
274 * index into the execobj[].
275 */
276 int lut_size;
277 struct hlist_head *buckets; /** ht for relocation handles */
Chris Wilson67731b82010-12-08 10:38:14 +0000278};
279
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100280#define exec_entry(EB, VMA) (&(EB)->exec[(VMA)->exec_flags - (EB)->flags])
Chris Wilson4ff4b442017-06-16 15:05:16 +0100281
Chris Wilson2889caa2017-06-16 15:05:19 +0100282/*
283 * Used to convert any address to canonical form.
284 * Starting from gen8, some commands (e.g. STATE_BASE_ADDRESS,
285 * MI_LOAD_REGISTER_MEM and others, see Broadwell PRM Vol2a) require the
286 * addresses to be in a canonical form:
287 * "GraphicsAddress[63:48] are ignored by the HW and assumed to be in correct
288 * canonical form [63:48] == [47]."
289 */
290#define GEN8_HIGH_ADDRESS_BIT 47
291static inline u64 gen8_canonical_addr(u64 address)
292{
293 return sign_extend64(address, GEN8_HIGH_ADDRESS_BIT);
294}
295
296static inline u64 gen8_noncanonical_addr(u64 address)
297{
298 return address & GENMASK_ULL(GEN8_HIGH_ADDRESS_BIT, 0);
299}
300
Chris Wilson3dbf26e2017-08-26 14:56:20 +0100301static inline bool eb_use_cmdparser(const struct i915_execbuffer *eb)
302{
Tvrtko Ursulin439e2ee2017-11-29 08:24:09 +0000303 return intel_engine_needs_cmd_parser(eb->engine) && eb->batch_len;
Chris Wilson3dbf26e2017-08-26 14:56:20 +0100304}
305
Chris Wilson650bc632017-06-15 09:14:33 +0100306static int eb_create(struct i915_execbuffer *eb)
Chris Wilson67731b82010-12-08 10:38:14 +0000307{
Chris Wilson2889caa2017-06-16 15:05:19 +0100308 if (!(eb->args->flags & I915_EXEC_HANDLE_LUT)) {
309 unsigned int size = 1 + ilog2(eb->buffer_count);
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000310
Chris Wilson2889caa2017-06-16 15:05:19 +0100311 /*
312 * Without a 1:1 association between relocation handles and
313 * the execobject[] index, we instead create a hashtable.
314 * We size it dynamically based on available memory, starting
315 * first with 1:1 assocative hash and scaling back until
316 * the allocation succeeds.
317 *
318 * Later on we use a positive lut_size to indicate we are
319 * using this hashtable, and a negative value to indicate a
320 * direct lookup.
321 */
Chris Wilson4ff4b442017-06-16 15:05:16 +0100322 do {
Chris Wilson0d95c882017-09-01 15:57:28 +0100323 gfp_t flags;
Chris Wilson4d470f72017-06-29 16:04:25 +0100324
325 /* While we can still reduce the allocation size, don't
326 * raise a warning and allow the allocation to fail.
327 * On the last pass though, we want to try as hard
328 * as possible to perform the allocation and warn
329 * if it fails.
330 */
Michal Hocko0ee931c2017-09-13 16:28:29 -0700331 flags = GFP_KERNEL;
Chris Wilson4d470f72017-06-29 16:04:25 +0100332 if (size > 1)
333 flags |= __GFP_NORETRY | __GFP_NOWARN;
334
Chris Wilson4ff4b442017-06-16 15:05:16 +0100335 eb->buckets = kzalloc(sizeof(struct hlist_head) << size,
Chris Wilson4d470f72017-06-29 16:04:25 +0100336 flags);
Chris Wilson4ff4b442017-06-16 15:05:16 +0100337 if (eb->buckets)
338 break;
339 } while (--size);
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000340
Chris Wilson4d470f72017-06-29 16:04:25 +0100341 if (unlikely(!size))
342 return -ENOMEM;
Chris Wilson4ff4b442017-06-16 15:05:16 +0100343
Chris Wilson2889caa2017-06-16 15:05:19 +0100344 eb->lut_size = size;
Chris Wilson650bc632017-06-15 09:14:33 +0100345 } else {
Chris Wilson2889caa2017-06-16 15:05:19 +0100346 eb->lut_size = -eb->buffer_count;
Chris Wilson650bc632017-06-15 09:14:33 +0100347 }
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000348
Chris Wilson650bc632017-06-15 09:14:33 +0100349 return 0;
Chris Wilson67731b82010-12-08 10:38:14 +0000350}
351
Chris Wilson2889caa2017-06-16 15:05:19 +0100352static bool
353eb_vma_misplaced(const struct drm_i915_gem_exec_object2 *entry,
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100354 const struct i915_vma *vma,
355 unsigned int flags)
Chris Wilson2889caa2017-06-16 15:05:19 +0100356{
Chris Wilson2889caa2017-06-16 15:05:19 +0100357 if (vma->node.size < entry->pad_to_size)
358 return true;
359
360 if (entry->alignment && !IS_ALIGNED(vma->node.start, entry->alignment))
361 return true;
362
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100363 if (flags & EXEC_OBJECT_PINNED &&
Chris Wilson2889caa2017-06-16 15:05:19 +0100364 vma->node.start != entry->offset)
365 return true;
366
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100367 if (flags & __EXEC_OBJECT_NEEDS_BIAS &&
Chris Wilson2889caa2017-06-16 15:05:19 +0100368 vma->node.start < BATCH_OFFSET_BIAS)
369 return true;
370
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100371 if (!(flags & EXEC_OBJECT_SUPPORTS_48B_ADDRESS) &&
Chris Wilson2889caa2017-06-16 15:05:19 +0100372 (vma->node.start + vma->node.size - 1) >> 32)
373 return true;
374
Chris Wilson1d033be2017-10-31 10:36:07 +0000375 if (flags & __EXEC_OBJECT_NEEDS_MAP &&
376 !i915_vma_is_map_and_fenceable(vma))
377 return true;
378
Chris Wilson2889caa2017-06-16 15:05:19 +0100379 return false;
380}
381
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100382static inline bool
Chris Wilson2889caa2017-06-16 15:05:19 +0100383eb_pin_vma(struct i915_execbuffer *eb,
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100384 const struct drm_i915_gem_exec_object2 *entry,
Chris Wilson2889caa2017-06-16 15:05:19 +0100385 struct i915_vma *vma)
386{
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100387 unsigned int exec_flags = *vma->exec_flags;
388 u64 pin_flags;
Chris Wilson2889caa2017-06-16 15:05:19 +0100389
Chris Wilson616d9ce2017-06-16 15:05:21 +0100390 if (vma->node.size)
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100391 pin_flags = vma->node.start;
Chris Wilson616d9ce2017-06-16 15:05:21 +0100392 else
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100393 pin_flags = entry->offset & PIN_OFFSET_MASK;
Chris Wilson616d9ce2017-06-16 15:05:21 +0100394
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100395 pin_flags |= PIN_USER | PIN_NOEVICT | PIN_OFFSET_FIXED;
396 if (unlikely(exec_flags & EXEC_OBJECT_NEEDS_GTT))
397 pin_flags |= PIN_GLOBAL;
Chris Wilson616d9ce2017-06-16 15:05:21 +0100398
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100399 if (unlikely(i915_vma_pin(vma, 0, 0, pin_flags)))
400 return false;
Chris Wilson2889caa2017-06-16 15:05:19 +0100401
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100402 if (unlikely(exec_flags & EXEC_OBJECT_NEEDS_FENCE)) {
Chris Wilson3bd40732017-10-09 09:43:56 +0100403 if (unlikely(i915_vma_pin_fence(vma))) {
Chris Wilson2889caa2017-06-16 15:05:19 +0100404 i915_vma_unpin(vma);
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100405 return false;
Chris Wilson2889caa2017-06-16 15:05:19 +0100406 }
407
Chris Wilson3bd40732017-10-09 09:43:56 +0100408 if (vma->fence)
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100409 exec_flags |= __EXEC_OBJECT_HAS_FENCE;
Chris Wilson2889caa2017-06-16 15:05:19 +0100410 }
411
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100412 *vma->exec_flags = exec_flags | __EXEC_OBJECT_HAS_PIN;
413 return !eb_vma_misplaced(entry, vma, exec_flags);
Chris Wilson2889caa2017-06-16 15:05:19 +0100414}
415
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100416static inline void __eb_unreserve_vma(struct i915_vma *vma, unsigned int flags)
Chris Wilsond55495b2017-06-15 09:14:34 +0100417{
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100418 GEM_BUG_ON(!(flags & __EXEC_OBJECT_HAS_PIN));
Chris Wilson2889caa2017-06-16 15:05:19 +0100419
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100420 if (unlikely(flags & __EXEC_OBJECT_HAS_FENCE))
Chris Wilson3bd40732017-10-09 09:43:56 +0100421 __i915_vma_unpin_fence(vma);
Chris Wilsond55495b2017-06-15 09:14:34 +0100422
Chris Wilson2889caa2017-06-16 15:05:19 +0100423 __i915_vma_unpin(vma);
Chris Wilsond55495b2017-06-15 09:14:34 +0100424}
425
Chris Wilson2889caa2017-06-16 15:05:19 +0100426static inline void
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100427eb_unreserve_vma(struct i915_vma *vma, unsigned int *flags)
Chris Wilsond55495b2017-06-15 09:14:34 +0100428{
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100429 if (!(*flags & __EXEC_OBJECT_HAS_PIN))
Chris Wilson2889caa2017-06-16 15:05:19 +0100430 return;
Chris Wilsond55495b2017-06-15 09:14:34 +0100431
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100432 __eb_unreserve_vma(vma, *flags);
433 *flags &= ~__EXEC_OBJECT_RESERVED;
Chris Wilson4ff4b442017-06-16 15:05:16 +0100434}
435
436static int
Chris Wilson2889caa2017-06-16 15:05:19 +0100437eb_validate_vma(struct i915_execbuffer *eb,
438 struct drm_i915_gem_exec_object2 *entry,
439 struct i915_vma *vma)
440{
441 if (unlikely(entry->flags & eb->invalid_flags))
442 return -EINVAL;
443
444 if (unlikely(entry->alignment && !is_power_of_2(entry->alignment)))
445 return -EINVAL;
446
447 /*
448 * Offset can be used as input (EXEC_OBJECT_PINNED), reject
449 * any non-page-aligned or non-canonical addresses.
450 */
451 if (unlikely(entry->flags & EXEC_OBJECT_PINNED &&
452 entry->offset != gen8_canonical_addr(entry->offset & PAGE_MASK)))
453 return -EINVAL;
454
455 /* pad_to_size was once a reserved field, so sanitize it */
456 if (entry->flags & EXEC_OBJECT_PAD_TO_SIZE) {
457 if (unlikely(offset_in_page(entry->pad_to_size)))
458 return -EINVAL;
459 } else {
460 entry->pad_to_size = 0;
461 }
462
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100463 if (unlikely(vma->exec_flags)) {
Chris Wilson2889caa2017-06-16 15:05:19 +0100464 DRM_DEBUG("Object [handle %d, index %d] appears more than once in object list\n",
465 entry->handle, (int)(entry - eb->exec));
466 return -EINVAL;
467 }
468
469 /*
470 * From drm_mm perspective address space is continuous,
471 * so from this point we're always using non-canonical
472 * form internally.
473 */
474 entry->offset = gen8_noncanonical_addr(entry->offset);
475
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100476 if (!eb->reloc_cache.has_fence) {
477 entry->flags &= ~EXEC_OBJECT_NEEDS_FENCE;
478 } else {
479 if ((entry->flags & EXEC_OBJECT_NEEDS_FENCE ||
480 eb->reloc_cache.needs_unfenced) &&
481 i915_gem_object_is_tiled(vma->obj))
482 entry->flags |= EXEC_OBJECT_NEEDS_GTT | __EXEC_OBJECT_NEEDS_MAP;
483 }
484
485 if (!(entry->flags & EXEC_OBJECT_PINNED))
486 entry->flags |= eb->context_flags;
487
Chris Wilson2889caa2017-06-16 15:05:19 +0100488 return 0;
489}
490
491static int
Chris Wilsond1b48c12017-08-16 09:52:08 +0100492eb_add_vma(struct i915_execbuffer *eb, unsigned int i, struct i915_vma *vma)
Chris Wilson2889caa2017-06-16 15:05:19 +0100493{
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100494 struct drm_i915_gem_exec_object2 *entry = &eb->exec[i];
Chris Wilson2889caa2017-06-16 15:05:19 +0100495 int err;
496
497 GEM_BUG_ON(i915_vma_is_closed(vma));
498
499 if (!(eb->args->flags & __EXEC_VALIDATED)) {
500 err = eb_validate_vma(eb, entry, vma);
501 if (unlikely(err))
502 return err;
503 }
504
Chris Wilson4d470f72017-06-29 16:04:25 +0100505 if (eb->lut_size > 0) {
Chris Wilson2889caa2017-06-16 15:05:19 +0100506 vma->exec_handle = entry->handle;
507 hlist_add_head(&vma->exec_node,
508 &eb->buckets[hash_32(entry->handle,
509 eb->lut_size)]);
510 }
511
512 if (entry->relocation_count)
513 list_add_tail(&vma->reloc_link, &eb->relocs);
514
Chris Wilson2889caa2017-06-16 15:05:19 +0100515 /*
516 * Stash a pointer from the vma to execobj, so we can query its flags,
517 * size, alignment etc as provided by the user. Also we stash a pointer
518 * to the vma inside the execobj so that we can use a direct lookup
519 * to find the right target VMA when doing relocations.
520 */
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100521 eb->vma[i] = vma;
Chris Wilsond1b48c12017-08-16 09:52:08 +0100522 eb->flags[i] = entry->flags;
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100523 vma->exec_flags = &eb->flags[i];
Chris Wilson2889caa2017-06-16 15:05:19 +0100524
525 err = 0;
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100526 if (eb_pin_vma(eb, entry, vma)) {
Chris Wilson2889caa2017-06-16 15:05:19 +0100527 if (entry->offset != vma->node.start) {
528 entry->offset = vma->node.start | UPDATE;
529 eb->args->flags |= __EXEC_HAS_RELOC;
530 }
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100531 } else {
532 eb_unreserve_vma(vma, vma->exec_flags);
533
534 list_add_tail(&vma->exec_link, &eb->unbound);
535 if (drm_mm_node_allocated(&vma->node))
536 err = i915_vma_unbind(vma);
Chris Wilsoned2f3532018-02-19 14:01:44 +0000537 if (unlikely(err))
538 vma->exec_flags = NULL;
Chris Wilson2889caa2017-06-16 15:05:19 +0100539 }
540 return err;
541}
542
543static inline int use_cpu_reloc(const struct reloc_cache *cache,
544 const struct drm_i915_gem_object *obj)
545{
546 if (!i915_gem_object_has_struct_page(obj))
547 return false;
548
Chris Wilson7dd4f672017-06-16 15:05:24 +0100549 if (DBG_FORCE_RELOC == FORCE_CPU_RELOC)
550 return true;
551
552 if (DBG_FORCE_RELOC == FORCE_GTT_RELOC)
553 return false;
Chris Wilson2889caa2017-06-16 15:05:19 +0100554
555 return (cache->has_llc ||
556 obj->cache_dirty ||
557 obj->cache_level != I915_CACHE_NONE);
558}
559
560static int eb_reserve_vma(const struct i915_execbuffer *eb,
561 struct i915_vma *vma)
562{
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100563 struct drm_i915_gem_exec_object2 *entry = exec_entry(eb, vma);
564 unsigned int exec_flags = *vma->exec_flags;
565 u64 pin_flags;
Chris Wilson2889caa2017-06-16 15:05:19 +0100566 int err;
567
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100568 pin_flags = PIN_USER | PIN_NONBLOCK;
569 if (exec_flags & EXEC_OBJECT_NEEDS_GTT)
570 pin_flags |= PIN_GLOBAL;
Chris Wilson2889caa2017-06-16 15:05:19 +0100571
572 /*
573 * Wa32bitGeneralStateOffset & Wa32bitInstructionBaseOffset,
574 * limit address to the first 4GBs for unflagged objects.
575 */
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100576 if (!(exec_flags & EXEC_OBJECT_SUPPORTS_48B_ADDRESS))
577 pin_flags |= PIN_ZONE_4G;
Chris Wilson2889caa2017-06-16 15:05:19 +0100578
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100579 if (exec_flags & __EXEC_OBJECT_NEEDS_MAP)
580 pin_flags |= PIN_MAPPABLE;
Chris Wilson2889caa2017-06-16 15:05:19 +0100581
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100582 if (exec_flags & EXEC_OBJECT_PINNED) {
583 pin_flags |= entry->offset | PIN_OFFSET_FIXED;
584 pin_flags &= ~PIN_NONBLOCK; /* force overlapping checks */
585 } else if (exec_flags & __EXEC_OBJECT_NEEDS_BIAS) {
586 pin_flags |= BATCH_OFFSET_BIAS | PIN_OFFSET_BIAS;
Chris Wilson2889caa2017-06-16 15:05:19 +0100587 }
588
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100589 err = i915_vma_pin(vma,
590 entry->pad_to_size, entry->alignment,
591 pin_flags);
Chris Wilson2889caa2017-06-16 15:05:19 +0100592 if (err)
593 return err;
594
595 if (entry->offset != vma->node.start) {
596 entry->offset = vma->node.start | UPDATE;
597 eb->args->flags |= __EXEC_HAS_RELOC;
598 }
599
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100600 if (unlikely(exec_flags & EXEC_OBJECT_NEEDS_FENCE)) {
Chris Wilson3bd40732017-10-09 09:43:56 +0100601 err = i915_vma_pin_fence(vma);
Chris Wilson2889caa2017-06-16 15:05:19 +0100602 if (unlikely(err)) {
603 i915_vma_unpin(vma);
604 return err;
605 }
606
Chris Wilson3bd40732017-10-09 09:43:56 +0100607 if (vma->fence)
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100608 exec_flags |= __EXEC_OBJECT_HAS_FENCE;
Chris Wilson2889caa2017-06-16 15:05:19 +0100609 }
610
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100611 *vma->exec_flags = exec_flags | __EXEC_OBJECT_HAS_PIN;
612 GEM_BUG_ON(eb_vma_misplaced(entry, vma, exec_flags));
Chris Wilson1da7b542017-07-21 15:50:35 +0100613
Chris Wilson2889caa2017-06-16 15:05:19 +0100614 return 0;
615}
616
617static int eb_reserve(struct i915_execbuffer *eb)
618{
619 const unsigned int count = eb->buffer_count;
620 struct list_head last;
621 struct i915_vma *vma;
622 unsigned int i, pass;
623 int err;
624
625 /*
626 * Attempt to pin all of the buffers into the GTT.
627 * This is done in 3 phases:
628 *
629 * 1a. Unbind all objects that do not match the GTT constraints for
630 * the execbuffer (fenceable, mappable, alignment etc).
631 * 1b. Increment pin count for already bound objects.
632 * 2. Bind new objects.
633 * 3. Decrement pin count.
634 *
635 * This avoid unnecessary unbinding of later objects in order to make
636 * room for the earlier objects *unless* we need to defragment.
637 */
638
639 pass = 0;
640 err = 0;
641 do {
642 list_for_each_entry(vma, &eb->unbound, exec_link) {
643 err = eb_reserve_vma(eb, vma);
644 if (err)
645 break;
646 }
647 if (err != -ENOSPC)
648 return err;
649
650 /* Resort *all* the objects into priority order */
651 INIT_LIST_HEAD(&eb->unbound);
652 INIT_LIST_HEAD(&last);
653 for (i = 0; i < count; i++) {
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100654 unsigned int flags = eb->flags[i];
655 struct i915_vma *vma = eb->vma[i];
Chris Wilson2889caa2017-06-16 15:05:19 +0100656
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100657 if (flags & EXEC_OBJECT_PINNED &&
658 flags & __EXEC_OBJECT_HAS_PIN)
Chris Wilson2889caa2017-06-16 15:05:19 +0100659 continue;
660
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100661 eb_unreserve_vma(vma, &eb->flags[i]);
Chris Wilson2889caa2017-06-16 15:05:19 +0100662
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100663 if (flags & EXEC_OBJECT_PINNED)
Chris Wilson2889caa2017-06-16 15:05:19 +0100664 list_add(&vma->exec_link, &eb->unbound);
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100665 else if (flags & __EXEC_OBJECT_NEEDS_MAP)
Chris Wilson2889caa2017-06-16 15:05:19 +0100666 list_add_tail(&vma->exec_link, &eb->unbound);
667 else
668 list_add_tail(&vma->exec_link, &last);
669 }
670 list_splice_tail(&last, &eb->unbound);
671
672 switch (pass++) {
673 case 0:
674 break;
675
676 case 1:
677 /* Too fragmented, unbind everything and retry */
678 err = i915_gem_evict_vm(eb->vm);
679 if (err)
680 return err;
681 break;
682
683 default:
684 return -ENOSPC;
685 }
686 } while (1);
687}
688
Chris Wilson2889caa2017-06-16 15:05:19 +0100689static unsigned int eb_batch_index(const struct i915_execbuffer *eb)
690{
Chris Wilson1a71cf22017-06-16 15:05:23 +0100691 if (eb->args->flags & I915_EXEC_BATCH_FIRST)
692 return 0;
693 else
694 return eb->buffer_count - 1;
Chris Wilson2889caa2017-06-16 15:05:19 +0100695}
696
697static int eb_select_context(struct i915_execbuffer *eb)
698{
699 struct i915_gem_context *ctx;
700
701 ctx = i915_gem_context_lookup(eb->file->driver_priv, eb->args->rsvd1);
Chris Wilson1acfc102017-06-20 12:05:47 +0100702 if (unlikely(!ctx))
703 return -ENOENT;
Chris Wilson2889caa2017-06-16 15:05:19 +0100704
Chris Wilson1acfc102017-06-20 12:05:47 +0100705 eb->ctx = ctx;
Chris Wilson2889caa2017-06-16 15:05:19 +0100706 eb->vm = ctx->ppgtt ? &ctx->ppgtt->base : &eb->i915->ggtt.base;
707
708 eb->context_flags = 0;
709 if (ctx->flags & CONTEXT_NO_ZEROMAP)
710 eb->context_flags |= __EXEC_OBJECT_NEEDS_BIAS;
711
712 return 0;
713}
714
715static int eb_lookup_vmas(struct i915_execbuffer *eb)
Chris Wilson4ff4b442017-06-16 15:05:16 +0100716{
Chris Wilsond1b48c12017-08-16 09:52:08 +0100717 struct radix_tree_root *handles_vma = &eb->ctx->handles_vma;
Chris Wilsonac70ebe2017-09-12 16:07:52 +0100718 struct drm_i915_gem_object *obj;
Chris Wilson2889caa2017-06-16 15:05:19 +0100719 unsigned int i;
Chris Wilson2889caa2017-06-16 15:05:19 +0100720 int err;
Chris Wilson4ff4b442017-06-16 15:05:16 +0100721
Chris Wilson8bcbfb12017-08-16 09:52:05 +0100722 if (unlikely(i915_gem_context_is_closed(eb->ctx)))
723 return -ENOENT;
724
725 if (unlikely(i915_gem_context_is_banned(eb->ctx)))
726 return -EIO;
727
Chris Wilson2889caa2017-06-16 15:05:19 +0100728 INIT_LIST_HEAD(&eb->relocs);
729 INIT_LIST_HEAD(&eb->unbound);
Chris Wilson4ff4b442017-06-16 15:05:16 +0100730
Chris Wilson170fa292017-08-16 09:52:07 +0100731 for (i = 0; i < eb->buffer_count; i++) {
732 u32 handle = eb->exec[i].handle;
Chris Wilsond1b48c12017-08-16 09:52:08 +0100733 struct i915_lut_handle *lut;
Chris Wilson170fa292017-08-16 09:52:07 +0100734 struct i915_vma *vma;
735
Chris Wilsond1b48c12017-08-16 09:52:08 +0100736 vma = radix_tree_lookup(handles_vma, handle);
737 if (likely(vma))
Chris Wilson170fa292017-08-16 09:52:07 +0100738 goto add_vma;
Chris Wilson4ff4b442017-06-16 15:05:16 +0100739
Chris Wilson170fa292017-08-16 09:52:07 +0100740 obj = i915_gem_object_lookup(eb->file, handle);
Chris Wilson4ff4b442017-06-16 15:05:16 +0100741 if (unlikely(!obj)) {
Chris Wilson2889caa2017-06-16 15:05:19 +0100742 err = -ENOENT;
Chris Wilson170fa292017-08-16 09:52:07 +0100743 goto err_vma;
Chris Wilson4ff4b442017-06-16 15:05:16 +0100744 }
745
Chris Wilson4ff4b442017-06-16 15:05:16 +0100746 vma = i915_vma_instance(obj, eb->vm, NULL);
747 if (unlikely(IS_ERR(vma))) {
Chris Wilson2889caa2017-06-16 15:05:19 +0100748 err = PTR_ERR(vma);
Chris Wilson170fa292017-08-16 09:52:07 +0100749 goto err_obj;
Chris Wilson4ff4b442017-06-16 15:05:16 +0100750 }
751
Chris Wilsond1b48c12017-08-16 09:52:08 +0100752 lut = kmem_cache_alloc(eb->i915->luts, GFP_KERNEL);
753 if (unlikely(!lut)) {
754 err = -ENOMEM;
755 goto err_obj;
Chris Wilson4ff4b442017-06-16 15:05:16 +0100756 }
757
Chris Wilsond1b48c12017-08-16 09:52:08 +0100758 err = radix_tree_insert(handles_vma, handle, vma);
759 if (unlikely(err)) {
Xidong Wang6be11872018-04-04 10:38:24 +0100760 kmem_cache_free(eb->i915->luts, lut);
Chris Wilsond1b48c12017-08-16 09:52:08 +0100761 goto err_obj;
762 }
763
Chris Wilsonac70ebe2017-09-12 16:07:52 +0100764 /* transfer ref to ctx */
Chris Wilson3365e222018-05-03 20:51:14 +0100765 if (!vma->open_count++)
766 i915_vma_reopen(vma);
Chris Wilsond1b48c12017-08-16 09:52:08 +0100767 list_add(&lut->obj_link, &obj->lut_list);
768 list_add(&lut->ctx_link, &eb->ctx->handles_list);
769 lut->ctx = eb->ctx;
770 lut->handle = handle;
771
Chris Wilson170fa292017-08-16 09:52:07 +0100772add_vma:
Chris Wilsond1b48c12017-08-16 09:52:08 +0100773 err = eb_add_vma(eb, i, vma);
Chris Wilson2889caa2017-06-16 15:05:19 +0100774 if (unlikely(err))
Chris Wilsonac70ebe2017-09-12 16:07:52 +0100775 goto err_vma;
Chris Wilsondade2a62017-06-16 15:05:20 +0100776
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100777 GEM_BUG_ON(vma != eb->vma[i]);
778 GEM_BUG_ON(vma->exec_flags != &eb->flags[i]);
Chris Wilson4ff4b442017-06-16 15:05:16 +0100779 }
780
Chris Wilson2889caa2017-06-16 15:05:19 +0100781 /* take note of the batch buffer before we might reorder the lists */
782 i = eb_batch_index(eb);
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100783 eb->batch = eb->vma[i];
784 GEM_BUG_ON(eb->batch->exec_flags != &eb->flags[i]);
Chris Wilson59bfa122016-08-04 16:32:31 +0100785
786 /*
787 * SNA is doing fancy tricks with compressing batch buffers, which leads
788 * to negative relocation deltas. Usually that works out ok since the
789 * relocate address is still positive, except when the batch is placed
790 * very low in the GTT. Ensure this doesn't happen.
791 *
792 * Note that actual hangs have only been observed on gen7, but for
793 * paranoia do it everywhere.
794 */
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100795 if (!(eb->flags[i] & EXEC_OBJECT_PINNED))
796 eb->flags[i] |= __EXEC_OBJECT_NEEDS_BIAS;
Chris Wilson2889caa2017-06-16 15:05:19 +0100797 if (eb->reloc_cache.has_fence)
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100798 eb->flags[i] |= EXEC_OBJECT_NEEDS_FENCE;
Chris Wilson59bfa122016-08-04 16:32:31 +0100799
Chris Wilson2889caa2017-06-16 15:05:19 +0100800 eb->args->flags |= __EXEC_VALIDATED;
801 return eb_reserve(eb);
802
Chris Wilson170fa292017-08-16 09:52:07 +0100803err_obj:
Chris Wilsonac70ebe2017-09-12 16:07:52 +0100804 i915_gem_object_put(obj);
Chris Wilson170fa292017-08-16 09:52:07 +0100805err_vma:
806 eb->vma[i] = NULL;
Chris Wilson2889caa2017-06-16 15:05:19 +0100807 return err;
Chris Wilson59bfa122016-08-04 16:32:31 +0100808}
809
Chris Wilson4ff4b442017-06-16 15:05:16 +0100810static struct i915_vma *
Chris Wilson2889caa2017-06-16 15:05:19 +0100811eb_get_vma(const struct i915_execbuffer *eb, unsigned long handle)
Chris Wilson3b96eff2013-01-08 10:53:14 +0000812{
Chris Wilson2889caa2017-06-16 15:05:19 +0100813 if (eb->lut_size < 0) {
814 if (handle >= -eb->lut_size)
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000815 return NULL;
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100816 return eb->vma[handle];
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000817 } else {
818 struct hlist_head *head;
Geliang Tangaa459502016-01-18 23:54:20 +0800819 struct i915_vma *vma;
Chris Wilson67731b82010-12-08 10:38:14 +0000820
Chris Wilson2889caa2017-06-16 15:05:19 +0100821 head = &eb->buckets[hash_32(handle, eb->lut_size)];
Geliang Tangaa459502016-01-18 23:54:20 +0800822 hlist_for_each_entry(vma, head, exec_node) {
Ben Widawsky27173f12013-08-14 11:38:36 +0200823 if (vma->exec_handle == handle)
824 return vma;
Chris Wilsoneef90cc2013-01-08 10:53:17 +0000825 }
826 return NULL;
Chris Wilson67731b82010-12-08 10:38:14 +0000827 }
Chris Wilson67731b82010-12-08 10:38:14 +0000828}
829
Chris Wilson2889caa2017-06-16 15:05:19 +0100830static void eb_release_vmas(const struct i915_execbuffer *eb)
Chris Wilsona415d352013-11-26 11:23:15 +0000831{
Chris Wilson2889caa2017-06-16 15:05:19 +0100832 const unsigned int count = eb->buffer_count;
833 unsigned int i;
Chris Wilson650bc632017-06-15 09:14:33 +0100834
Chris Wilson2889caa2017-06-16 15:05:19 +0100835 for (i = 0; i < count; i++) {
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100836 struct i915_vma *vma = eb->vma[i];
837 unsigned int flags = eb->flags[i];
Chris Wilson2889caa2017-06-16 15:05:19 +0100838
839 if (!vma)
Chris Wilson170fa292017-08-16 09:52:07 +0100840 break;
Chris Wilsonbcffc3f2013-01-08 10:53:15 +0000841
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100842 GEM_BUG_ON(vma->exec_flags != &eb->flags[i]);
843 vma->exec_flags = NULL;
844 eb->vma[i] = NULL;
Chris Wilson2889caa2017-06-16 15:05:19 +0100845
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100846 if (flags & __EXEC_OBJECT_HAS_PIN)
847 __eb_unreserve_vma(vma, flags);
Chris Wilson2889caa2017-06-16 15:05:19 +0100848
Chris Wilsonc7c6e462017-08-16 09:52:06 +0100849 if (flags & __EXEC_OBJECT_HAS_REF)
Chris Wilsondade2a62017-06-16 15:05:20 +0100850 i915_vma_put(vma);
Chris Wilsonbcffc3f2013-01-08 10:53:15 +0000851 }
Chris Wilson2889caa2017-06-16 15:05:19 +0100852}
Chris Wilsond55495b2017-06-15 09:14:34 +0100853
Chris Wilson2889caa2017-06-16 15:05:19 +0100854static void eb_reset_vmas(const struct i915_execbuffer *eb)
855{
856 eb_release_vmas(eb);
Chris Wilson4d470f72017-06-29 16:04:25 +0100857 if (eb->lut_size > 0)
Chris Wilson2889caa2017-06-16 15:05:19 +0100858 memset(eb->buckets, 0,
859 sizeof(struct hlist_head) << eb->lut_size);
860}
Chris Wilsond55495b2017-06-15 09:14:34 +0100861
Chris Wilson2889caa2017-06-16 15:05:19 +0100862static void eb_destroy(const struct i915_execbuffer *eb)
863{
Chris Wilson7dd4f672017-06-16 15:05:24 +0100864 GEM_BUG_ON(eb->reloc_cache.rq);
865
Chris Wilson4d470f72017-06-29 16:04:25 +0100866 if (eb->lut_size > 0)
Chris Wilsond55495b2017-06-15 09:14:34 +0100867 kfree(eb->buckets);
Chris Wilson67731b82010-12-08 10:38:14 +0000868}
869
Chris Wilson2889caa2017-06-16 15:05:19 +0100870static inline u64
Chris Wilsond50415c2016-08-18 17:16:52 +0100871relocation_target(const struct drm_i915_gem_relocation_entry *reloc,
Chris Wilson2889caa2017-06-16 15:05:19 +0100872 const struct i915_vma *target)
Michał Winiarski934acce2015-12-29 18:24:52 +0100873{
Chris Wilson2889caa2017-06-16 15:05:19 +0100874 return gen8_canonical_addr((int)reloc->delta + target->node.start);
Michał Winiarski934acce2015-12-29 18:24:52 +0100875}
876
Chris Wilsond50415c2016-08-18 17:16:52 +0100877static void reloc_cache_init(struct reloc_cache *cache,
878 struct drm_i915_private *i915)
Rafael Barbalho5032d872013-08-21 17:10:51 +0100879{
Chris Wilson31a39202016-08-18 17:16:46 +0100880 cache->page = -1;
Chris Wilsond50415c2016-08-18 17:16:52 +0100881 cache->vaddr = 0;
Joonas Lahtinendfc51482016-11-03 10:39:46 +0200882 /* Must be a variable in the struct to allow GCC to unroll. */
Chris Wilson7dd4f672017-06-16 15:05:24 +0100883 cache->gen = INTEL_GEN(i915);
Chris Wilson2889caa2017-06-16 15:05:19 +0100884 cache->has_llc = HAS_LLC(i915);
Joonas Lahtinendfc51482016-11-03 10:39:46 +0200885 cache->use_64bit_reloc = HAS_64BIT_RELOC(i915);
Chris Wilson7dd4f672017-06-16 15:05:24 +0100886 cache->has_fence = cache->gen < 4;
887 cache->needs_unfenced = INTEL_INFO(i915)->unfenced_needs_alignment;
Chris Wilsone8cb9092016-08-18 17:16:53 +0100888 cache->node.allocated = false;
Chris Wilson7dd4f672017-06-16 15:05:24 +0100889 cache->rq = NULL;
890 cache->rq_size = 0;
Chris Wilson31a39202016-08-18 17:16:46 +0100891}
Rafael Barbalho5032d872013-08-21 17:10:51 +0100892
Chris Wilsond50415c2016-08-18 17:16:52 +0100893static inline void *unmask_page(unsigned long p)
894{
895 return (void *)(uintptr_t)(p & PAGE_MASK);
896}
Rafael Barbalho5032d872013-08-21 17:10:51 +0100897
Chris Wilsond50415c2016-08-18 17:16:52 +0100898static inline unsigned int unmask_flags(unsigned long p)
899{
900 return p & ~PAGE_MASK;
901}
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700902
Chris Wilsond50415c2016-08-18 17:16:52 +0100903#define KMAP 0x4 /* after CLFLUSH_FLAGS */
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700904
Chris Wilson650bc632017-06-15 09:14:33 +0100905static inline struct i915_ggtt *cache_to_ggtt(struct reloc_cache *cache)
906{
907 struct drm_i915_private *i915 =
908 container_of(cache, struct i915_execbuffer, reloc_cache)->i915;
909 return &i915->ggtt;
910}
911
Chris Wilson7dd4f672017-06-16 15:05:24 +0100912static void reloc_gpu_flush(struct reloc_cache *cache)
913{
914 GEM_BUG_ON(cache->rq_size >= cache->rq->batch->obj->base.size / sizeof(u32));
915 cache->rq_cmd[cache->rq_size] = MI_BATCH_BUFFER_END;
916 i915_gem_object_unpin_map(cache->rq->batch->obj);
917 i915_gem_chipset_flush(cache->rq->i915);
918
Chris Wilsone61e0f52018-02-21 09:56:36 +0000919 __i915_request_add(cache->rq, true);
Chris Wilson7dd4f672017-06-16 15:05:24 +0100920 cache->rq = NULL;
921}
922
Chris Wilson650bc632017-06-15 09:14:33 +0100923static void reloc_cache_reset(struct reloc_cache *cache)
Chris Wilson31a39202016-08-18 17:16:46 +0100924{
Chris Wilsond50415c2016-08-18 17:16:52 +0100925 void *vaddr;
926
Chris Wilson7dd4f672017-06-16 15:05:24 +0100927 if (cache->rq)
928 reloc_gpu_flush(cache);
929
Chris Wilson31a39202016-08-18 17:16:46 +0100930 if (!cache->vaddr)
931 return;
932
Chris Wilsond50415c2016-08-18 17:16:52 +0100933 vaddr = unmask_page(cache->vaddr);
934 if (cache->vaddr & KMAP) {
935 if (cache->vaddr & CLFLUSH_AFTER)
936 mb();
Chris Wilson31a39202016-08-18 17:16:46 +0100937
Chris Wilsond50415c2016-08-18 17:16:52 +0100938 kunmap_atomic(vaddr);
939 i915_gem_obj_finish_shmem_access((struct drm_i915_gem_object *)cache->node.mm);
940 } else {
Chris Wilsone8cb9092016-08-18 17:16:53 +0100941 wmb();
Chris Wilsond50415c2016-08-18 17:16:52 +0100942 io_mapping_unmap_atomic((void __iomem *)vaddr);
Chris Wilsone8cb9092016-08-18 17:16:53 +0100943 if (cache->node.allocated) {
Chris Wilson650bc632017-06-15 09:14:33 +0100944 struct i915_ggtt *ggtt = cache_to_ggtt(cache);
Chris Wilsone8cb9092016-08-18 17:16:53 +0100945
946 ggtt->base.clear_range(&ggtt->base,
947 cache->node.start,
Michał Winiarski4fb84d92016-10-13 14:02:40 +0200948 cache->node.size);
Chris Wilsone8cb9092016-08-18 17:16:53 +0100949 drm_mm_remove_node(&cache->node);
950 } else {
951 i915_vma_unpin((struct i915_vma *)cache->node.mm);
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700952 }
Chris Wilson31a39202016-08-18 17:16:46 +0100953 }
Chris Wilson650bc632017-06-15 09:14:33 +0100954
955 cache->vaddr = 0;
956 cache->page = -1;
Chris Wilson31a39202016-08-18 17:16:46 +0100957}
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700958
Chris Wilson31a39202016-08-18 17:16:46 +0100959static void *reloc_kmap(struct drm_i915_gem_object *obj,
960 struct reloc_cache *cache,
Chris Wilson2889caa2017-06-16 15:05:19 +0100961 unsigned long page)
Chris Wilson31a39202016-08-18 17:16:46 +0100962{
Chris Wilsond50415c2016-08-18 17:16:52 +0100963 void *vaddr;
Chris Wilson31a39202016-08-18 17:16:46 +0100964
Chris Wilsond50415c2016-08-18 17:16:52 +0100965 if (cache->vaddr) {
966 kunmap_atomic(unmask_page(cache->vaddr));
967 } else {
968 unsigned int flushes;
Chris Wilson2889caa2017-06-16 15:05:19 +0100969 int err;
Chris Wilson31a39202016-08-18 17:16:46 +0100970
Chris Wilson2889caa2017-06-16 15:05:19 +0100971 err = i915_gem_obj_prepare_shmem_write(obj, &flushes);
972 if (err)
973 return ERR_PTR(err);
Chris Wilsond50415c2016-08-18 17:16:52 +0100974
975 BUILD_BUG_ON(KMAP & CLFLUSH_FLAGS);
976 BUILD_BUG_ON((KMAP | CLFLUSH_FLAGS) & PAGE_MASK);
977
978 cache->vaddr = flushes | KMAP;
979 cache->node.mm = (void *)obj;
980 if (flushes)
981 mb();
Ben Widawsky3c94cee2013-11-02 21:07:11 -0700982 }
983
Chris Wilsond50415c2016-08-18 17:16:52 +0100984 vaddr = kmap_atomic(i915_gem_object_get_dirty_page(obj, page));
985 cache->vaddr = unmask_flags(cache->vaddr) | (unsigned long)vaddr;
Chris Wilson31a39202016-08-18 17:16:46 +0100986 cache->page = page;
Chris Wilson31a39202016-08-18 17:16:46 +0100987
Chris Wilsond50415c2016-08-18 17:16:52 +0100988 return vaddr;
Chris Wilson31a39202016-08-18 17:16:46 +0100989}
990
Chris Wilsond50415c2016-08-18 17:16:52 +0100991static void *reloc_iomap(struct drm_i915_gem_object *obj,
Chris Wilson31a39202016-08-18 17:16:46 +0100992 struct reloc_cache *cache,
Chris Wilson2889caa2017-06-16 15:05:19 +0100993 unsigned long page)
Chris Wilson31a39202016-08-18 17:16:46 +0100994{
Chris Wilson650bc632017-06-15 09:14:33 +0100995 struct i915_ggtt *ggtt = cache_to_ggtt(cache);
Chris Wilsone8cb9092016-08-18 17:16:53 +0100996 unsigned long offset;
Chris Wilsond50415c2016-08-18 17:16:52 +0100997 void *vaddr;
Chris Wilson31a39202016-08-18 17:16:46 +0100998
Chris Wilsond50415c2016-08-18 17:16:52 +0100999 if (cache->vaddr) {
Jani Nikula615e5002016-10-04 12:54:13 +03001000 io_mapping_unmap_atomic((void __force __iomem *) unmask_page(cache->vaddr));
Chris Wilsond50415c2016-08-18 17:16:52 +01001001 } else {
1002 struct i915_vma *vma;
Chris Wilson2889caa2017-06-16 15:05:19 +01001003 int err;
Chris Wilson31a39202016-08-18 17:16:46 +01001004
Chris Wilson2889caa2017-06-16 15:05:19 +01001005 if (use_cpu_reloc(cache, obj))
Chris Wilsond50415c2016-08-18 17:16:52 +01001006 return NULL;
Chris Wilson31a39202016-08-18 17:16:46 +01001007
Chris Wilson2889caa2017-06-16 15:05:19 +01001008 err = i915_gem_object_set_to_gtt_domain(obj, true);
1009 if (err)
1010 return ERR_PTR(err);
Chris Wilson31a39202016-08-18 17:16:46 +01001011
Chris Wilsond50415c2016-08-18 17:16:52 +01001012 vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0,
Chris Wilson3c755c52017-10-09 09:43:59 +01001013 PIN_MAPPABLE |
1014 PIN_NONBLOCK |
1015 PIN_NONFAULT);
Chris Wilsone8cb9092016-08-18 17:16:53 +01001016 if (IS_ERR(vma)) {
1017 memset(&cache->node, 0, sizeof(cache->node));
Chris Wilson2889caa2017-06-16 15:05:19 +01001018 err = drm_mm_insert_node_in_range
Chris Wilsone8cb9092016-08-18 17:16:53 +01001019 (&ggtt->base.mm, &cache->node,
Chris Wilsonf51455d2017-01-10 14:47:34 +00001020 PAGE_SIZE, 0, I915_COLOR_UNEVICTABLE,
Chris Wilsone8cb9092016-08-18 17:16:53 +01001021 0, ggtt->mappable_end,
Chris Wilson4e64e552017-02-02 21:04:38 +00001022 DRM_MM_INSERT_LOW);
Chris Wilson2889caa2017-06-16 15:05:19 +01001023 if (err) /* no inactive aperture space, use cpu reloc */
Chris Wilsonc92fa4f2016-10-07 07:53:25 +01001024 return NULL;
Chris Wilsone8cb9092016-08-18 17:16:53 +01001025 } else {
Chris Wilson2889caa2017-06-16 15:05:19 +01001026 err = i915_vma_put_fence(vma);
1027 if (err) {
Chris Wilsone8cb9092016-08-18 17:16:53 +01001028 i915_vma_unpin(vma);
Chris Wilson2889caa2017-06-16 15:05:19 +01001029 return ERR_PTR(err);
Chris Wilsone8cb9092016-08-18 17:16:53 +01001030 }
Rafael Barbalho5032d872013-08-21 17:10:51 +01001031
Chris Wilsone8cb9092016-08-18 17:16:53 +01001032 cache->node.start = vma->node.start;
1033 cache->node.mm = (void *)vma;
Chris Wilsond50415c2016-08-18 17:16:52 +01001034 }
Ben Widawsky3c94cee2013-11-02 21:07:11 -07001035 }
1036
Chris Wilsone8cb9092016-08-18 17:16:53 +01001037 offset = cache->node.start;
1038 if (cache->node.allocated) {
Chris Wilsonfc099092016-10-28 15:27:56 +01001039 wmb();
Chris Wilsone8cb9092016-08-18 17:16:53 +01001040 ggtt->base.insert_page(&ggtt->base,
1041 i915_gem_object_get_dma_address(obj, page),
1042 offset, I915_CACHE_NONE, 0);
1043 } else {
1044 offset += page << PAGE_SHIFT;
1045 }
1046
Matthew Auld73ebd502017-12-11 15:18:20 +00001047 vaddr = (void __force *)io_mapping_map_atomic_wc(&ggtt->iomap,
Chris Wilson650bc632017-06-15 09:14:33 +01001048 offset);
Chris Wilsond50415c2016-08-18 17:16:52 +01001049 cache->page = page;
1050 cache->vaddr = (unsigned long)vaddr;
1051
1052 return vaddr;
Rafael Barbalho5032d872013-08-21 17:10:51 +01001053}
1054
Chris Wilsond50415c2016-08-18 17:16:52 +01001055static void *reloc_vaddr(struct drm_i915_gem_object *obj,
1056 struct reloc_cache *cache,
Chris Wilson2889caa2017-06-16 15:05:19 +01001057 unsigned long page)
Chris Wilsonedf4427b2015-01-14 11:20:56 +00001058{
Chris Wilsond50415c2016-08-18 17:16:52 +01001059 void *vaddr;
1060
1061 if (cache->page == page) {
1062 vaddr = unmask_page(cache->vaddr);
1063 } else {
1064 vaddr = NULL;
1065 if ((cache->vaddr & KMAP) == 0)
1066 vaddr = reloc_iomap(obj, cache, page);
1067 if (!vaddr)
1068 vaddr = reloc_kmap(obj, cache, page);
1069 }
1070
1071 return vaddr;
1072}
1073
1074static void clflush_write32(u32 *addr, u32 value, unsigned int flushes)
1075{
1076 if (unlikely(flushes & (CLFLUSH_BEFORE | CLFLUSH_AFTER))) {
1077 if (flushes & CLFLUSH_BEFORE) {
1078 clflushopt(addr);
1079 mb();
1080 }
1081
1082 *addr = value;
1083
Chris Wilson2889caa2017-06-16 15:05:19 +01001084 /*
1085 * Writes to the same cacheline are serialised by the CPU
Chris Wilsond50415c2016-08-18 17:16:52 +01001086 * (including clflush). On the write path, we only require
1087 * that it hits memory in an orderly fashion and place
1088 * mb barriers at the start and end of the relocation phase
1089 * to ensure ordering of clflush wrt to the system.
1090 */
1091 if (flushes & CLFLUSH_AFTER)
1092 clflushopt(addr);
1093 } else
1094 *addr = value;
Chris Wilsonedf4427b2015-01-14 11:20:56 +00001095}
1096
Chris Wilson7dd4f672017-06-16 15:05:24 +01001097static int __reloc_gpu_alloc(struct i915_execbuffer *eb,
1098 struct i915_vma *vma,
1099 unsigned int len)
1100{
1101 struct reloc_cache *cache = &eb->reloc_cache;
1102 struct drm_i915_gem_object *obj;
Chris Wilsone61e0f52018-02-21 09:56:36 +00001103 struct i915_request *rq;
Chris Wilson7dd4f672017-06-16 15:05:24 +01001104 struct i915_vma *batch;
1105 u32 *cmd;
1106 int err;
1107
Christian Königc0a51fd2018-02-16 13:43:38 +01001108 GEM_BUG_ON(vma->obj->write_domain & I915_GEM_DOMAIN_CPU);
Chris Wilson7dd4f672017-06-16 15:05:24 +01001109
1110 obj = i915_gem_batch_pool_get(&eb->engine->batch_pool, PAGE_SIZE);
1111 if (IS_ERR(obj))
1112 return PTR_ERR(obj);
1113
1114 cmd = i915_gem_object_pin_map(obj,
Chris Wilsona575c672017-08-28 11:46:31 +01001115 cache->has_llc ?
1116 I915_MAP_FORCE_WB :
1117 I915_MAP_FORCE_WC);
Chris Wilson7dd4f672017-06-16 15:05:24 +01001118 i915_gem_object_unpin_pages(obj);
1119 if (IS_ERR(cmd))
1120 return PTR_ERR(cmd);
1121
1122 err = i915_gem_object_set_to_wc_domain(obj, false);
1123 if (err)
1124 goto err_unmap;
1125
1126 batch = i915_vma_instance(obj, vma->vm, NULL);
1127 if (IS_ERR(batch)) {
1128 err = PTR_ERR(batch);
1129 goto err_unmap;
1130 }
1131
1132 err = i915_vma_pin(batch, 0, 0, PIN_USER | PIN_NONBLOCK);
1133 if (err)
1134 goto err_unmap;
1135
Chris Wilsone61e0f52018-02-21 09:56:36 +00001136 rq = i915_request_alloc(eb->engine, eb->ctx);
Chris Wilson7dd4f672017-06-16 15:05:24 +01001137 if (IS_ERR(rq)) {
1138 err = PTR_ERR(rq);
1139 goto err_unpin;
1140 }
1141
Chris Wilsone61e0f52018-02-21 09:56:36 +00001142 err = i915_request_await_object(rq, vma->obj, true);
Chris Wilson7dd4f672017-06-16 15:05:24 +01001143 if (err)
1144 goto err_request;
1145
Chris Wilson7dd4f672017-06-16 15:05:24 +01001146 err = eb->engine->emit_bb_start(rq,
1147 batch->node.start, PAGE_SIZE,
1148 cache->gen > 5 ? 0 : I915_DISPATCH_SECURE);
1149 if (err)
1150 goto err_request;
1151
Chris Wilson95ff7c72017-06-16 15:05:25 +01001152 GEM_BUG_ON(!reservation_object_test_signaled_rcu(batch->resv, true));
Chris Wilson7dd4f672017-06-16 15:05:24 +01001153 i915_vma_move_to_active(batch, rq, 0);
Chris Wilson95ff7c72017-06-16 15:05:25 +01001154 reservation_object_lock(batch->resv, NULL);
1155 reservation_object_add_excl_fence(batch->resv, &rq->fence);
1156 reservation_object_unlock(batch->resv);
Chris Wilson7dd4f672017-06-16 15:05:24 +01001157 i915_vma_unpin(batch);
1158
Chris Wilson25ffaa62017-06-20 13:43:20 +01001159 i915_vma_move_to_active(vma, rq, EXEC_OBJECT_WRITE);
Chris Wilson95ff7c72017-06-16 15:05:25 +01001160 reservation_object_lock(vma->resv, NULL);
1161 reservation_object_add_excl_fence(vma->resv, &rq->fence);
1162 reservation_object_unlock(vma->resv);
Chris Wilson7dd4f672017-06-16 15:05:24 +01001163
1164 rq->batch = batch;
1165
1166 cache->rq = rq;
1167 cache->rq_cmd = cmd;
1168 cache->rq_size = 0;
1169
1170 /* Return with batch mapping (cmd) still pinned */
1171 return 0;
1172
1173err_request:
Chris Wilsone61e0f52018-02-21 09:56:36 +00001174 i915_request_add(rq);
Chris Wilson7dd4f672017-06-16 15:05:24 +01001175err_unpin:
1176 i915_vma_unpin(batch);
1177err_unmap:
1178 i915_gem_object_unpin_map(obj);
1179 return err;
1180}
1181
1182static u32 *reloc_gpu(struct i915_execbuffer *eb,
1183 struct i915_vma *vma,
1184 unsigned int len)
1185{
1186 struct reloc_cache *cache = &eb->reloc_cache;
1187 u32 *cmd;
1188
1189 if (cache->rq_size > PAGE_SIZE/sizeof(u32) - (len + 1))
1190 reloc_gpu_flush(cache);
1191
1192 if (unlikely(!cache->rq)) {
1193 int err;
1194
Chris Wilson3dbf26e2017-08-26 14:56:20 +01001195 /* If we need to copy for the cmdparser, we will stall anyway */
1196 if (eb_use_cmdparser(eb))
1197 return ERR_PTR(-EWOULDBLOCK);
1198
Chris Wilson90cad092017-09-06 16:28:59 +01001199 if (!intel_engine_can_store_dword(eb->engine))
1200 return ERR_PTR(-ENODEV);
1201
Chris Wilson7dd4f672017-06-16 15:05:24 +01001202 err = __reloc_gpu_alloc(eb, vma, len);
1203 if (unlikely(err))
1204 return ERR_PTR(err);
1205 }
1206
1207 cmd = cache->rq_cmd + cache->rq_size;
1208 cache->rq_size += len;
1209
1210 return cmd;
1211}
1212
Chris Wilson2889caa2017-06-16 15:05:19 +01001213static u64
1214relocate_entry(struct i915_vma *vma,
Chris Wilsond50415c2016-08-18 17:16:52 +01001215 const struct drm_i915_gem_relocation_entry *reloc,
Chris Wilson2889caa2017-06-16 15:05:19 +01001216 struct i915_execbuffer *eb,
1217 const struct i915_vma *target)
Chris Wilsonedf4427b2015-01-14 11:20:56 +00001218{
Chris Wilsond50415c2016-08-18 17:16:52 +01001219 u64 offset = reloc->offset;
Chris Wilson2889caa2017-06-16 15:05:19 +01001220 u64 target_offset = relocation_target(reloc, target);
1221 bool wide = eb->reloc_cache.use_64bit_reloc;
Chris Wilsond50415c2016-08-18 17:16:52 +01001222 void *vaddr;
Chris Wilsonedf4427b2015-01-14 11:20:56 +00001223
Chris Wilson7dd4f672017-06-16 15:05:24 +01001224 if (!eb->reloc_cache.vaddr &&
1225 (DBG_FORCE_RELOC == FORCE_GPU_RELOC ||
Chris Wilson90cad092017-09-06 16:28:59 +01001226 !reservation_object_test_signaled_rcu(vma->resv, true))) {
Chris Wilson7dd4f672017-06-16 15:05:24 +01001227 const unsigned int gen = eb->reloc_cache.gen;
1228 unsigned int len;
1229 u32 *batch;
1230 u64 addr;
1231
1232 if (wide)
1233 len = offset & 7 ? 8 : 5;
1234 else if (gen >= 4)
1235 len = 4;
Chris Wilsonf2f5c062017-08-16 09:52:04 +01001236 else
Chris Wilson7dd4f672017-06-16 15:05:24 +01001237 len = 3;
Chris Wilson7dd4f672017-06-16 15:05:24 +01001238
1239 batch = reloc_gpu(eb, vma, len);
1240 if (IS_ERR(batch))
1241 goto repeat;
1242
1243 addr = gen8_canonical_addr(vma->node.start + offset);
1244 if (wide) {
1245 if (offset & 7) {
1246 *batch++ = MI_STORE_DWORD_IMM_GEN4;
1247 *batch++ = lower_32_bits(addr);
1248 *batch++ = upper_32_bits(addr);
1249 *batch++ = lower_32_bits(target_offset);
1250
1251 addr = gen8_canonical_addr(addr + 4);
1252
1253 *batch++ = MI_STORE_DWORD_IMM_GEN4;
1254 *batch++ = lower_32_bits(addr);
1255 *batch++ = upper_32_bits(addr);
1256 *batch++ = upper_32_bits(target_offset);
1257 } else {
1258 *batch++ = (MI_STORE_DWORD_IMM_GEN4 | (1 << 21)) + 1;
1259 *batch++ = lower_32_bits(addr);
1260 *batch++ = upper_32_bits(addr);
1261 *batch++ = lower_32_bits(target_offset);
1262 *batch++ = upper_32_bits(target_offset);
1263 }
1264 } else if (gen >= 6) {
1265 *batch++ = MI_STORE_DWORD_IMM_GEN4;
1266 *batch++ = 0;
1267 *batch++ = addr;
1268 *batch++ = target_offset;
1269 } else if (gen >= 4) {
1270 *batch++ = MI_STORE_DWORD_IMM_GEN4 | MI_USE_GGTT;
1271 *batch++ = 0;
1272 *batch++ = addr;
1273 *batch++ = target_offset;
1274 } else {
1275 *batch++ = MI_STORE_DWORD_IMM | MI_MEM_VIRTUAL;
1276 *batch++ = addr;
1277 *batch++ = target_offset;
1278 }
1279
1280 goto out;
1281 }
1282
Chris Wilsond50415c2016-08-18 17:16:52 +01001283repeat:
Chris Wilson95ff7c72017-06-16 15:05:25 +01001284 vaddr = reloc_vaddr(vma->obj, &eb->reloc_cache, offset >> PAGE_SHIFT);
Chris Wilsond50415c2016-08-18 17:16:52 +01001285 if (IS_ERR(vaddr))
1286 return PTR_ERR(vaddr);
Chris Wilsonedf4427b2015-01-14 11:20:56 +00001287
Chris Wilsond50415c2016-08-18 17:16:52 +01001288 clflush_write32(vaddr + offset_in_page(offset),
1289 lower_32_bits(target_offset),
Chris Wilson2889caa2017-06-16 15:05:19 +01001290 eb->reloc_cache.vaddr);
Chris Wilsonedf4427b2015-01-14 11:20:56 +00001291
Chris Wilsond50415c2016-08-18 17:16:52 +01001292 if (wide) {
1293 offset += sizeof(u32);
1294 target_offset >>= 32;
1295 wide = false;
1296 goto repeat;
Chris Wilsonedf4427b2015-01-14 11:20:56 +00001297 }
Chris Wilsondabdfe02012-03-26 10:10:27 +02001298
Chris Wilson7dd4f672017-06-16 15:05:24 +01001299out:
Chris Wilson2889caa2017-06-16 15:05:19 +01001300 return target->node.start | UPDATE;
Rafael Barbalho5032d872013-08-21 17:10:51 +01001301}
1302
Chris Wilson2889caa2017-06-16 15:05:19 +01001303static u64
1304eb_relocate_entry(struct i915_execbuffer *eb,
1305 struct i915_vma *vma,
1306 const struct drm_i915_gem_relocation_entry *reloc)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001307{
Chris Wilson507d9772017-06-16 15:05:17 +01001308 struct i915_vma *target;
Chris Wilson2889caa2017-06-16 15:05:19 +01001309 int err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001310
Chris Wilson67731b82010-12-08 10:38:14 +00001311 /* we've already hold a reference to all valid objects */
Chris Wilson507d9772017-06-16 15:05:17 +01001312 target = eb_get_vma(eb, reloc->target_handle);
1313 if (unlikely(!target))
Chris Wilson54cf91d2010-11-25 18:00:26 +00001314 return -ENOENT;
Eric Anholte844b992012-07-31 15:35:01 -07001315
Chris Wilson54cf91d2010-11-25 18:00:26 +00001316 /* Validate that the target is in a valid r/w GPU domain */
Chris Wilsonb8f7ab12010-12-08 10:43:06 +00001317 if (unlikely(reloc->write_domain & (reloc->write_domain - 1))) {
Daniel Vetterff240192012-01-31 21:08:14 +01001318 DRM_DEBUG("reloc with multiple write domains: "
Chris Wilson507d9772017-06-16 15:05:17 +01001319 "target %d offset %d "
Chris Wilson54cf91d2010-11-25 18:00:26 +00001320 "read %08x write %08x",
Chris Wilson507d9772017-06-16 15:05:17 +01001321 reloc->target_handle,
Chris Wilson54cf91d2010-11-25 18:00:26 +00001322 (int) reloc->offset,
1323 reloc->read_domains,
1324 reloc->write_domain);
Ben Widawsky8b78f0e2013-12-26 13:39:50 -08001325 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001326 }
Daniel Vetter4ca4a252011-12-14 13:57:27 +01001327 if (unlikely((reloc->write_domain | reloc->read_domains)
1328 & ~I915_GEM_GPU_DOMAINS)) {
Daniel Vetterff240192012-01-31 21:08:14 +01001329 DRM_DEBUG("reloc with read/write non-GPU domains: "
Chris Wilson507d9772017-06-16 15:05:17 +01001330 "target %d offset %d "
Chris Wilson54cf91d2010-11-25 18:00:26 +00001331 "read %08x write %08x",
Chris Wilson507d9772017-06-16 15:05:17 +01001332 reloc->target_handle,
Chris Wilson54cf91d2010-11-25 18:00:26 +00001333 (int) reloc->offset,
1334 reloc->read_domains,
1335 reloc->write_domain);
Ben Widawsky8b78f0e2013-12-26 13:39:50 -08001336 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001337 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001338
Chris Wilson2889caa2017-06-16 15:05:19 +01001339 if (reloc->write_domain) {
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001340 *target->exec_flags |= EXEC_OBJECT_WRITE;
Chris Wilson507d9772017-06-16 15:05:17 +01001341
Chris Wilson2889caa2017-06-16 15:05:19 +01001342 /*
1343 * Sandybridge PPGTT errata: We need a global gtt mapping
1344 * for MI and pipe_control writes because the gpu doesn't
1345 * properly redirect them through the ppgtt for non_secure
1346 * batchbuffers.
1347 */
1348 if (reloc->write_domain == I915_GEM_DOMAIN_INSTRUCTION &&
1349 IS_GEN6(eb->i915)) {
1350 err = i915_vma_bind(target, target->obj->cache_level,
1351 PIN_GLOBAL);
1352 if (WARN_ONCE(err,
1353 "Unexpected failure to bind target VMA!"))
1354 return err;
1355 }
Chris Wilson507d9772017-06-16 15:05:17 +01001356 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001357
Chris Wilson2889caa2017-06-16 15:05:19 +01001358 /*
1359 * If the relocation already has the right value in it, no
Chris Wilson54cf91d2010-11-25 18:00:26 +00001360 * more work needs to be done.
1361 */
Chris Wilson7dd4f672017-06-16 15:05:24 +01001362 if (!DBG_FORCE_RELOC &&
1363 gen8_canonical_addr(target->node.start) == reloc->presumed_offset)
Chris Wilson67731b82010-12-08 10:38:14 +00001364 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001365
1366 /* Check that the relocation address is valid... */
Ben Widawsky3c94cee2013-11-02 21:07:11 -07001367 if (unlikely(reloc->offset >
Chris Wilson507d9772017-06-16 15:05:17 +01001368 vma->size - (eb->reloc_cache.use_64bit_reloc ? 8 : 4))) {
Daniel Vetterff240192012-01-31 21:08:14 +01001369 DRM_DEBUG("Relocation beyond object bounds: "
Chris Wilson507d9772017-06-16 15:05:17 +01001370 "target %d offset %d size %d.\n",
1371 reloc->target_handle,
1372 (int)reloc->offset,
1373 (int)vma->size);
Ben Widawsky8b78f0e2013-12-26 13:39:50 -08001374 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001375 }
Chris Wilsonb8f7ab12010-12-08 10:43:06 +00001376 if (unlikely(reloc->offset & 3)) {
Daniel Vetterff240192012-01-31 21:08:14 +01001377 DRM_DEBUG("Relocation not 4-byte aligned: "
Chris Wilson507d9772017-06-16 15:05:17 +01001378 "target %d offset %d.\n",
1379 reloc->target_handle,
1380 (int)reloc->offset);
Ben Widawsky8b78f0e2013-12-26 13:39:50 -08001381 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001382 }
1383
Chris Wilson071750e2017-06-16 15:05:18 +01001384 /*
1385 * If we write into the object, we need to force the synchronisation
1386 * barrier, either with an asynchronous clflush or if we executed the
1387 * patching using the GPU (though that should be serialised by the
1388 * timeline). To be completely sure, and since we are required to
1389 * do relocations we are already stalling, disable the user's opt
Chris Wilson0519bcb2017-08-16 09:52:09 +01001390 * out of our synchronisation.
Chris Wilson071750e2017-06-16 15:05:18 +01001391 */
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001392 *vma->exec_flags &= ~EXEC_OBJECT_ASYNC;
Chris Wilson071750e2017-06-16 15:05:18 +01001393
Chris Wilson54cf91d2010-11-25 18:00:26 +00001394 /* and update the user's relocation entry */
Chris Wilson2889caa2017-06-16 15:05:19 +01001395 return relocate_entry(vma, reloc, eb, target);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001396}
1397
Chris Wilson2889caa2017-06-16 15:05:19 +01001398static int eb_relocate_vma(struct i915_execbuffer *eb, struct i915_vma *vma)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001399{
Chris Wilson1d83f442012-03-24 20:12:53 +00001400#define N_RELOC(x) ((x) / sizeof(struct drm_i915_gem_relocation_entry))
Chris Wilson2889caa2017-06-16 15:05:19 +01001401 struct drm_i915_gem_relocation_entry stack[N_RELOC(512)];
1402 struct drm_i915_gem_relocation_entry __user *urelocs;
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001403 const struct drm_i915_gem_exec_object2 *entry = exec_entry(eb, vma);
Chris Wilson2889caa2017-06-16 15:05:19 +01001404 unsigned int remain;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001405
Chris Wilson2889caa2017-06-16 15:05:19 +01001406 urelocs = u64_to_user_ptr(entry->relocs_ptr);
Chris Wilson1d83f442012-03-24 20:12:53 +00001407 remain = entry->relocation_count;
Chris Wilson2889caa2017-06-16 15:05:19 +01001408 if (unlikely(remain > N_RELOC(ULONG_MAX)))
1409 return -EINVAL;
Chris Wilsonebc08082016-10-18 13:02:51 +01001410
Chris Wilson2889caa2017-06-16 15:05:19 +01001411 /*
1412 * We must check that the entire relocation array is safe
1413 * to read. However, if the array is not writable the user loses
1414 * the updated relocation values.
1415 */
Imre Deakedd90032017-07-14 18:12:42 +03001416 if (unlikely(!access_ok(VERIFY_READ, urelocs, remain*sizeof(*urelocs))))
Chris Wilson2889caa2017-06-16 15:05:19 +01001417 return -EFAULT;
Chris Wilson1d83f442012-03-24 20:12:53 +00001418
Chris Wilson2889caa2017-06-16 15:05:19 +01001419 do {
1420 struct drm_i915_gem_relocation_entry *r = stack;
1421 unsigned int count =
1422 min_t(unsigned int, remain, ARRAY_SIZE(stack));
1423 unsigned int copied;
1424
1425 /*
1426 * This is the fast path and we cannot handle a pagefault
Chris Wilsonebc08082016-10-18 13:02:51 +01001427 * whilst holding the struct mutex lest the user pass in the
1428 * relocations contained within a mmaped bo. For in such a case
1429 * we, the page fault handler would call i915_gem_fault() and
1430 * we would try to acquire the struct mutex again. Obviously
1431 * this is bad and so lockdep complains vehemently.
1432 */
1433 pagefault_disable();
Chris Wilson2889caa2017-06-16 15:05:19 +01001434 copied = __copy_from_user_inatomic(r, urelocs, count * sizeof(r[0]));
Chris Wilsonebc08082016-10-18 13:02:51 +01001435 pagefault_enable();
Chris Wilson2889caa2017-06-16 15:05:19 +01001436 if (unlikely(copied)) {
1437 remain = -EFAULT;
Chris Wilson31a39202016-08-18 17:16:46 +01001438 goto out;
1439 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001440
Chris Wilson2889caa2017-06-16 15:05:19 +01001441 remain -= count;
Chris Wilson1d83f442012-03-24 20:12:53 +00001442 do {
Chris Wilson2889caa2017-06-16 15:05:19 +01001443 u64 offset = eb_relocate_entry(eb, vma, r);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001444
Chris Wilson2889caa2017-06-16 15:05:19 +01001445 if (likely(offset == 0)) {
1446 } else if ((s64)offset < 0) {
1447 remain = (int)offset;
Chris Wilson31a39202016-08-18 17:16:46 +01001448 goto out;
Chris Wilson2889caa2017-06-16 15:05:19 +01001449 } else {
1450 /*
1451 * Note that reporting an error now
1452 * leaves everything in an inconsistent
1453 * state as we have *already* changed
1454 * the relocation value inside the
1455 * object. As we have not changed the
1456 * reloc.presumed_offset or will not
1457 * change the execobject.offset, on the
1458 * call we may not rewrite the value
1459 * inside the object, leaving it
1460 * dangling and causing a GPU hang. Unless
1461 * userspace dynamically rebuilds the
1462 * relocations on each execbuf rather than
1463 * presume a static tree.
1464 *
1465 * We did previously check if the relocations
1466 * were writable (access_ok), an error now
1467 * would be a strange race with mprotect,
1468 * having already demonstrated that we
1469 * can read from this userspace address.
1470 */
1471 offset = gen8_canonical_addr(offset & ~UPDATE);
1472 __put_user(offset,
1473 &urelocs[r-stack].presumed_offset);
Chris Wilson1d83f442012-03-24 20:12:53 +00001474 }
Chris Wilson2889caa2017-06-16 15:05:19 +01001475 } while (r++, --count);
1476 urelocs += ARRAY_SIZE(stack);
1477 } while (remain);
Chris Wilson31a39202016-08-18 17:16:46 +01001478out:
Chris Wilson650bc632017-06-15 09:14:33 +01001479 reloc_cache_reset(&eb->reloc_cache);
Chris Wilson2889caa2017-06-16 15:05:19 +01001480 return remain;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001481}
1482
1483static int
Chris Wilson2889caa2017-06-16 15:05:19 +01001484eb_relocate_vma_slow(struct i915_execbuffer *eb, struct i915_vma *vma)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001485{
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001486 const struct drm_i915_gem_exec_object2 *entry = exec_entry(eb, vma);
Chris Wilson2889caa2017-06-16 15:05:19 +01001487 struct drm_i915_gem_relocation_entry *relocs =
1488 u64_to_ptr(typeof(*relocs), entry->relocs_ptr);
1489 unsigned int i;
1490 int err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001491
1492 for (i = 0; i < entry->relocation_count; i++) {
Chris Wilson2889caa2017-06-16 15:05:19 +01001493 u64 offset = eb_relocate_entry(eb, vma, &relocs[i]);
Chris Wilson54cf91d2010-11-25 18:00:26 +00001494
Chris Wilson2889caa2017-06-16 15:05:19 +01001495 if ((s64)offset < 0) {
1496 err = (int)offset;
1497 goto err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001498 }
Chris Wilson2889caa2017-06-16 15:05:19 +01001499 }
1500 err = 0;
Chris Wilsona415d352013-11-26 11:23:15 +00001501err:
Chris Wilson2889caa2017-06-16 15:05:19 +01001502 reloc_cache_reset(&eb->reloc_cache);
1503 return err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001504}
1505
Chris Wilson2889caa2017-06-16 15:05:19 +01001506static int check_relocations(const struct drm_i915_gem_exec_object2 *entry)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001507{
Chris Wilson2889caa2017-06-16 15:05:19 +01001508 const char __user *addr, *end;
1509 unsigned long size;
1510 char __maybe_unused c;
Ben Widawsky27173f12013-08-14 11:38:36 +02001511
Chris Wilson2889caa2017-06-16 15:05:19 +01001512 size = entry->relocation_count;
1513 if (size == 0)
1514 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001515
Chris Wilson2889caa2017-06-16 15:05:19 +01001516 if (size > N_RELOC(ULONG_MAX))
1517 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001518
Chris Wilson2889caa2017-06-16 15:05:19 +01001519 addr = u64_to_user_ptr(entry->relocs_ptr);
1520 size *= sizeof(struct drm_i915_gem_relocation_entry);
1521 if (!access_ok(VERIFY_READ, addr, size))
1522 return -EFAULT;
1523
1524 end = addr + size;
1525 for (; addr < end; addr += PAGE_SIZE) {
1526 int err = __get_user(c, addr);
1527 if (err)
1528 return err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001529 }
Chris Wilson2889caa2017-06-16 15:05:19 +01001530 return __get_user(c, end - 1);
1531}
Chris Wilson54cf91d2010-11-25 18:00:26 +00001532
Chris Wilson2889caa2017-06-16 15:05:19 +01001533static int eb_copy_relocations(const struct i915_execbuffer *eb)
1534{
1535 const unsigned int count = eb->buffer_count;
1536 unsigned int i;
1537 int err;
1538
Chris Wilson54cf91d2010-11-25 18:00:26 +00001539 for (i = 0; i < count; i++) {
Chris Wilson2889caa2017-06-16 15:05:19 +01001540 const unsigned int nreloc = eb->exec[i].relocation_count;
1541 struct drm_i915_gem_relocation_entry __user *urelocs;
1542 struct drm_i915_gem_relocation_entry *relocs;
1543 unsigned long size;
1544 unsigned long copied;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001545
Chris Wilson2889caa2017-06-16 15:05:19 +01001546 if (nreloc == 0)
1547 continue;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001548
Chris Wilson2889caa2017-06-16 15:05:19 +01001549 err = check_relocations(&eb->exec[i]);
1550 if (err)
1551 goto err;
1552
1553 urelocs = u64_to_user_ptr(eb->exec[i].relocs_ptr);
1554 size = nreloc * sizeof(*relocs);
1555
Michal Hocko0ee931c2017-09-13 16:28:29 -07001556 relocs = kvmalloc_array(size, 1, GFP_KERNEL);
Chris Wilson2889caa2017-06-16 15:05:19 +01001557 if (!relocs) {
1558 kvfree(relocs);
1559 err = -ENOMEM;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001560 goto err;
1561 }
1562
Chris Wilson2889caa2017-06-16 15:05:19 +01001563 /* copy_from_user is limited to < 4GiB */
1564 copied = 0;
1565 do {
1566 unsigned int len =
1567 min_t(u64, BIT_ULL(31), size - copied);
1568
1569 if (__copy_from_user((char *)relocs + copied,
Ville Syrjälä908a6102017-09-01 19:54:34 +03001570 (char __user *)urelocs + copied,
Chris Wilson2889caa2017-06-16 15:05:19 +01001571 len)) {
1572 kvfree(relocs);
1573 err = -EFAULT;
1574 goto err;
1575 }
1576
1577 copied += len;
1578 } while (copied < size);
1579
1580 /*
1581 * As we do not update the known relocation offsets after
Chris Wilson262b6d32013-01-15 16:17:54 +00001582 * relocating (due to the complexities in lock handling),
1583 * we need to mark them as invalid now so that we force the
1584 * relocation processing next time. Just in case the target
1585 * object is evicted and then rebound into its old
1586 * presumed_offset before the next execbuffer - if that
1587 * happened we would make the mistake of assuming that the
1588 * relocations were valid.
1589 */
Chris Wilson2889caa2017-06-16 15:05:19 +01001590 user_access_begin();
1591 for (copied = 0; copied < nreloc; copied++)
1592 unsafe_put_user(-1,
1593 &urelocs[copied].presumed_offset,
1594 end_user);
1595end_user:
1596 user_access_end();
Chris Wilson262b6d32013-01-15 16:17:54 +00001597
Chris Wilson2889caa2017-06-16 15:05:19 +01001598 eb->exec[i].relocs_ptr = (uintptr_t)relocs;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001599 }
1600
Chris Wilson2889caa2017-06-16 15:05:19 +01001601 return 0;
1602
1603err:
1604 while (i--) {
1605 struct drm_i915_gem_relocation_entry *relocs =
1606 u64_to_ptr(typeof(*relocs), eb->exec[i].relocs_ptr);
1607 if (eb->exec[i].relocation_count)
1608 kvfree(relocs);
1609 }
1610 return err;
1611}
1612
1613static int eb_prefault_relocations(const struct i915_execbuffer *eb)
1614{
1615 const unsigned int count = eb->buffer_count;
1616 unsigned int i;
1617
Michal Wajdeczko4f044a82017-09-19 19:38:44 +00001618 if (unlikely(i915_modparams.prefault_disable))
Chris Wilson2889caa2017-06-16 15:05:19 +01001619 return 0;
1620
1621 for (i = 0; i < count; i++) {
1622 int err;
1623
1624 err = check_relocations(&eb->exec[i]);
1625 if (err)
1626 return err;
1627 }
1628
1629 return 0;
1630}
1631
1632static noinline int eb_relocate_slow(struct i915_execbuffer *eb)
1633{
1634 struct drm_device *dev = &eb->i915->drm;
1635 bool have_copy = false;
1636 struct i915_vma *vma;
1637 int err = 0;
1638
1639repeat:
1640 if (signal_pending(current)) {
1641 err = -ERESTARTSYS;
1642 goto out;
1643 }
1644
1645 /* We may process another execbuffer during the unlock... */
1646 eb_reset_vmas(eb);
1647 mutex_unlock(&dev->struct_mutex);
1648
1649 /*
1650 * We take 3 passes through the slowpatch.
1651 *
1652 * 1 - we try to just prefault all the user relocation entries and
1653 * then attempt to reuse the atomic pagefault disabled fast path again.
1654 *
1655 * 2 - we copy the user entries to a local buffer here outside of the
1656 * local and allow ourselves to wait upon any rendering before
1657 * relocations
1658 *
1659 * 3 - we already have a local copy of the relocation entries, but
1660 * were interrupted (EAGAIN) whilst waiting for the objects, try again.
1661 */
1662 if (!err) {
1663 err = eb_prefault_relocations(eb);
1664 } else if (!have_copy) {
1665 err = eb_copy_relocations(eb);
1666 have_copy = err == 0;
1667 } else {
1668 cond_resched();
1669 err = 0;
1670 }
1671 if (err) {
Chris Wilson54cf91d2010-11-25 18:00:26 +00001672 mutex_lock(&dev->struct_mutex);
Chris Wilson2889caa2017-06-16 15:05:19 +01001673 goto out;
1674 }
1675
Chris Wilson8a2421b2017-06-16 15:05:22 +01001676 /* A frequent cause for EAGAIN are currently unavailable client pages */
1677 flush_workqueue(eb->i915->mm.userptr_wq);
1678
Chris Wilson2889caa2017-06-16 15:05:19 +01001679 err = i915_mutex_lock_interruptible(dev);
1680 if (err) {
1681 mutex_lock(&dev->struct_mutex);
1682 goto out;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001683 }
1684
Chris Wilson67731b82010-12-08 10:38:14 +00001685 /* reacquire the objects */
Chris Wilson2889caa2017-06-16 15:05:19 +01001686 err = eb_lookup_vmas(eb);
1687 if (err)
Chris Wilson3b96eff2013-01-08 10:53:14 +00001688 goto err;
Chris Wilson67731b82010-12-08 10:38:14 +00001689
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001690 GEM_BUG_ON(!eb->batch);
1691
Chris Wilson2889caa2017-06-16 15:05:19 +01001692 list_for_each_entry(vma, &eb->relocs, reloc_link) {
1693 if (!have_copy) {
1694 pagefault_disable();
1695 err = eb_relocate_vma(eb, vma);
1696 pagefault_enable();
1697 if (err)
1698 goto repeat;
1699 } else {
1700 err = eb_relocate_vma_slow(eb, vma);
1701 if (err)
1702 goto err;
1703 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00001704 }
1705
Chris Wilson2889caa2017-06-16 15:05:19 +01001706 /*
1707 * Leave the user relocations as are, this is the painfully slow path,
Chris Wilson54cf91d2010-11-25 18:00:26 +00001708 * and we want to avoid the complication of dropping the lock whilst
1709 * having buffers reserved in the aperture and so causing spurious
1710 * ENOSPC for random operations.
1711 */
1712
1713err:
Chris Wilson2889caa2017-06-16 15:05:19 +01001714 if (err == -EAGAIN)
1715 goto repeat;
1716
1717out:
1718 if (have_copy) {
1719 const unsigned int count = eb->buffer_count;
1720 unsigned int i;
1721
1722 for (i = 0; i < count; i++) {
1723 const struct drm_i915_gem_exec_object2 *entry =
1724 &eb->exec[i];
1725 struct drm_i915_gem_relocation_entry *relocs;
1726
1727 if (!entry->relocation_count)
1728 continue;
1729
1730 relocs = u64_to_ptr(typeof(*relocs), entry->relocs_ptr);
1731 kvfree(relocs);
1732 }
1733 }
1734
Chris Wilson1f727d92017-07-21 15:50:36 +01001735 return err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001736}
1737
Chris Wilson2889caa2017-06-16 15:05:19 +01001738static int eb_relocate(struct i915_execbuffer *eb)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001739{
Chris Wilson2889caa2017-06-16 15:05:19 +01001740 if (eb_lookup_vmas(eb))
1741 goto slow;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001742
Chris Wilson2889caa2017-06-16 15:05:19 +01001743 /* The objects are in their final locations, apply the relocations. */
1744 if (eb->args->flags & __EXEC_HAS_RELOC) {
1745 struct i915_vma *vma;
1746
1747 list_for_each_entry(vma, &eb->relocs, reloc_link) {
1748 if (eb_relocate_vma(eb, vma))
1749 goto slow;
1750 }
1751 }
1752
1753 return 0;
1754
1755slow:
1756 return eb_relocate_slow(eb);
1757}
1758
Chris Wilson95ff7c72017-06-16 15:05:25 +01001759static void eb_export_fence(struct i915_vma *vma,
Chris Wilsone61e0f52018-02-21 09:56:36 +00001760 struct i915_request *rq,
Chris Wilson2889caa2017-06-16 15:05:19 +01001761 unsigned int flags)
1762{
Chris Wilson95ff7c72017-06-16 15:05:25 +01001763 struct reservation_object *resv = vma->resv;
Chris Wilson2889caa2017-06-16 15:05:19 +01001764
1765 /*
1766 * Ignore errors from failing to allocate the new fence, we can't
1767 * handle an error right now. Worst case should be missed
1768 * synchronisation leading to rendering corruption.
1769 */
1770 reservation_object_lock(resv, NULL);
1771 if (flags & EXEC_OBJECT_WRITE)
Chris Wilsone61e0f52018-02-21 09:56:36 +00001772 reservation_object_add_excl_fence(resv, &rq->fence);
Chris Wilson2889caa2017-06-16 15:05:19 +01001773 else if (reservation_object_reserve_shared(resv) == 0)
Chris Wilsone61e0f52018-02-21 09:56:36 +00001774 reservation_object_add_shared_fence(resv, &rq->fence);
Chris Wilson2889caa2017-06-16 15:05:19 +01001775 reservation_object_unlock(resv);
1776}
1777
1778static int eb_move_to_gpu(struct i915_execbuffer *eb)
1779{
1780 const unsigned int count = eb->buffer_count;
1781 unsigned int i;
1782 int err;
1783
1784 for (i = 0; i < count; i++) {
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001785 unsigned int flags = eb->flags[i];
1786 struct i915_vma *vma = eb->vma[i];
Ben Widawsky27173f12013-08-14 11:38:36 +02001787 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilson03ade512015-04-27 13:41:18 +01001788
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001789 if (flags & EXEC_OBJECT_CAPTURE) {
Chris Wilsone61e0f52018-02-21 09:56:36 +00001790 struct i915_capture_list *capture;
Chris Wilsonb0fd47a2017-04-15 10:39:02 +01001791
1792 capture = kmalloc(sizeof(*capture), GFP_KERNEL);
1793 if (unlikely(!capture))
1794 return -ENOMEM;
1795
Chris Wilson650bc632017-06-15 09:14:33 +01001796 capture->next = eb->request->capture_list;
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001797 capture->vma = eb->vma[i];
Chris Wilson650bc632017-06-15 09:14:33 +01001798 eb->request->capture_list = capture;
Chris Wilsonb0fd47a2017-04-15 10:39:02 +01001799 }
1800
Chris Wilsonb8f55be2017-08-11 12:11:16 +01001801 /*
1802 * If the GPU is not _reading_ through the CPU cache, we need
1803 * to make sure that any writes (both previous GPU writes from
1804 * before a change in snooping levels and normal CPU writes)
1805 * caught in that cache are flushed to main memory.
1806 *
1807 * We want to say
1808 * obj->cache_dirty &&
1809 * !(obj->cache_coherent & I915_BO_CACHE_COHERENT_FOR_READ)
1810 * but gcc's optimiser doesn't handle that as well and emits
1811 * two jumps instead of one. Maybe one day...
1812 */
1813 if (unlikely(obj->cache_dirty & ~obj->cache_coherent)) {
Chris Wilson0f46daa2017-07-21 15:50:37 +01001814 if (i915_gem_clflush_object(obj, 0))
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001815 flags &= ~EXEC_OBJECT_ASYNC;
Chris Wilson0f46daa2017-07-21 15:50:37 +01001816 }
1817
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001818 if (flags & EXEC_OBJECT_ASYNC)
1819 continue;
Chris Wilson77ae9952017-01-27 09:40:07 +00001820
Chris Wilsone61e0f52018-02-21 09:56:36 +00001821 err = i915_request_await_object
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001822 (eb->request, obj, flags & EXEC_OBJECT_WRITE);
Chris Wilson2889caa2017-06-16 15:05:19 +01001823 if (err)
1824 return err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001825 }
1826
Chris Wilson2889caa2017-06-16 15:05:19 +01001827 for (i = 0; i < count; i++) {
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001828 unsigned int flags = eb->flags[i];
1829 struct i915_vma *vma = eb->vma[i];
Chris Wilson2889caa2017-06-16 15:05:19 +01001830
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001831 i915_vma_move_to_active(vma, eb->request, flags);
1832 eb_export_fence(vma, eb->request, flags);
1833
1834 __eb_unreserve_vma(vma, flags);
1835 vma->exec_flags = NULL;
1836
1837 if (unlikely(flags & __EXEC_OBJECT_HAS_REF))
Chris Wilsondade2a62017-06-16 15:05:20 +01001838 i915_vma_put(vma);
Chris Wilson2889caa2017-06-16 15:05:19 +01001839 }
1840 eb->exec = NULL;
1841
Chris Wilsondcd79932016-08-18 17:16:40 +01001842 /* Unconditionally flush any chipset caches (for streaming writes). */
Chris Wilson650bc632017-06-15 09:14:33 +01001843 i915_gem_chipset_flush(eb->i915);
Daniel Vetter6ac42f42012-07-21 12:25:01 +02001844
Chris Wilson21131842017-11-20 10:20:01 +00001845 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001846}
1847
Chris Wilson2889caa2017-06-16 15:05:19 +01001848static bool i915_gem_check_execbuffer(struct drm_i915_gem_execbuffer2 *exec)
Chris Wilson54cf91d2010-11-25 18:00:26 +00001849{
Chris Wilson650bc632017-06-15 09:14:33 +01001850 if (exec->flags & __I915_EXEC_ILLEGAL_FLAGS)
Daniel Vettered5982e2013-01-17 22:23:36 +01001851 return false;
1852
Chris Wilson2f5945b2015-10-06 11:39:55 +01001853 /* Kernel clipping was a DRI1 misfeature */
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01001854 if (!(exec->flags & I915_EXEC_FENCE_ARRAY)) {
1855 if (exec->num_cliprects || exec->cliprects_ptr)
1856 return false;
1857 }
Chris Wilson2f5945b2015-10-06 11:39:55 +01001858
1859 if (exec->DR4 == 0xffffffff) {
1860 DRM_DEBUG("UXA submitting garbage DR4, fixing up\n");
1861 exec->DR4 = 0;
1862 }
1863 if (exec->DR1 || exec->DR4)
1864 return false;
1865
1866 if ((exec->batch_start_offset | exec->batch_len) & 0x7)
1867 return false;
1868
1869 return true;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001870}
1871
Chris Wilson5cf3d282016-08-04 07:52:43 +01001872void i915_vma_move_to_active(struct i915_vma *vma,
Chris Wilsone61e0f52018-02-21 09:56:36 +00001873 struct i915_request *rq,
Chris Wilson5cf3d282016-08-04 07:52:43 +01001874 unsigned int flags)
1875{
1876 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilsone61e0f52018-02-21 09:56:36 +00001877 const unsigned int idx = rq->engine->id;
Chris Wilson5cf3d282016-08-04 07:52:43 +01001878
Chris Wilsone61e0f52018-02-21 09:56:36 +00001879 lockdep_assert_held(&rq->i915->drm.struct_mutex);
Chris Wilson5cf3d282016-08-04 07:52:43 +01001880 GEM_BUG_ON(!drm_mm_node_allocated(&vma->node));
1881
Chris Wilson2889caa2017-06-16 15:05:19 +01001882 /*
1883 * Add a reference if we're newly entering the active list.
Chris Wilsonb0decaf2016-08-04 07:52:44 +01001884 * The order in which we add operations to the retirement queue is
1885 * vital here: mark_active adds to the start of the callback list,
1886 * such that subsequent callbacks are called first. Therefore we
1887 * add the active reference first and queue for it to be dropped
1888 * *last*.
1889 */
Chris Wilsond07f0e52016-10-28 13:58:44 +01001890 if (!i915_vma_is_active(vma))
1891 obj->active_count++;
1892 i915_vma_set_active(vma, idx);
Chris Wilsone61e0f52018-02-21 09:56:36 +00001893 i915_gem_active_set(&vma->last_read[idx], rq);
Chris Wilsond07f0e52016-10-28 13:58:44 +01001894 list_move_tail(&vma->vm_link, &vma->vm->active_list);
Chris Wilson5cf3d282016-08-04 07:52:43 +01001895
Christian Königc0a51fd2018-02-16 13:43:38 +01001896 obj->write_domain = 0;
Chris Wilson5cf3d282016-08-04 07:52:43 +01001897 if (flags & EXEC_OBJECT_WRITE) {
Christian Königc0a51fd2018-02-16 13:43:38 +01001898 obj->write_domain = I915_GEM_DOMAIN_RENDER;
Chris Wilsone27ab732017-06-15 13:38:49 +01001899
Chris Wilson5b8c8ae2016-11-16 19:07:04 +00001900 if (intel_fb_obj_invalidate(obj, ORIGIN_CS))
Chris Wilsone61e0f52018-02-21 09:56:36 +00001901 i915_gem_active_set(&obj->frontbuffer_write, rq);
Chris Wilson5cf3d282016-08-04 07:52:43 +01001902
Christian Königc0a51fd2018-02-16 13:43:38 +01001903 obj->read_domains = 0;
Chris Wilson5cf3d282016-08-04 07:52:43 +01001904 }
Christian Königc0a51fd2018-02-16 13:43:38 +01001905 obj->read_domains |= I915_GEM_GPU_DOMAINS;
Chris Wilson5cf3d282016-08-04 07:52:43 +01001906
Chris Wilson49ef5292016-08-18 17:17:00 +01001907 if (flags & EXEC_OBJECT_NEEDS_FENCE)
Chris Wilsone61e0f52018-02-21 09:56:36 +00001908 i915_gem_active_set(&vma->last_fence, rq);
Chris Wilson5cf3d282016-08-04 07:52:43 +01001909}
1910
Chris Wilsone61e0f52018-02-21 09:56:36 +00001911static int i915_reset_gen7_sol_offsets(struct i915_request *rq)
Eric Anholtae662d32012-01-03 09:23:29 -08001912{
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001913 u32 *cs;
1914 int i;
Eric Anholtae662d32012-01-03 09:23:29 -08001915
Chris Wilsone61e0f52018-02-21 09:56:36 +00001916 if (!IS_GEN7(rq->i915) || rq->engine->id != RCS) {
Daniel Vetter9d662da2014-04-24 08:09:09 +02001917 DRM_DEBUG("sol reset is gen7/rcs only\n");
1918 return -EINVAL;
1919 }
Eric Anholtae662d32012-01-03 09:23:29 -08001920
Chris Wilsone61e0f52018-02-21 09:56:36 +00001921 cs = intel_ring_begin(rq, 4 * 2 + 2);
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001922 if (IS_ERR(cs))
1923 return PTR_ERR(cs);
Eric Anholtae662d32012-01-03 09:23:29 -08001924
Chris Wilson2889caa2017-06-16 15:05:19 +01001925 *cs++ = MI_LOAD_REGISTER_IMM(4);
Eric Anholtae662d32012-01-03 09:23:29 -08001926 for (i = 0; i < 4; i++) {
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001927 *cs++ = i915_mmio_reg_offset(GEN7_SO_WRITE_OFFSET(i));
1928 *cs++ = 0;
Eric Anholtae662d32012-01-03 09:23:29 -08001929 }
Chris Wilson2889caa2017-06-16 15:05:19 +01001930 *cs++ = MI_NOOP;
Chris Wilsone61e0f52018-02-21 09:56:36 +00001931 intel_ring_advance(rq, cs);
Eric Anholtae662d32012-01-03 09:23:29 -08001932
1933 return 0;
1934}
1935
Chris Wilson650bc632017-06-15 09:14:33 +01001936static struct i915_vma *eb_parse(struct i915_execbuffer *eb, bool is_master)
Brad Volkin71745372014-12-11 12:13:12 -08001937{
Brad Volkin71745372014-12-11 12:13:12 -08001938 struct drm_i915_gem_object *shadow_batch_obj;
Chris Wilson17cabf52015-01-14 11:20:57 +00001939 struct i915_vma *vma;
Chris Wilson2889caa2017-06-16 15:05:19 +01001940 int err;
Brad Volkin71745372014-12-11 12:13:12 -08001941
Chris Wilson650bc632017-06-15 09:14:33 +01001942 shadow_batch_obj = i915_gem_batch_pool_get(&eb->engine->batch_pool,
1943 PAGE_ALIGN(eb->batch_len));
Brad Volkin71745372014-12-11 12:13:12 -08001944 if (IS_ERR(shadow_batch_obj))
Chris Wilson59bfa122016-08-04 16:32:31 +01001945 return ERR_CAST(shadow_batch_obj);
Brad Volkin71745372014-12-11 12:13:12 -08001946
Chris Wilson2889caa2017-06-16 15:05:19 +01001947 err = intel_engine_cmd_parser(eb->engine,
Chris Wilson650bc632017-06-15 09:14:33 +01001948 eb->batch->obj,
Chris Wilson33a051a2016-07-27 09:07:26 +01001949 shadow_batch_obj,
Chris Wilson650bc632017-06-15 09:14:33 +01001950 eb->batch_start_offset,
1951 eb->batch_len,
Chris Wilson33a051a2016-07-27 09:07:26 +01001952 is_master);
Chris Wilson2889caa2017-06-16 15:05:19 +01001953 if (err) {
1954 if (err == -EACCES) /* unhandled chained batch */
Chris Wilson058d88c2016-08-15 10:49:06 +01001955 vma = NULL;
1956 else
Chris Wilson2889caa2017-06-16 15:05:19 +01001957 vma = ERR_PTR(err);
Chris Wilson058d88c2016-08-15 10:49:06 +01001958 goto out;
1959 }
Brad Volkin71745372014-12-11 12:13:12 -08001960
Chris Wilson058d88c2016-08-15 10:49:06 +01001961 vma = i915_gem_object_ggtt_pin(shadow_batch_obj, NULL, 0, 0, 0);
1962 if (IS_ERR(vma))
1963 goto out;
Chris Wilsonde4e7832015-04-07 16:20:35 +01001964
Chris Wilsonc7c6e462017-08-16 09:52:06 +01001965 eb->vma[eb->buffer_count] = i915_vma_get(vma);
1966 eb->flags[eb->buffer_count] =
1967 __EXEC_OBJECT_HAS_PIN | __EXEC_OBJECT_HAS_REF;
1968 vma->exec_flags = &eb->flags[eb->buffer_count];
1969 eb->buffer_count++;
Brad Volkin71745372014-12-11 12:13:12 -08001970
Chris Wilson058d88c2016-08-15 10:49:06 +01001971out:
Chris Wilsonde4e7832015-04-07 16:20:35 +01001972 i915_gem_object_unpin_pages(shadow_batch_obj);
Chris Wilson058d88c2016-08-15 10:49:06 +01001973 return vma;
Brad Volkin71745372014-12-11 12:13:12 -08001974}
Chris Wilson5c6c6002014-09-06 10:28:27 +01001975
Chris Wilsonc8659ef2017-03-02 12:25:25 +00001976static void
Chris Wilsone61e0f52018-02-21 09:56:36 +00001977add_to_client(struct i915_request *rq, struct drm_file *file)
Chris Wilsonc8659ef2017-03-02 12:25:25 +00001978{
Chris Wilsone61e0f52018-02-21 09:56:36 +00001979 rq->file_priv = file->driver_priv;
1980 list_add_tail(&rq->client_link, &rq->file_priv->mm.request_list);
Chris Wilsonc8659ef2017-03-02 12:25:25 +00001981}
1982
Chris Wilson2889caa2017-06-16 15:05:19 +01001983static int eb_submit(struct i915_execbuffer *eb)
Oscar Mateo78382592014-07-03 16:28:05 +01001984{
Chris Wilson2889caa2017-06-16 15:05:19 +01001985 int err;
Oscar Mateo78382592014-07-03 16:28:05 +01001986
Chris Wilson2889caa2017-06-16 15:05:19 +01001987 err = eb_move_to_gpu(eb);
1988 if (err)
1989 return err;
Oscar Mateo78382592014-07-03 16:28:05 +01001990
Chris Wilson650bc632017-06-15 09:14:33 +01001991 if (eb->args->flags & I915_EXEC_GEN7_SOL_RESET) {
Chris Wilson2889caa2017-06-16 15:05:19 +01001992 err = i915_reset_gen7_sol_offsets(eb->request);
1993 if (err)
1994 return err;
Oscar Mateo78382592014-07-03 16:28:05 +01001995 }
1996
Chris Wilson2889caa2017-06-16 15:05:19 +01001997 err = eb->engine->emit_bb_start(eb->request,
Chris Wilson650bc632017-06-15 09:14:33 +01001998 eb->batch->node.start +
1999 eb->batch_start_offset,
2000 eb->batch_len,
Chris Wilson2889caa2017-06-16 15:05:19 +01002001 eb->batch_flags);
2002 if (err)
2003 return err;
Oscar Mateo78382592014-07-03 16:28:05 +01002004
Chris Wilson2f5945b2015-10-06 11:39:55 +01002005 return 0;
Oscar Mateo78382592014-07-03 16:28:05 +01002006}
2007
Chris Wilson204bcfe2018-02-08 11:39:17 +00002008/*
Zhao Yakuia8ebba72014-04-17 10:37:40 +08002009 * Find one BSD ring to dispatch the corresponding BSD command.
Chris Wilsonc80ff162016-07-27 09:07:27 +01002010 * The engine index is returned.
Zhao Yakuia8ebba72014-04-17 10:37:40 +08002011 */
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002012static unsigned int
Chris Wilsonc80ff162016-07-27 09:07:27 +01002013gen8_dispatch_bsd_engine(struct drm_i915_private *dev_priv,
2014 struct drm_file *file)
Zhao Yakuia8ebba72014-04-17 10:37:40 +08002015{
Zhao Yakuia8ebba72014-04-17 10:37:40 +08002016 struct drm_i915_file_private *file_priv = file->driver_priv;
2017
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002018 /* Check whether the file_priv has already selected one ring. */
Joonas Lahtinen6f633402016-09-01 14:58:21 +03002019 if ((int)file_priv->bsd_engine < 0)
2020 file_priv->bsd_engine = atomic_fetch_xor(1,
2021 &dev_priv->mm.bsd_engine_dispatch_index);
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002022
Chris Wilsonc80ff162016-07-27 09:07:27 +01002023 return file_priv->bsd_engine;
Chris Wilsond23db882014-05-23 08:48:08 +02002024}
2025
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002026#define I915_USER_RINGS (4)
2027
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00002028static const enum intel_engine_id user_ring_map[I915_USER_RINGS + 1] = {
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002029 [I915_EXEC_DEFAULT] = RCS,
2030 [I915_EXEC_RENDER] = RCS,
2031 [I915_EXEC_BLT] = BCS,
2032 [I915_EXEC_BSD] = VCS,
2033 [I915_EXEC_VEBOX] = VECS
2034};
2035
Dave Gordonf8ca0c02016-07-20 18:16:07 +01002036static struct intel_engine_cs *
2037eb_select_engine(struct drm_i915_private *dev_priv,
2038 struct drm_file *file,
2039 struct drm_i915_gem_execbuffer2 *args)
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002040{
2041 unsigned int user_ring_id = args->flags & I915_EXEC_RING_MASK;
Dave Gordonf8ca0c02016-07-20 18:16:07 +01002042 struct intel_engine_cs *engine;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002043
2044 if (user_ring_id > I915_USER_RINGS) {
2045 DRM_DEBUG("execbuf with unknown ring: %u\n", user_ring_id);
Dave Gordonf8ca0c02016-07-20 18:16:07 +01002046 return NULL;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002047 }
2048
2049 if ((user_ring_id != I915_EXEC_BSD) &&
2050 ((args->flags & I915_EXEC_BSD_MASK) != 0)) {
2051 DRM_DEBUG("execbuf with non bsd ring but with invalid "
2052 "bsd dispatch flags: %d\n", (int)(args->flags));
Dave Gordonf8ca0c02016-07-20 18:16:07 +01002053 return NULL;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002054 }
2055
2056 if (user_ring_id == I915_EXEC_BSD && HAS_BSD2(dev_priv)) {
2057 unsigned int bsd_idx = args->flags & I915_EXEC_BSD_MASK;
2058
2059 if (bsd_idx == I915_EXEC_BSD_DEFAULT) {
Chris Wilsonc80ff162016-07-27 09:07:27 +01002060 bsd_idx = gen8_dispatch_bsd_engine(dev_priv, file);
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002061 } else if (bsd_idx >= I915_EXEC_BSD_RING1 &&
2062 bsd_idx <= I915_EXEC_BSD_RING2) {
Tvrtko Ursulind9da6aa2016-01-27 13:41:09 +00002063 bsd_idx >>= I915_EXEC_BSD_SHIFT;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002064 bsd_idx--;
2065 } else {
2066 DRM_DEBUG("execbuf with unknown bsd ring: %u\n",
2067 bsd_idx);
Dave Gordonf8ca0c02016-07-20 18:16:07 +01002068 return NULL;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002069 }
2070
Akash Goel3b3f1652016-10-13 22:44:48 +05302071 engine = dev_priv->engine[_VCS(bsd_idx)];
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002072 } else {
Akash Goel3b3f1652016-10-13 22:44:48 +05302073 engine = dev_priv->engine[user_ring_map[user_ring_id]];
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002074 }
2075
Akash Goel3b3f1652016-10-13 22:44:48 +05302076 if (!engine) {
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002077 DRM_DEBUG("execbuf with invalid ring: %u\n", user_ring_id);
Dave Gordonf8ca0c02016-07-20 18:16:07 +01002078 return NULL;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002079 }
2080
Dave Gordonf8ca0c02016-07-20 18:16:07 +01002081 return engine;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00002082}
2083
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01002084static void
2085__free_fence_array(struct drm_syncobj **fences, unsigned int n)
2086{
2087 while (n--)
2088 drm_syncobj_put(ptr_mask_bits(fences[n], 2));
2089 kvfree(fences);
2090}
2091
2092static struct drm_syncobj **
2093get_fence_array(struct drm_i915_gem_execbuffer2 *args,
2094 struct drm_file *file)
2095{
Chris Wilsond710fc12017-11-16 10:50:59 +00002096 const unsigned long nfences = args->num_cliprects;
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01002097 struct drm_i915_gem_exec_fence __user *user;
2098 struct drm_syncobj **fences;
Chris Wilsond710fc12017-11-16 10:50:59 +00002099 unsigned long n;
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01002100 int err;
2101
2102 if (!(args->flags & I915_EXEC_FENCE_ARRAY))
2103 return NULL;
2104
Chris Wilsond710fc12017-11-16 10:50:59 +00002105 /* Check multiplication overflow for access_ok() and kvmalloc_array() */
2106 BUILD_BUG_ON(sizeof(size_t) > sizeof(unsigned long));
2107 if (nfences > min_t(unsigned long,
2108 ULONG_MAX / sizeof(*user),
2109 SIZE_MAX / sizeof(*fences)))
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01002110 return ERR_PTR(-EINVAL);
2111
2112 user = u64_to_user_ptr(args->cliprects_ptr);
Chris Wilsond710fc12017-11-16 10:50:59 +00002113 if (!access_ok(VERIFY_READ, user, nfences * sizeof(*user)))
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01002114 return ERR_PTR(-EFAULT);
2115
Chris Wilsond710fc12017-11-16 10:50:59 +00002116 fences = kvmalloc_array(nfences, sizeof(*fences),
Michal Hocko0ee931c2017-09-13 16:28:29 -07002117 __GFP_NOWARN | GFP_KERNEL);
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01002118 if (!fences)
2119 return ERR_PTR(-ENOMEM);
2120
2121 for (n = 0; n < nfences; n++) {
2122 struct drm_i915_gem_exec_fence fence;
2123 struct drm_syncobj *syncobj;
2124
2125 if (__copy_from_user(&fence, user++, sizeof(fence))) {
2126 err = -EFAULT;
2127 goto err;
2128 }
2129
Tvrtko Ursulinebcaa1f2017-10-31 10:23:25 +00002130 if (fence.flags & __I915_EXEC_FENCE_UNKNOWN_FLAGS) {
2131 err = -EINVAL;
2132 goto err;
2133 }
2134
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01002135 syncobj = drm_syncobj_find(file, fence.handle);
2136 if (!syncobj) {
2137 DRM_DEBUG("Invalid syncobj handle provided\n");
2138 err = -ENOENT;
2139 goto err;
2140 }
2141
Tvrtko Ursulinebcaa1f2017-10-31 10:23:25 +00002142 BUILD_BUG_ON(~(ARCH_KMALLOC_MINALIGN - 1) &
2143 ~__I915_EXEC_FENCE_UNKNOWN_FLAGS);
2144
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01002145 fences[n] = ptr_pack_bits(syncobj, fence.flags, 2);
2146 }
2147
2148 return fences;
2149
2150err:
2151 __free_fence_array(fences, n);
2152 return ERR_PTR(err);
2153}
2154
2155static void
2156put_fence_array(struct drm_i915_gem_execbuffer2 *args,
2157 struct drm_syncobj **fences)
2158{
2159 if (fences)
2160 __free_fence_array(fences, args->num_cliprects);
2161}
2162
2163static int
2164await_fence_array(struct i915_execbuffer *eb,
2165 struct drm_syncobj **fences)
2166{
2167 const unsigned int nfences = eb->args->num_cliprects;
2168 unsigned int n;
2169 int err;
2170
2171 for (n = 0; n < nfences; n++) {
2172 struct drm_syncobj *syncobj;
2173 struct dma_fence *fence;
2174 unsigned int flags;
2175
2176 syncobj = ptr_unpack_bits(fences[n], &flags, 2);
2177 if (!(flags & I915_EXEC_FENCE_WAIT))
2178 continue;
2179
Jason Ekstrandafca4212017-08-25 10:52:21 -07002180 fence = drm_syncobj_fence_get(syncobj);
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01002181 if (!fence)
2182 return -EINVAL;
2183
Chris Wilsone61e0f52018-02-21 09:56:36 +00002184 err = i915_request_await_dma_fence(eb->request, fence);
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01002185 dma_fence_put(fence);
2186 if (err < 0)
2187 return err;
2188 }
2189
2190 return 0;
2191}
2192
2193static void
2194signal_fence_array(struct i915_execbuffer *eb,
2195 struct drm_syncobj **fences)
2196{
2197 const unsigned int nfences = eb->args->num_cliprects;
2198 struct dma_fence * const fence = &eb->request->fence;
2199 unsigned int n;
2200
2201 for (n = 0; n < nfences; n++) {
2202 struct drm_syncobj *syncobj;
2203 unsigned int flags;
2204
2205 syncobj = ptr_unpack_bits(fences[n], &flags, 2);
2206 if (!(flags & I915_EXEC_FENCE_SIGNAL))
2207 continue;
2208
2209 drm_syncobj_replace_fence(syncobj, fence);
2210 }
2211}
2212
Eric Anholtae662d32012-01-03 09:23:29 -08002213static int
Chris Wilson650bc632017-06-15 09:14:33 +01002214i915_gem_do_execbuffer(struct drm_device *dev,
Chris Wilson54cf91d2010-11-25 18:00:26 +00002215 struct drm_file *file,
2216 struct drm_i915_gem_execbuffer2 *args,
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01002217 struct drm_i915_gem_exec_object2 *exec,
2218 struct drm_syncobj **fences)
Chris Wilson54cf91d2010-11-25 18:00:26 +00002219{
Chris Wilson650bc632017-06-15 09:14:33 +01002220 struct i915_execbuffer eb;
Chris Wilsonfec04452017-01-27 09:40:08 +00002221 struct dma_fence *in_fence = NULL;
2222 struct sync_file *out_fence = NULL;
2223 int out_fence_fd = -1;
Chris Wilson2889caa2017-06-16 15:05:19 +01002224 int err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002225
Chris Wilson74c1c692017-09-21 12:01:35 +01002226 BUILD_BUG_ON(__EXEC_INTERNAL_FLAGS & ~__I915_EXEC_ILLEGAL_FLAGS);
Chris Wilson2889caa2017-06-16 15:05:19 +01002227 BUILD_BUG_ON(__EXEC_OBJECT_INTERNAL_FLAGS &
2228 ~__EXEC_OBJECT_UNKNOWN_FLAGS);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002229
Chris Wilson650bc632017-06-15 09:14:33 +01002230 eb.i915 = to_i915(dev);
2231 eb.file = file;
2232 eb.args = args;
Chris Wilson7dd4f672017-06-16 15:05:24 +01002233 if (DBG_FORCE_RELOC || !(args->flags & I915_EXEC_NO_RELOC))
Chris Wilson2889caa2017-06-16 15:05:19 +01002234 args->flags |= __EXEC_HAS_RELOC;
Chris Wilsonc7c6e462017-08-16 09:52:06 +01002235
Chris Wilson650bc632017-06-15 09:14:33 +01002236 eb.exec = exec;
Chris Wilson170fa292017-08-16 09:52:07 +01002237 eb.vma = (struct i915_vma **)(exec + args->buffer_count + 1);
2238 eb.vma[0] = NULL;
Chris Wilsonc7c6e462017-08-16 09:52:06 +01002239 eb.flags = (unsigned int *)(eb.vma + args->buffer_count + 1);
2240
Chris Wilson2889caa2017-06-16 15:05:19 +01002241 eb.invalid_flags = __EXEC_OBJECT_UNKNOWN_FLAGS;
2242 if (USES_FULL_PPGTT(eb.i915))
2243 eb.invalid_flags |= EXEC_OBJECT_NEEDS_GTT;
Chris Wilson650bc632017-06-15 09:14:33 +01002244 reloc_cache_init(&eb.reloc_cache, eb.i915);
2245
Chris Wilson2889caa2017-06-16 15:05:19 +01002246 eb.buffer_count = args->buffer_count;
Chris Wilson650bc632017-06-15 09:14:33 +01002247 eb.batch_start_offset = args->batch_start_offset;
2248 eb.batch_len = args->batch_len;
2249
Chris Wilson2889caa2017-06-16 15:05:19 +01002250 eb.batch_flags = 0;
Chris Wilsond7d4eed2012-10-17 12:09:54 +01002251 if (args->flags & I915_EXEC_SECURE) {
Daniel Vetterb3ac9f22016-06-21 10:54:20 +02002252 if (!drm_is_current_master(file) || !capable(CAP_SYS_ADMIN))
Chris Wilsond7d4eed2012-10-17 12:09:54 +01002253 return -EPERM;
2254
Chris Wilson2889caa2017-06-16 15:05:19 +01002255 eb.batch_flags |= I915_DISPATCH_SECURE;
Chris Wilsond7d4eed2012-10-17 12:09:54 +01002256 }
Daniel Vetterb45305f2012-12-17 16:21:27 +01002257 if (args->flags & I915_EXEC_IS_PINNED)
Chris Wilson2889caa2017-06-16 15:05:19 +01002258 eb.batch_flags |= I915_DISPATCH_PINNED;
Chris Wilsond7d4eed2012-10-17 12:09:54 +01002259
Chris Wilson650bc632017-06-15 09:14:33 +01002260 eb.engine = eb_select_engine(eb.i915, file, args);
2261 if (!eb.engine)
Dave Gordonf8ca0c02016-07-20 18:16:07 +01002262 return -EINVAL;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002263
Abdiel Janulguea9ed33c2015-07-01 10:12:23 +03002264 if (args->flags & I915_EXEC_RESOURCE_STREAMER) {
Chris Wilson650bc632017-06-15 09:14:33 +01002265 if (!HAS_RESOURCE_STREAMER(eb.i915)) {
Abdiel Janulguea9ed33c2015-07-01 10:12:23 +03002266 DRM_DEBUG("RS is only allowed for Haswell, Gen8 and above\n");
2267 return -EINVAL;
2268 }
Chris Wilson650bc632017-06-15 09:14:33 +01002269 if (eb.engine->id != RCS) {
Abdiel Janulguea9ed33c2015-07-01 10:12:23 +03002270 DRM_DEBUG("RS is not available on %s\n",
Chris Wilson650bc632017-06-15 09:14:33 +01002271 eb.engine->name);
Abdiel Janulguea9ed33c2015-07-01 10:12:23 +03002272 return -EINVAL;
2273 }
2274
Chris Wilson2889caa2017-06-16 15:05:19 +01002275 eb.batch_flags |= I915_DISPATCH_RS;
Abdiel Janulguea9ed33c2015-07-01 10:12:23 +03002276 }
2277
Chris Wilsonfec04452017-01-27 09:40:08 +00002278 if (args->flags & I915_EXEC_FENCE_IN) {
2279 in_fence = sync_file_get_fence(lower_32_bits(args->rsvd2));
Daniele Ceraolo Spurio4a04e372017-02-03 14:45:29 -08002280 if (!in_fence)
2281 return -EINVAL;
Chris Wilsonfec04452017-01-27 09:40:08 +00002282 }
2283
2284 if (args->flags & I915_EXEC_FENCE_OUT) {
2285 out_fence_fd = get_unused_fd_flags(O_CLOEXEC);
2286 if (out_fence_fd < 0) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002287 err = out_fence_fd;
Daniele Ceraolo Spurio4a04e372017-02-03 14:45:29 -08002288 goto err_in_fence;
Chris Wilsonfec04452017-01-27 09:40:08 +00002289 }
2290 }
2291
Chris Wilson4d470f72017-06-29 16:04:25 +01002292 err = eb_create(&eb);
2293 if (err)
2294 goto err_out_fence;
2295
2296 GEM_BUG_ON(!eb.lut_size);
Chris Wilson2889caa2017-06-16 15:05:19 +01002297
Chris Wilson1acfc102017-06-20 12:05:47 +01002298 err = eb_select_context(&eb);
2299 if (unlikely(err))
2300 goto err_destroy;
2301
Chris Wilson2889caa2017-06-16 15:05:19 +01002302 /*
2303 * Take a local wakeref for preparing to dispatch the execbuf as
Chris Wilson67d97da2016-07-04 08:08:31 +01002304 * we expect to access the hardware fairly frequently in the
2305 * process. Upon first dispatch, we acquire another prolonged
2306 * wakeref that we hold until the GPU has been idle for at least
2307 * 100ms.
2308 */
Chris Wilson650bc632017-06-15 09:14:33 +01002309 intel_runtime_pm_get(eb.i915);
Chris Wilson1acfc102017-06-20 12:05:47 +01002310
Chris Wilson2889caa2017-06-16 15:05:19 +01002311 err = i915_mutex_lock_interruptible(dev);
2312 if (err)
2313 goto err_rpm;
Paulo Zanonif65c9162013-11-27 18:20:34 -02002314
Chris Wilson2889caa2017-06-16 15:05:19 +01002315 err = eb_relocate(&eb);
Chris Wilson1f727d92017-07-21 15:50:36 +01002316 if (err) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002317 /*
2318 * If the user expects the execobject.offset and
2319 * reloc.presumed_offset to be an exact match,
2320 * as for using NO_RELOC, then we cannot update
2321 * the execobject.offset until we have completed
2322 * relocation.
2323 */
2324 args->flags &= ~__EXEC_HAS_RELOC;
Chris Wilson2889caa2017-06-16 15:05:19 +01002325 goto err_vma;
Chris Wilson1f727d92017-07-21 15:50:36 +01002326 }
Ben Widawsky41bde552013-12-06 14:11:21 -08002327
Chris Wilsonc7c6e462017-08-16 09:52:06 +01002328 if (unlikely(*eb.batch->exec_flags & EXEC_OBJECT_WRITE)) {
Daniel Vetterff240192012-01-31 21:08:14 +01002329 DRM_DEBUG("Attempting to use self-modifying batch buffer\n");
Chris Wilson2889caa2017-06-16 15:05:19 +01002330 err = -EINVAL;
2331 goto err_vma;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002332 }
Chris Wilson650bc632017-06-15 09:14:33 +01002333 if (eb.batch_start_offset > eb.batch->size ||
2334 eb.batch_len > eb.batch->size - eb.batch_start_offset) {
Chris Wilson0b537272016-08-18 17:17:12 +01002335 DRM_DEBUG("Attempting to use out-of-bounds batch\n");
Chris Wilson2889caa2017-06-16 15:05:19 +01002336 err = -EINVAL;
2337 goto err_vma;
Chris Wilson0b537272016-08-18 17:17:12 +01002338 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00002339
Chris Wilson3dbf26e2017-08-26 14:56:20 +01002340 if (eb_use_cmdparser(&eb)) {
Chris Wilson59bfa122016-08-04 16:32:31 +01002341 struct i915_vma *vma;
Rebecca N. Palmerc7c73722015-05-08 14:26:50 +01002342
Chris Wilson650bc632017-06-15 09:14:33 +01002343 vma = eb_parse(&eb, drm_is_current_master(file));
Chris Wilson59bfa122016-08-04 16:32:31 +01002344 if (IS_ERR(vma)) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002345 err = PTR_ERR(vma);
2346 goto err_vma;
Brad Volkin78a42372014-12-11 12:13:09 -08002347 }
Chris Wilson17cabf52015-01-14 11:20:57 +00002348
Chris Wilson59bfa122016-08-04 16:32:31 +01002349 if (vma) {
Rebecca N. Palmerc7c73722015-05-08 14:26:50 +01002350 /*
2351 * Batch parsed and accepted:
2352 *
2353 * Set the DISPATCH_SECURE bit to remove the NON_SECURE
2354 * bit from MI_BATCH_BUFFER_START commands issued in
2355 * the dispatch_execbuffer implementations. We
2356 * specifically don't want that set on batches the
2357 * command parser has accepted.
2358 */
Chris Wilson2889caa2017-06-16 15:05:19 +01002359 eb.batch_flags |= I915_DISPATCH_SECURE;
Chris Wilson650bc632017-06-15 09:14:33 +01002360 eb.batch_start_offset = 0;
2361 eb.batch = vma;
Rebecca N. Palmerc7c73722015-05-08 14:26:50 +01002362 }
Brad Volkin351e3db2014-02-18 10:15:46 -08002363 }
2364
Chris Wilson650bc632017-06-15 09:14:33 +01002365 if (eb.batch_len == 0)
2366 eb.batch_len = eb.batch->size - eb.batch_start_offset;
Brad Volkin78a42372014-12-11 12:13:09 -08002367
Chris Wilson2889caa2017-06-16 15:05:19 +01002368 /*
2369 * snb/ivb/vlv conflate the "batch in ppgtt" bit with the "non-secure
Chris Wilsond7d4eed2012-10-17 12:09:54 +01002370 * batch" bit. Hence we need to pin secure batches into the global gtt.
Ben Widawsky28cf5412013-11-02 21:07:26 -07002371 * hsw should have this fixed, but bdw mucks it up again. */
Chris Wilson2889caa2017-06-16 15:05:19 +01002372 if (eb.batch_flags & I915_DISPATCH_SECURE) {
Chris Wilson058d88c2016-08-15 10:49:06 +01002373 struct i915_vma *vma;
Chris Wilson59bfa122016-08-04 16:32:31 +01002374
Daniel Vetterda51a1e2014-08-11 12:08:58 +02002375 /*
2376 * So on first glance it looks freaky that we pin the batch here
2377 * outside of the reservation loop. But:
2378 * - The batch is already pinned into the relevant ppgtt, so we
2379 * already have the backing storage fully allocated.
2380 * - No other BO uses the global gtt (well contexts, but meh),
Yannick Guerrinifd0753c2015-02-28 17:20:41 +01002381 * so we don't really have issues with multiple objects not
Daniel Vetterda51a1e2014-08-11 12:08:58 +02002382 * fitting due to fragmentation.
2383 * So this is actually safe.
2384 */
Chris Wilson2889caa2017-06-16 15:05:19 +01002385 vma = i915_gem_object_ggtt_pin(eb.batch->obj, NULL, 0, 0, 0);
Chris Wilson058d88c2016-08-15 10:49:06 +01002386 if (IS_ERR(vma)) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002387 err = PTR_ERR(vma);
2388 goto err_vma;
Chris Wilson058d88c2016-08-15 10:49:06 +01002389 }
Chris Wilsond7d4eed2012-10-17 12:09:54 +01002390
Chris Wilson650bc632017-06-15 09:14:33 +01002391 eb.batch = vma;
Chris Wilson59bfa122016-08-04 16:32:31 +01002392 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00002393
Chris Wilson7dd4f672017-06-16 15:05:24 +01002394 /* All GPU relocation batches must be submitted prior to the user rq */
2395 GEM_BUG_ON(eb.reloc_cache.rq);
2396
John Harrison0c8dac82015-05-29 17:43:25 +01002397 /* Allocate a request for this batch buffer nice and early. */
Chris Wilsone61e0f52018-02-21 09:56:36 +00002398 eb.request = i915_request_alloc(eb.engine, eb.ctx);
Chris Wilson650bc632017-06-15 09:14:33 +01002399 if (IS_ERR(eb.request)) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002400 err = PTR_ERR(eb.request);
John Harrison0c8dac82015-05-29 17:43:25 +01002401 goto err_batch_unpin;
Dave Gordon26827082016-01-19 19:02:53 +00002402 }
John Harrison0c8dac82015-05-29 17:43:25 +01002403
Chris Wilsonfec04452017-01-27 09:40:08 +00002404 if (in_fence) {
Chris Wilsone61e0f52018-02-21 09:56:36 +00002405 err = i915_request_await_dma_fence(eb.request, in_fence);
Chris Wilson2889caa2017-06-16 15:05:19 +01002406 if (err < 0)
Chris Wilsonfec04452017-01-27 09:40:08 +00002407 goto err_request;
2408 }
2409
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01002410 if (fences) {
2411 err = await_fence_array(&eb, fences);
2412 if (err)
2413 goto err_request;
2414 }
2415
Chris Wilsonfec04452017-01-27 09:40:08 +00002416 if (out_fence_fd != -1) {
Chris Wilson650bc632017-06-15 09:14:33 +01002417 out_fence = sync_file_create(&eb.request->fence);
Chris Wilsonfec04452017-01-27 09:40:08 +00002418 if (!out_fence) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002419 err = -ENOMEM;
Chris Wilsonfec04452017-01-27 09:40:08 +00002420 goto err_request;
2421 }
2422 }
2423
Chris Wilson2889caa2017-06-16 15:05:19 +01002424 /*
2425 * Whilst this request exists, batch_obj will be on the
Chris Wilson17f298cf2016-08-10 13:41:46 +01002426 * active_list, and so will hold the active reference. Only when this
2427 * request is retired will the the batch_obj be moved onto the
2428 * inactive_list and lose its active reference. Hence we do not need
2429 * to explicitly hold another reference here.
2430 */
Chris Wilson650bc632017-06-15 09:14:33 +01002431 eb.request->batch = eb.batch;
Chris Wilson17f298cf2016-08-10 13:41:46 +01002432
Chris Wilsone61e0f52018-02-21 09:56:36 +00002433 trace_i915_request_queue(eb.request, eb.batch_flags);
Chris Wilson2889caa2017-06-16 15:05:19 +01002434 err = eb_submit(&eb);
Chris Wilsonaa9b7812016-04-13 17:35:15 +01002435err_request:
Chris Wilsone61e0f52018-02-21 09:56:36 +00002436 __i915_request_add(eb.request, err == 0);
Chris Wilson650bc632017-06-15 09:14:33 +01002437 add_to_client(eb.request, file);
Chris Wilsonc8659ef2017-03-02 12:25:25 +00002438
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01002439 if (fences)
2440 signal_fence_array(&eb, fences);
2441
Chris Wilsonfec04452017-01-27 09:40:08 +00002442 if (out_fence) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002443 if (err == 0) {
Chris Wilsonfec04452017-01-27 09:40:08 +00002444 fd_install(out_fence_fd, out_fence->file);
Daniele Ceraolo Spuriob6a88e42018-02-14 11:18:25 -08002445 args->rsvd2 &= GENMASK_ULL(31, 0); /* keep in-fence */
Chris Wilsonfec04452017-01-27 09:40:08 +00002446 args->rsvd2 |= (u64)out_fence_fd << 32;
2447 out_fence_fd = -1;
2448 } else {
2449 fput(out_fence->file);
2450 }
2451 }
Chris Wilson54cf91d2010-11-25 18:00:26 +00002452
John Harrison0c8dac82015-05-29 17:43:25 +01002453err_batch_unpin:
Chris Wilson2889caa2017-06-16 15:05:19 +01002454 if (eb.batch_flags & I915_DISPATCH_SECURE)
Chris Wilson650bc632017-06-15 09:14:33 +01002455 i915_vma_unpin(eb.batch);
Chris Wilson2889caa2017-06-16 15:05:19 +01002456err_vma:
2457 if (eb.exec)
2458 eb_release_vmas(&eb);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002459 mutex_unlock(&dev->struct_mutex);
Chris Wilson2889caa2017-06-16 15:05:19 +01002460err_rpm:
Chris Wilson650bc632017-06-15 09:14:33 +01002461 intel_runtime_pm_put(eb.i915);
Chris Wilson1acfc102017-06-20 12:05:47 +01002462 i915_gem_context_put(eb.ctx);
2463err_destroy:
Chris Wilson2889caa2017-06-16 15:05:19 +01002464 eb_destroy(&eb);
Chris Wilson4d470f72017-06-29 16:04:25 +01002465err_out_fence:
Chris Wilsonfec04452017-01-27 09:40:08 +00002466 if (out_fence_fd != -1)
2467 put_unused_fd(out_fence_fd);
Daniele Ceraolo Spurio4a04e372017-02-03 14:45:29 -08002468err_in_fence:
Chris Wilsonfec04452017-01-27 09:40:08 +00002469 dma_fence_put(in_fence);
Chris Wilson2889caa2017-06-16 15:05:19 +01002470 return err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002471}
2472
Chris Wilsond710fc12017-11-16 10:50:59 +00002473static size_t eb_element_size(void)
2474{
2475 return (sizeof(struct drm_i915_gem_exec_object2) +
2476 sizeof(struct i915_vma *) +
2477 sizeof(unsigned int));
2478}
2479
2480static bool check_buffer_count(size_t count)
2481{
2482 const size_t sz = eb_element_size();
2483
2484 /*
2485 * When using LUT_HANDLE, we impose a limit of INT_MAX for the lookup
2486 * array size (see eb_create()). Otherwise, we can accept an array as
2487 * large as can be addressed (though use large arrays at your peril)!
2488 */
2489
2490 return !(count < 1 || count > INT_MAX || count > SIZE_MAX / sz - 1);
2491}
2492
Chris Wilson54cf91d2010-11-25 18:00:26 +00002493/*
2494 * Legacy execbuffer just creates an exec2 list from the original exec object
2495 * list array and passes it to the real function.
2496 */
2497int
Ville Syrjälä6a20fe72018-02-07 18:48:41 +02002498i915_gem_execbuffer_ioctl(struct drm_device *dev, void *data,
2499 struct drm_file *file)
Chris Wilson54cf91d2010-11-25 18:00:26 +00002500{
2501 struct drm_i915_gem_execbuffer *args = data;
2502 struct drm_i915_gem_execbuffer2 exec2;
2503 struct drm_i915_gem_exec_object *exec_list = NULL;
2504 struct drm_i915_gem_exec_object2 *exec2_list = NULL;
Chris Wilsond710fc12017-11-16 10:50:59 +00002505 const size_t count = args->buffer_count;
Chris Wilson2889caa2017-06-16 15:05:19 +01002506 unsigned int i;
2507 int err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002508
Chris Wilsond710fc12017-11-16 10:50:59 +00002509 if (!check_buffer_count(count)) {
2510 DRM_DEBUG("execbuf2 with %zd buffers\n", count);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002511 return -EINVAL;
2512 }
2513
Chris Wilson2889caa2017-06-16 15:05:19 +01002514 exec2.buffers_ptr = args->buffers_ptr;
2515 exec2.buffer_count = args->buffer_count;
2516 exec2.batch_start_offset = args->batch_start_offset;
2517 exec2.batch_len = args->batch_len;
2518 exec2.DR1 = args->DR1;
2519 exec2.DR4 = args->DR4;
2520 exec2.num_cliprects = args->num_cliprects;
2521 exec2.cliprects_ptr = args->cliprects_ptr;
2522 exec2.flags = I915_EXEC_RENDER;
2523 i915_execbuffer2_set_context_id(exec2, 0);
2524
2525 if (!i915_gem_check_execbuffer(&exec2))
2526 return -EINVAL;
2527
Chris Wilson54cf91d2010-11-25 18:00:26 +00002528 /* Copy in the exec list from userland */
Chris Wilsond710fc12017-11-16 10:50:59 +00002529 exec_list = kvmalloc_array(count, sizeof(*exec_list),
Michal Hocko0ee931c2017-09-13 16:28:29 -07002530 __GFP_NOWARN | GFP_KERNEL);
Chris Wilsond710fc12017-11-16 10:50:59 +00002531 exec2_list = kvmalloc_array(count + 1, eb_element_size(),
Michal Hocko0ee931c2017-09-13 16:28:29 -07002532 __GFP_NOWARN | GFP_KERNEL);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002533 if (exec_list == NULL || exec2_list == NULL) {
Daniel Vetterff240192012-01-31 21:08:14 +01002534 DRM_DEBUG("Failed to allocate exec list for %d buffers\n",
Chris Wilson54cf91d2010-11-25 18:00:26 +00002535 args->buffer_count);
Michal Hocko20981052017-05-17 14:23:12 +02002536 kvfree(exec_list);
2537 kvfree(exec2_list);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002538 return -ENOMEM;
2539 }
Chris Wilson2889caa2017-06-16 15:05:19 +01002540 err = copy_from_user(exec_list,
Gustavo Padovan3ed605b2016-04-26 12:32:27 -03002541 u64_to_user_ptr(args->buffers_ptr),
Chris Wilsond710fc12017-11-16 10:50:59 +00002542 sizeof(*exec_list) * count);
Chris Wilson2889caa2017-06-16 15:05:19 +01002543 if (err) {
Daniel Vetterff240192012-01-31 21:08:14 +01002544 DRM_DEBUG("copy %d exec entries failed %d\n",
Chris Wilson2889caa2017-06-16 15:05:19 +01002545 args->buffer_count, err);
Michal Hocko20981052017-05-17 14:23:12 +02002546 kvfree(exec_list);
2547 kvfree(exec2_list);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002548 return -EFAULT;
2549 }
2550
2551 for (i = 0; i < args->buffer_count; i++) {
2552 exec2_list[i].handle = exec_list[i].handle;
2553 exec2_list[i].relocation_count = exec_list[i].relocation_count;
2554 exec2_list[i].relocs_ptr = exec_list[i].relocs_ptr;
2555 exec2_list[i].alignment = exec_list[i].alignment;
2556 exec2_list[i].offset = exec_list[i].offset;
Tvrtko Ursulinf0836b72016-11-16 08:55:32 +00002557 if (INTEL_GEN(to_i915(dev)) < 4)
Chris Wilson54cf91d2010-11-25 18:00:26 +00002558 exec2_list[i].flags = EXEC_OBJECT_NEEDS_FENCE;
2559 else
2560 exec2_list[i].flags = 0;
2561 }
2562
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01002563 err = i915_gem_do_execbuffer(dev, file, &exec2, exec2_list, NULL);
Chris Wilson2889caa2017-06-16 15:05:19 +01002564 if (exec2.flags & __EXEC_HAS_RELOC) {
Chris Wilson9aab8bf2014-05-23 10:45:52 +01002565 struct drm_i915_gem_exec_object __user *user_exec_list =
Gustavo Padovan3ed605b2016-04-26 12:32:27 -03002566 u64_to_user_ptr(args->buffers_ptr);
Chris Wilson9aab8bf2014-05-23 10:45:52 +01002567
Chris Wilson54cf91d2010-11-25 18:00:26 +00002568 /* Copy the new buffer offsets back to the user's exec list. */
Chris Wilson9aab8bf2014-05-23 10:45:52 +01002569 for (i = 0; i < args->buffer_count; i++) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002570 if (!(exec2_list[i].offset & UPDATE))
2571 continue;
2572
Michał Winiarski934acce2015-12-29 18:24:52 +01002573 exec2_list[i].offset =
Chris Wilson2889caa2017-06-16 15:05:19 +01002574 gen8_canonical_addr(exec2_list[i].offset & PIN_OFFSET_MASK);
2575 exec2_list[i].offset &= PIN_OFFSET_MASK;
2576 if (__copy_to_user(&user_exec_list[i].offset,
2577 &exec2_list[i].offset,
2578 sizeof(user_exec_list[i].offset)))
Chris Wilson9aab8bf2014-05-23 10:45:52 +01002579 break;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002580 }
2581 }
2582
Michal Hocko20981052017-05-17 14:23:12 +02002583 kvfree(exec_list);
2584 kvfree(exec2_list);
Chris Wilson2889caa2017-06-16 15:05:19 +01002585 return err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002586}
2587
2588int
Ville Syrjälä6a20fe72018-02-07 18:48:41 +02002589i915_gem_execbuffer2_ioctl(struct drm_device *dev, void *data,
2590 struct drm_file *file)
Chris Wilson54cf91d2010-11-25 18:00:26 +00002591{
2592 struct drm_i915_gem_execbuffer2 *args = data;
Chris Wilson2889caa2017-06-16 15:05:19 +01002593 struct drm_i915_gem_exec_object2 *exec2_list;
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01002594 struct drm_syncobj **fences = NULL;
Chris Wilsond710fc12017-11-16 10:50:59 +00002595 const size_t count = args->buffer_count;
Chris Wilson2889caa2017-06-16 15:05:19 +01002596 int err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002597
Chris Wilsond710fc12017-11-16 10:50:59 +00002598 if (!check_buffer_count(count)) {
2599 DRM_DEBUG("execbuf2 with %zd buffers\n", count);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002600 return -EINVAL;
2601 }
2602
Chris Wilson2889caa2017-06-16 15:05:19 +01002603 if (!i915_gem_check_execbuffer(args))
2604 return -EINVAL;
2605
2606 /* Allocate an extra slot for use by the command parser */
Chris Wilsond710fc12017-11-16 10:50:59 +00002607 exec2_list = kvmalloc_array(count + 1, eb_element_size(),
Michal Hocko0ee931c2017-09-13 16:28:29 -07002608 __GFP_NOWARN | GFP_KERNEL);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002609 if (exec2_list == NULL) {
Chris Wilsond710fc12017-11-16 10:50:59 +00002610 DRM_DEBUG("Failed to allocate exec list for %zd buffers\n",
2611 count);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002612 return -ENOMEM;
2613 }
Chris Wilson2889caa2017-06-16 15:05:19 +01002614 if (copy_from_user(exec2_list,
2615 u64_to_user_ptr(args->buffers_ptr),
Chris Wilsond710fc12017-11-16 10:50:59 +00002616 sizeof(*exec2_list) * count)) {
2617 DRM_DEBUG("copy %zd exec entries failed\n", count);
Michal Hocko20981052017-05-17 14:23:12 +02002618 kvfree(exec2_list);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002619 return -EFAULT;
2620 }
2621
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01002622 if (args->flags & I915_EXEC_FENCE_ARRAY) {
2623 fences = get_fence_array(args, file);
2624 if (IS_ERR(fences)) {
2625 kvfree(exec2_list);
2626 return PTR_ERR(fences);
2627 }
2628 }
2629
2630 err = i915_gem_do_execbuffer(dev, file, args, exec2_list, fences);
Chris Wilson9aab8bf2014-05-23 10:45:52 +01002631
Chris Wilson2889caa2017-06-16 15:05:19 +01002632 /*
2633 * Now that we have begun execution of the batchbuffer, we ignore
2634 * any new error after this point. Also given that we have already
2635 * updated the associated relocations, we try to write out the current
2636 * object locations irrespective of any error.
2637 */
2638 if (args->flags & __EXEC_HAS_RELOC) {
2639 struct drm_i915_gem_exec_object2 __user *user_exec_list =
2640 u64_to_user_ptr(args->buffers_ptr);
2641 unsigned int i;
2642
2643 /* Copy the new buffer offsets back to the user's exec list. */
2644 user_access_begin();
Chris Wilson9aab8bf2014-05-23 10:45:52 +01002645 for (i = 0; i < args->buffer_count; i++) {
Chris Wilson2889caa2017-06-16 15:05:19 +01002646 if (!(exec2_list[i].offset & UPDATE))
2647 continue;
2648
Michał Winiarski934acce2015-12-29 18:24:52 +01002649 exec2_list[i].offset =
Chris Wilson2889caa2017-06-16 15:05:19 +01002650 gen8_canonical_addr(exec2_list[i].offset & PIN_OFFSET_MASK);
2651 unsafe_put_user(exec2_list[i].offset,
2652 &user_exec_list[i].offset,
2653 end_user);
Chris Wilson54cf91d2010-11-25 18:00:26 +00002654 }
Chris Wilson2889caa2017-06-16 15:05:19 +01002655end_user:
2656 user_access_end();
Chris Wilson54cf91d2010-11-25 18:00:26 +00002657 }
2658
Chris Wilson2889caa2017-06-16 15:05:19 +01002659 args->flags &= ~__I915_EXEC_UNKNOWN_FLAGS;
Jason Ekstrandcf6e7ba2017-08-15 15:57:33 +01002660 put_fence_array(args, fences);
Michal Hocko20981052017-05-17 14:23:12 +02002661 kvfree(exec2_list);
Chris Wilson2889caa2017-06-16 15:05:19 +01002662 return err;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002663}