drm/i915: Make object/vma allocation caches global
[linux-2.6-block.git] / drivers / gpu / drm / i915 / i915_gem_execbuffer.c
1 /*
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
29 #include <linux/intel-iommu.h>
30 #include <linux/reservation.h>
31 #include <linux/sync_file.h>
32 #include <linux/uaccess.h>
33
34 #include <drm/drm_syncobj.h>
35 #include <drm/i915_drm.h>
36
37 #include "i915_drv.h"
38 #include "i915_gem_clflush.h"
39 #include "i915_trace.h"
40 #include "intel_drv.h"
41 #include "intel_frontbuffer.h"
42
43 enum {
44         FORCE_CPU_RELOC = 1,
45         FORCE_GTT_RELOC,
46         FORCE_GPU_RELOC,
47 #define DBG_FORCE_RELOC 0 /* choose one of the above! */
48 };
49
50 #define __EXEC_OBJECT_HAS_REF           BIT(31)
51 #define __EXEC_OBJECT_HAS_PIN           BIT(30)
52 #define __EXEC_OBJECT_HAS_FENCE         BIT(29)
53 #define __EXEC_OBJECT_NEEDS_MAP         BIT(28)
54 #define __EXEC_OBJECT_NEEDS_BIAS        BIT(27)
55 #define __EXEC_OBJECT_INTERNAL_FLAGS    (~0u << 27) /* all of the above */
56 #define __EXEC_OBJECT_RESERVED (__EXEC_OBJECT_HAS_PIN | __EXEC_OBJECT_HAS_FENCE)
57
58 #define __EXEC_HAS_RELOC        BIT(31)
59 #define __EXEC_VALIDATED        BIT(30)
60 #define __EXEC_INTERNAL_FLAGS   (~0u << 30)
61 #define UPDATE                  PIN_OFFSET_FIXED
62
63 #define BATCH_OFFSET_BIAS (256*1024)
64
65 #define __I915_EXEC_ILLEGAL_FLAGS \
66         (__I915_EXEC_UNKNOWN_FLAGS | \
67          I915_EXEC_CONSTANTS_MASK  | \
68          I915_EXEC_RESOURCE_STREAMER)
69
70 /* Catch emission of unexpected errors for CI! */
71 #if IS_ENABLED(CONFIG_DRM_I915_DEBUG_GEM)
72 #undef EINVAL
73 #define EINVAL ({ \
74         DRM_DEBUG_DRIVER("EINVAL at %s:%d\n", __func__, __LINE__); \
75         22; \
76 })
77 #endif
78
79 /**
80  * DOC: User command execution
81  *
82  * Userspace submits commands to be executed on the GPU as an instruction
83  * stream within a GEM object we call a batchbuffer. This instructions may
84  * refer to other GEM objects containing auxiliary state such as kernels,
85  * samplers, render targets and even secondary batchbuffers. Userspace does
86  * not know where in the GPU memory these objects reside and so before the
87  * batchbuffer is passed to the GPU for execution, those addresses in the
88  * batchbuffer and auxiliary objects are updated. This is known as relocation,
89  * or patching. To try and avoid having to relocate each object on the next
90  * execution, userspace is told the location of those objects in this pass,
91  * but this remains just a hint as the kernel may choose a new location for
92  * any object in the future.
93  *
94  * At the level of talking to the hardware, submitting a batchbuffer for the
95  * GPU to execute is to add content to a buffer from which the HW
96  * command streamer is reading.
97  *
98  * 1. Add a command to load the HW context. For Logical Ring Contexts, i.e.
99  *    Execlists, this command is not placed on the same buffer as the
100  *    remaining items.
101  *
102  * 2. Add a command to invalidate caches to the buffer.
103  *
104  * 3. Add a batchbuffer start command to the buffer; the start command is
105  *    essentially a token together with the GPU address of the batchbuffer
106  *    to be executed.
107  *
108  * 4. Add a pipeline flush to the buffer.
109  *
110  * 5. Add a memory write command to the buffer to record when the GPU
111  *    is done executing the batchbuffer. The memory write writes the
112  *    global sequence number of the request, ``i915_request::global_seqno``;
113  *    the i915 driver uses the current value in the register to determine
114  *    if the GPU has completed the batchbuffer.
115  *
116  * 6. Add a user interrupt command to the buffer. This command instructs
117  *    the GPU to issue an interrupt when the command, pipeline flush and
118  *    memory write are completed.
119  *
120  * 7. Inform the hardware of the additional commands added to the buffer
121  *    (by updating the tail pointer).
122  *
123  * Processing an execbuf ioctl is conceptually split up into a few phases.
124  *
125  * 1. Validation - Ensure all the pointers, handles and flags are valid.
126  * 2. Reservation - Assign GPU address space for every object
127  * 3. Relocation - Update any addresses to point to the final locations
128  * 4. Serialisation - Order the request with respect to its dependencies
129  * 5. Construction - Construct a request to execute the batchbuffer
130  * 6. Submission (at some point in the future execution)
131  *
132  * Reserving resources for the execbuf is the most complicated phase. We
133  * neither want to have to migrate the object in the address space, nor do
134  * we want to have to update any relocations pointing to this object. Ideally,
135  * we want to leave the object where it is and for all the existing relocations
136  * to match. If the object is given a new address, or if userspace thinks the
137  * object is elsewhere, we have to parse all the relocation entries and update
138  * the addresses. Userspace can set the I915_EXEC_NORELOC flag to hint that
139  * all the target addresses in all of its objects match the value in the
140  * relocation entries and that they all match the presumed offsets given by the
141  * list of execbuffer objects. Using this knowledge, we know that if we haven't
142  * moved any buffers, all the relocation entries are valid and we can skip
143  * the update. (If userspace is wrong, the likely outcome is an impromptu GPU
144  * hang.) The requirement for using I915_EXEC_NO_RELOC are:
145  *
146  *      The addresses written in the objects must match the corresponding
147  *      reloc.presumed_offset which in turn must match the corresponding
148  *      execobject.offset.
149  *
150  *      Any render targets written to in the batch must be flagged with
151  *      EXEC_OBJECT_WRITE.
152  *
153  *      To avoid stalling, execobject.offset should match the current
154  *      address of that object within the active context.
155  *
156  * The reservation is done is multiple phases. First we try and keep any
157  * object already bound in its current location - so as long as meets the
158  * constraints imposed by the new execbuffer. Any object left unbound after the
159  * first pass is then fitted into any available idle space. If an object does
160  * not fit, all objects are removed from the reservation and the process rerun
161  * after sorting the objects into a priority order (more difficult to fit
162  * objects are tried first). Failing that, the entire VM is cleared and we try
163  * to fit the execbuf once last time before concluding that it simply will not
164  * fit.
165  *
166  * A small complication to all of this is that we allow userspace not only to
167  * specify an alignment and a size for the object in the address space, but
168  * we also allow userspace to specify the exact offset. This objects are
169  * simpler to place (the location is known a priori) all we have to do is make
170  * sure the space is available.
171  *
172  * Once all the objects are in place, patching up the buried pointers to point
173  * to the final locations is a fairly simple job of walking over the relocation
174  * entry arrays, looking up the right address and rewriting the value into
175  * the object. Simple! ... The relocation entries are stored in user memory
176  * and so to access them we have to copy them into a local buffer. That copy
177  * has to avoid taking any pagefaults as they may lead back to a GEM object
178  * requiring the struct_mutex (i.e. recursive deadlock). So once again we split
179  * the relocation into multiple passes. First we try to do everything within an
180  * atomic context (avoid the pagefaults) which requires that we never wait. If
181  * we detect that we may wait, or if we need to fault, then we have to fallback
182  * to a slower path. The slowpath has to drop the mutex. (Can you hear alarm
183  * bells yet?) Dropping the mutex means that we lose all the state we have
184  * built up so far for the execbuf and we must reset any global data. However,
185  * we do leave the objects pinned in their final locations - which is a
186  * potential issue for concurrent execbufs. Once we have left the mutex, we can
187  * allocate and copy all the relocation entries into a large array at our
188  * leisure, reacquire the mutex, reclaim all the objects and other state and
189  * then proceed to update any incorrect addresses with the objects.
190  *
191  * As we process the relocation entries, we maintain a record of whether the
192  * object is being written to. Using NORELOC, we expect userspace to provide
193  * this information instead. We also check whether we can skip the relocation
194  * by comparing the expected value inside the relocation entry with the target's
195  * final address. If they differ, we have to map the current object and rewrite
196  * the 4 or 8 byte pointer within.
197  *
198  * Serialising an execbuf is quite simple according to the rules of the GEM
199  * ABI. Execution within each context is ordered by the order of submission.
200  * Writes to any GEM object are in order of submission and are exclusive. Reads
201  * from a GEM object are unordered with respect to other reads, but ordered by
202  * writes. A write submitted after a read cannot occur before the read, and
203  * similarly any read submitted after a write cannot occur before the write.
204  * Writes are ordered between engines such that only one write occurs at any
205  * time (completing any reads beforehand) - using semaphores where available
206  * and CPU serialisation otherwise. Other GEM access obey the same rules, any
207  * write (either via mmaps using set-domain, or via pwrite) must flush all GPU
208  * reads before starting, and any read (either using set-domain or pread) must
209  * flush all GPU writes before starting. (Note we only employ a barrier before,
210  * we currently rely on userspace not concurrently starting a new execution
211  * whilst reading or writing to an object. This may be an advantage or not
212  * depending on how much you trust userspace not to shoot themselves in the
213  * foot.) Serialisation may just result in the request being inserted into
214  * a DAG awaiting its turn, but most simple is to wait on the CPU until
215  * all dependencies are resolved.
216  *
217  * After all of that, is just a matter of closing the request and handing it to
218  * the hardware (well, leaving it in a queue to be executed). However, we also
219  * offer the ability for batchbuffers to be run with elevated privileges so
220  * that they access otherwise hidden registers. (Used to adjust L3 cache etc.)
221  * Before any batch is given extra privileges we first must check that it
222  * contains no nefarious instructions, we check that each instruction is from
223  * our whitelist and all registers are also from an allowed list. We first
224  * copy the user's batchbuffer to a shadow (so that the user doesn't have
225  * access to it, either by the CPU or GPU as we scan it) and then parse each
226  * instruction. If everything is ok, we set a flag telling the hardware to run
227  * the batchbuffer in trusted mode, otherwise the ioctl is rejected.
228  */
229
230 struct i915_execbuffer {
231         struct drm_i915_private *i915; /** i915 backpointer */
232         struct drm_file *file; /** per-file lookup tables and limits */
233         struct drm_i915_gem_execbuffer2 *args; /** ioctl parameters */
234         struct drm_i915_gem_exec_object2 *exec; /** ioctl execobj[] */
235         struct i915_vma **vma;
236         unsigned int *flags;
237
238         struct intel_engine_cs *engine; /** engine to queue the request to */
239         struct i915_gem_context *ctx; /** context for building the request */
240         struct i915_address_space *vm; /** GTT and vma for the request */
241
242         struct i915_request *request; /** our request to build */
243         struct i915_vma *batch; /** identity of the batch obj/vma */
244
245         /** actual size of execobj[] as we may extend it for the cmdparser */
246         unsigned int buffer_count;
247
248         /** list of vma not yet bound during reservation phase */
249         struct list_head unbound;
250
251         /** list of vma that have execobj.relocation_count */
252         struct list_head relocs;
253
254         /**
255          * Track the most recently used object for relocations, as we
256          * frequently have to perform multiple relocations within the same
257          * obj/page
258          */
259         struct reloc_cache {
260                 struct drm_mm_node node; /** temporary GTT binding */
261                 unsigned long vaddr; /** Current kmap address */
262                 unsigned long page; /** Currently mapped page index */
263                 unsigned int gen; /** Cached value of INTEL_GEN */
264                 bool use_64bit_reloc : 1;
265                 bool has_llc : 1;
266                 bool has_fence : 1;
267                 bool needs_unfenced : 1;
268
269                 struct i915_request *rq;
270                 u32 *rq_cmd;
271                 unsigned int rq_size;
272         } reloc_cache;
273
274         u64 invalid_flags; /** Set of execobj.flags that are invalid */
275         u32 context_flags; /** Set of execobj.flags to insert from the ctx */
276
277         u32 batch_start_offset; /** Location within object of batch */
278         u32 batch_len; /** Length of batch within object */
279         u32 batch_flags; /** Flags composed for emit_bb_start() */
280
281         /**
282          * Indicate either the size of the hastable used to resolve
283          * relocation handles, or if negative that we are using a direct
284          * index into the execobj[].
285          */
286         int lut_size;
287         struct hlist_head *buckets; /** ht for relocation handles */
288 };
289
290 #define exec_entry(EB, VMA) (&(EB)->exec[(VMA)->exec_flags - (EB)->flags])
291
292 /*
293  * Used to convert any address to canonical form.
294  * Starting from gen8, some commands (e.g. STATE_BASE_ADDRESS,
295  * MI_LOAD_REGISTER_MEM and others, see Broadwell PRM Vol2a) require the
296  * addresses to be in a canonical form:
297  * "GraphicsAddress[63:48] are ignored by the HW and assumed to be in correct
298  * canonical form [63:48] == [47]."
299  */
300 #define GEN8_HIGH_ADDRESS_BIT 47
301 static inline u64 gen8_canonical_addr(u64 address)
302 {
303         return sign_extend64(address, GEN8_HIGH_ADDRESS_BIT);
304 }
305
306 static inline u64 gen8_noncanonical_addr(u64 address)
307 {
308         return address & GENMASK_ULL(GEN8_HIGH_ADDRESS_BIT, 0);
309 }
310
311 static inline bool eb_use_cmdparser(const struct i915_execbuffer *eb)
312 {
313         return intel_engine_needs_cmd_parser(eb->engine) && eb->batch_len;
314 }
315
316 static int eb_create(struct i915_execbuffer *eb)
317 {
318         if (!(eb->args->flags & I915_EXEC_HANDLE_LUT)) {
319                 unsigned int size = 1 + ilog2(eb->buffer_count);
320
321                 /*
322                  * Without a 1:1 association between relocation handles and
323                  * the execobject[] index, we instead create a hashtable.
324                  * We size it dynamically based on available memory, starting
325                  * first with 1:1 assocative hash and scaling back until
326                  * the allocation succeeds.
327                  *
328                  * Later on we use a positive lut_size to indicate we are
329                  * using this hashtable, and a negative value to indicate a
330                  * direct lookup.
331                  */
332                 do {
333                         gfp_t flags;
334
335                         /* While we can still reduce the allocation size, don't
336                          * raise a warning and allow the allocation to fail.
337                          * On the last pass though, we want to try as hard
338                          * as possible to perform the allocation and warn
339                          * if it fails.
340                          */
341                         flags = GFP_KERNEL;
342                         if (size > 1)
343                                 flags |= __GFP_NORETRY | __GFP_NOWARN;
344
345                         eb->buckets = kzalloc(sizeof(struct hlist_head) << size,
346                                               flags);
347                         if (eb->buckets)
348                                 break;
349                 } while (--size);
350
351                 if (unlikely(!size))
352                         return -ENOMEM;
353
354                 eb->lut_size = size;
355         } else {
356                 eb->lut_size = -eb->buffer_count;
357         }
358
359         return 0;
360 }
361
362 static bool
363 eb_vma_misplaced(const struct drm_i915_gem_exec_object2 *entry,
364                  const struct i915_vma *vma,
365                  unsigned int flags)
366 {
367         if (vma->node.size < entry->pad_to_size)
368                 return true;
369
370         if (entry->alignment && !IS_ALIGNED(vma->node.start, entry->alignment))
371                 return true;
372
373         if (flags & EXEC_OBJECT_PINNED &&
374             vma->node.start != entry->offset)
375                 return true;
376
377         if (flags & __EXEC_OBJECT_NEEDS_BIAS &&
378             vma->node.start < BATCH_OFFSET_BIAS)
379                 return true;
380
381         if (!(flags & EXEC_OBJECT_SUPPORTS_48B_ADDRESS) &&
382             (vma->node.start + vma->node.size - 1) >> 32)
383                 return true;
384
385         if (flags & __EXEC_OBJECT_NEEDS_MAP &&
386             !i915_vma_is_map_and_fenceable(vma))
387                 return true;
388
389         return false;
390 }
391
392 static inline bool
393 eb_pin_vma(struct i915_execbuffer *eb,
394            const struct drm_i915_gem_exec_object2 *entry,
395            struct i915_vma *vma)
396 {
397         unsigned int exec_flags = *vma->exec_flags;
398         u64 pin_flags;
399
400         if (vma->node.size)
401                 pin_flags = vma->node.start;
402         else
403                 pin_flags = entry->offset & PIN_OFFSET_MASK;
404
405         pin_flags |= PIN_USER | PIN_NOEVICT | PIN_OFFSET_FIXED;
406         if (unlikely(exec_flags & EXEC_OBJECT_NEEDS_GTT))
407                 pin_flags |= PIN_GLOBAL;
408
409         if (unlikely(i915_vma_pin(vma, 0, 0, pin_flags)))
410                 return false;
411
412         if (unlikely(exec_flags & EXEC_OBJECT_NEEDS_FENCE)) {
413                 if (unlikely(i915_vma_pin_fence(vma))) {
414                         i915_vma_unpin(vma);
415                         return false;
416                 }
417
418                 if (vma->fence)
419                         exec_flags |= __EXEC_OBJECT_HAS_FENCE;
420         }
421
422         *vma->exec_flags = exec_flags | __EXEC_OBJECT_HAS_PIN;
423         return !eb_vma_misplaced(entry, vma, exec_flags);
424 }
425
426 static inline void __eb_unreserve_vma(struct i915_vma *vma, unsigned int flags)
427 {
428         GEM_BUG_ON(!(flags & __EXEC_OBJECT_HAS_PIN));
429
430         if (unlikely(flags & __EXEC_OBJECT_HAS_FENCE))
431                 __i915_vma_unpin_fence(vma);
432
433         __i915_vma_unpin(vma);
434 }
435
436 static inline void
437 eb_unreserve_vma(struct i915_vma *vma, unsigned int *flags)
438 {
439         if (!(*flags & __EXEC_OBJECT_HAS_PIN))
440                 return;
441
442         __eb_unreserve_vma(vma, *flags);
443         *flags &= ~__EXEC_OBJECT_RESERVED;
444 }
445
446 static int
447 eb_validate_vma(struct i915_execbuffer *eb,
448                 struct drm_i915_gem_exec_object2 *entry,
449                 struct i915_vma *vma)
450 {
451         if (unlikely(entry->flags & eb->invalid_flags))
452                 return -EINVAL;
453
454         if (unlikely(entry->alignment && !is_power_of_2(entry->alignment)))
455                 return -EINVAL;
456
457         /*
458          * Offset can be used as input (EXEC_OBJECT_PINNED), reject
459          * any non-page-aligned or non-canonical addresses.
460          */
461         if (unlikely(entry->flags & EXEC_OBJECT_PINNED &&
462                      entry->offset != gen8_canonical_addr(entry->offset & I915_GTT_PAGE_MASK)))
463                 return -EINVAL;
464
465         /* pad_to_size was once a reserved field, so sanitize it */
466         if (entry->flags & EXEC_OBJECT_PAD_TO_SIZE) {
467                 if (unlikely(offset_in_page(entry->pad_to_size)))
468                         return -EINVAL;
469         } else {
470                 entry->pad_to_size = 0;
471         }
472
473         if (unlikely(vma->exec_flags)) {
474                 DRM_DEBUG("Object [handle %d, index %d] appears more than once in object list\n",
475                           entry->handle, (int)(entry - eb->exec));
476                 return -EINVAL;
477         }
478
479         /*
480          * From drm_mm perspective address space is continuous,
481          * so from this point we're always using non-canonical
482          * form internally.
483          */
484         entry->offset = gen8_noncanonical_addr(entry->offset);
485
486         if (!eb->reloc_cache.has_fence) {
487                 entry->flags &= ~EXEC_OBJECT_NEEDS_FENCE;
488         } else {
489                 if ((entry->flags & EXEC_OBJECT_NEEDS_FENCE ||
490                      eb->reloc_cache.needs_unfenced) &&
491                     i915_gem_object_is_tiled(vma->obj))
492                         entry->flags |= EXEC_OBJECT_NEEDS_GTT | __EXEC_OBJECT_NEEDS_MAP;
493         }
494
495         if (!(entry->flags & EXEC_OBJECT_PINNED))
496                 entry->flags |= eb->context_flags;
497
498         return 0;
499 }
500
501 static int
502 eb_add_vma(struct i915_execbuffer *eb,
503            unsigned int i, unsigned batch_idx,
504            struct i915_vma *vma)
505 {
506         struct drm_i915_gem_exec_object2 *entry = &eb->exec[i];
507         int err;
508
509         GEM_BUG_ON(i915_vma_is_closed(vma));
510
511         if (!(eb->args->flags & __EXEC_VALIDATED)) {
512                 err = eb_validate_vma(eb, entry, vma);
513                 if (unlikely(err))
514                         return err;
515         }
516
517         if (eb->lut_size > 0) {
518                 vma->exec_handle = entry->handle;
519                 hlist_add_head(&vma->exec_node,
520                                &eb->buckets[hash_32(entry->handle,
521                                                     eb->lut_size)]);
522         }
523
524         if (entry->relocation_count)
525                 list_add_tail(&vma->reloc_link, &eb->relocs);
526
527         /*
528          * Stash a pointer from the vma to execobj, so we can query its flags,
529          * size, alignment etc as provided by the user. Also we stash a pointer
530          * to the vma inside the execobj so that we can use a direct lookup
531          * to find the right target VMA when doing relocations.
532          */
533         eb->vma[i] = vma;
534         eb->flags[i] = entry->flags;
535         vma->exec_flags = &eb->flags[i];
536
537         /*
538          * SNA is doing fancy tricks with compressing batch buffers, which leads
539          * to negative relocation deltas. Usually that works out ok since the
540          * relocate address is still positive, except when the batch is placed
541          * very low in the GTT. Ensure this doesn't happen.
542          *
543          * Note that actual hangs have only been observed on gen7, but for
544          * paranoia do it everywhere.
545          */
546         if (i == batch_idx) {
547                 if (entry->relocation_count &&
548                     !(eb->flags[i] & EXEC_OBJECT_PINNED))
549                         eb->flags[i] |= __EXEC_OBJECT_NEEDS_BIAS;
550                 if (eb->reloc_cache.has_fence)
551                         eb->flags[i] |= EXEC_OBJECT_NEEDS_FENCE;
552
553                 eb->batch = vma;
554         }
555
556         err = 0;
557         if (eb_pin_vma(eb, entry, vma)) {
558                 if (entry->offset != vma->node.start) {
559                         entry->offset = vma->node.start | UPDATE;
560                         eb->args->flags |= __EXEC_HAS_RELOC;
561                 }
562         } else {
563                 eb_unreserve_vma(vma, vma->exec_flags);
564
565                 list_add_tail(&vma->exec_link, &eb->unbound);
566                 if (drm_mm_node_allocated(&vma->node))
567                         err = i915_vma_unbind(vma);
568                 if (unlikely(err))
569                         vma->exec_flags = NULL;
570         }
571         return err;
572 }
573
574 static inline int use_cpu_reloc(const struct reloc_cache *cache,
575                                 const struct drm_i915_gem_object *obj)
576 {
577         if (!i915_gem_object_has_struct_page(obj))
578                 return false;
579
580         if (DBG_FORCE_RELOC == FORCE_CPU_RELOC)
581                 return true;
582
583         if (DBG_FORCE_RELOC == FORCE_GTT_RELOC)
584                 return false;
585
586         return (cache->has_llc ||
587                 obj->cache_dirty ||
588                 obj->cache_level != I915_CACHE_NONE);
589 }
590
591 static int eb_reserve_vma(const struct i915_execbuffer *eb,
592                           struct i915_vma *vma)
593 {
594         struct drm_i915_gem_exec_object2 *entry = exec_entry(eb, vma);
595         unsigned int exec_flags = *vma->exec_flags;
596         u64 pin_flags;
597         int err;
598
599         pin_flags = PIN_USER | PIN_NONBLOCK;
600         if (exec_flags & EXEC_OBJECT_NEEDS_GTT)
601                 pin_flags |= PIN_GLOBAL;
602
603         /*
604          * Wa32bitGeneralStateOffset & Wa32bitInstructionBaseOffset,
605          * limit address to the first 4GBs for unflagged objects.
606          */
607         if (!(exec_flags & EXEC_OBJECT_SUPPORTS_48B_ADDRESS))
608                 pin_flags |= PIN_ZONE_4G;
609
610         if (exec_flags & __EXEC_OBJECT_NEEDS_MAP)
611                 pin_flags |= PIN_MAPPABLE;
612
613         if (exec_flags & EXEC_OBJECT_PINNED) {
614                 pin_flags |= entry->offset | PIN_OFFSET_FIXED;
615                 pin_flags &= ~PIN_NONBLOCK; /* force overlapping checks */
616         } else if (exec_flags & __EXEC_OBJECT_NEEDS_BIAS) {
617                 pin_flags |= BATCH_OFFSET_BIAS | PIN_OFFSET_BIAS;
618         }
619
620         err = i915_vma_pin(vma,
621                            entry->pad_to_size, entry->alignment,
622                            pin_flags);
623         if (err)
624                 return err;
625
626         if (entry->offset != vma->node.start) {
627                 entry->offset = vma->node.start | UPDATE;
628                 eb->args->flags |= __EXEC_HAS_RELOC;
629         }
630
631         if (unlikely(exec_flags & EXEC_OBJECT_NEEDS_FENCE)) {
632                 err = i915_vma_pin_fence(vma);
633                 if (unlikely(err)) {
634                         i915_vma_unpin(vma);
635                         return err;
636                 }
637
638                 if (vma->fence)
639                         exec_flags |= __EXEC_OBJECT_HAS_FENCE;
640         }
641
642         *vma->exec_flags = exec_flags | __EXEC_OBJECT_HAS_PIN;
643         GEM_BUG_ON(eb_vma_misplaced(entry, vma, exec_flags));
644
645         return 0;
646 }
647
648 static int eb_reserve(struct i915_execbuffer *eb)
649 {
650         const unsigned int count = eb->buffer_count;
651         struct list_head last;
652         struct i915_vma *vma;
653         unsigned int i, pass;
654         int err;
655
656         /*
657          * Attempt to pin all of the buffers into the GTT.
658          * This is done in 3 phases:
659          *
660          * 1a. Unbind all objects that do not match the GTT constraints for
661          *     the execbuffer (fenceable, mappable, alignment etc).
662          * 1b. Increment pin count for already bound objects.
663          * 2.  Bind new objects.
664          * 3.  Decrement pin count.
665          *
666          * This avoid unnecessary unbinding of later objects in order to make
667          * room for the earlier objects *unless* we need to defragment.
668          */
669
670         pass = 0;
671         err = 0;
672         do {
673                 list_for_each_entry(vma, &eb->unbound, exec_link) {
674                         err = eb_reserve_vma(eb, vma);
675                         if (err)
676                                 break;
677                 }
678                 if (err != -ENOSPC)
679                         return err;
680
681                 /* Resort *all* the objects into priority order */
682                 INIT_LIST_HEAD(&eb->unbound);
683                 INIT_LIST_HEAD(&last);
684                 for (i = 0; i < count; i++) {
685                         unsigned int flags = eb->flags[i];
686                         struct i915_vma *vma = eb->vma[i];
687
688                         if (flags & EXEC_OBJECT_PINNED &&
689                             flags & __EXEC_OBJECT_HAS_PIN)
690                                 continue;
691
692                         eb_unreserve_vma(vma, &eb->flags[i]);
693
694                         if (flags & EXEC_OBJECT_PINNED)
695                                 /* Pinned must have their slot */
696                                 list_add(&vma->exec_link, &eb->unbound);
697                         else if (flags & __EXEC_OBJECT_NEEDS_MAP)
698                                 /* Map require the lowest 256MiB (aperture) */
699                                 list_add_tail(&vma->exec_link, &eb->unbound);
700                         else if (!(flags & EXEC_OBJECT_SUPPORTS_48B_ADDRESS))
701                                 /* Prioritise 4GiB region for restricted bo */
702                                 list_add(&vma->exec_link, &last);
703                         else
704                                 list_add_tail(&vma->exec_link, &last);
705                 }
706                 list_splice_tail(&last, &eb->unbound);
707
708                 switch (pass++) {
709                 case 0:
710                         break;
711
712                 case 1:
713                         /* Too fragmented, unbind everything and retry */
714                         err = i915_gem_evict_vm(eb->vm);
715                         if (err)
716                                 return err;
717                         break;
718
719                 default:
720                         return -ENOSPC;
721                 }
722         } while (1);
723 }
724
725 static unsigned int eb_batch_index(const struct i915_execbuffer *eb)
726 {
727         if (eb->args->flags & I915_EXEC_BATCH_FIRST)
728                 return 0;
729         else
730                 return eb->buffer_count - 1;
731 }
732
733 static int eb_select_context(struct i915_execbuffer *eb)
734 {
735         struct i915_gem_context *ctx;
736
737         ctx = i915_gem_context_lookup(eb->file->driver_priv, eb->args->rsvd1);
738         if (unlikely(!ctx))
739                 return -ENOENT;
740
741         eb->ctx = ctx;
742         if (ctx->ppgtt) {
743                 eb->vm = &ctx->ppgtt->vm;
744                 eb->invalid_flags |= EXEC_OBJECT_NEEDS_GTT;
745         } else {
746                 eb->vm = &eb->i915->ggtt.vm;
747         }
748
749         eb->context_flags = 0;
750         if (test_bit(UCONTEXT_NO_ZEROMAP, &ctx->user_flags))
751                 eb->context_flags |= __EXEC_OBJECT_NEEDS_BIAS;
752
753         return 0;
754 }
755
756 static struct i915_request *__eb_wait_for_ring(struct intel_ring *ring)
757 {
758         struct i915_request *rq;
759
760         /*
761          * Completely unscientific finger-in-the-air estimates for suitable
762          * maximum user request size (to avoid blocking) and then backoff.
763          */
764         if (intel_ring_update_space(ring) >= PAGE_SIZE)
765                 return NULL;
766
767         /*
768          * Find a request that after waiting upon, there will be at least half
769          * the ring available. The hysteresis allows us to compete for the
770          * shared ring and should mean that we sleep less often prior to
771          * claiming our resources, but not so long that the ring completely
772          * drains before we can submit our next request.
773          */
774         list_for_each_entry(rq, &ring->request_list, ring_link) {
775                 if (__intel_ring_space(rq->postfix,
776                                        ring->emit, ring->size) > ring->size / 2)
777                         break;
778         }
779         if (&rq->ring_link == &ring->request_list)
780                 return NULL; /* weird, we will check again later for real */
781
782         return i915_request_get(rq);
783 }
784
785 static int eb_wait_for_ring(const struct i915_execbuffer *eb)
786 {
787         const struct intel_context *ce;
788         struct i915_request *rq;
789         int ret = 0;
790
791         /*
792          * Apply a light amount of backpressure to prevent excessive hogs
793          * from blocking waiting for space whilst holding struct_mutex and
794          * keeping all of their resources pinned.
795          */
796
797         ce = to_intel_context(eb->ctx, eb->engine);
798         if (!ce->ring) /* first use, assume empty! */
799                 return 0;
800
801         rq = __eb_wait_for_ring(ce->ring);
802         if (rq) {
803                 mutex_unlock(&eb->i915->drm.struct_mutex);
804
805                 if (i915_request_wait(rq,
806                                       I915_WAIT_INTERRUPTIBLE,
807                                       MAX_SCHEDULE_TIMEOUT) < 0)
808                         ret = -EINTR;
809
810                 i915_request_put(rq);
811
812                 mutex_lock(&eb->i915->drm.struct_mutex);
813         }
814
815         return ret;
816 }
817
818 static int eb_lookup_vmas(struct i915_execbuffer *eb)
819 {
820         struct radix_tree_root *handles_vma = &eb->ctx->handles_vma;
821         struct drm_i915_gem_object *obj;
822         unsigned int i, batch;
823         int err;
824
825         if (unlikely(i915_gem_context_is_closed(eb->ctx)))
826                 return -ENOENT;
827
828         if (unlikely(i915_gem_context_is_banned(eb->ctx)))
829                 return -EIO;
830
831         INIT_LIST_HEAD(&eb->relocs);
832         INIT_LIST_HEAD(&eb->unbound);
833
834         batch = eb_batch_index(eb);
835
836         for (i = 0; i < eb->buffer_count; i++) {
837                 u32 handle = eb->exec[i].handle;
838                 struct i915_lut_handle *lut;
839                 struct i915_vma *vma;
840
841                 vma = radix_tree_lookup(handles_vma, handle);
842                 if (likely(vma))
843                         goto add_vma;
844
845                 obj = i915_gem_object_lookup(eb->file, handle);
846                 if (unlikely(!obj)) {
847                         err = -ENOENT;
848                         goto err_vma;
849                 }
850
851                 vma = i915_vma_instance(obj, eb->vm, NULL);
852                 if (IS_ERR(vma)) {
853                         err = PTR_ERR(vma);
854                         goto err_obj;
855                 }
856
857                 lut = i915_lut_handle_alloc();
858                 if (unlikely(!lut)) {
859                         err = -ENOMEM;
860                         goto err_obj;
861                 }
862
863                 err = radix_tree_insert(handles_vma, handle, vma);
864                 if (unlikely(err)) {
865                         i915_lut_handle_free(lut);
866                         goto err_obj;
867                 }
868
869                 /* transfer ref to ctx */
870                 if (!vma->open_count++)
871                         i915_vma_reopen(vma);
872                 list_add(&lut->obj_link, &obj->lut_list);
873                 list_add(&lut->ctx_link, &eb->ctx->handles_list);
874                 lut->ctx = eb->ctx;
875                 lut->handle = handle;
876
877 add_vma:
878                 err = eb_add_vma(eb, i, batch, vma);
879                 if (unlikely(err))
880                         goto err_vma;
881
882                 GEM_BUG_ON(vma != eb->vma[i]);
883                 GEM_BUG_ON(vma->exec_flags != &eb->flags[i]);
884                 GEM_BUG_ON(drm_mm_node_allocated(&vma->node) &&
885                            eb_vma_misplaced(&eb->exec[i], vma, eb->flags[i]));
886         }
887
888         eb->args->flags |= __EXEC_VALIDATED;
889         return eb_reserve(eb);
890
891 err_obj:
892         i915_gem_object_put(obj);
893 err_vma:
894         eb->vma[i] = NULL;
895         return err;
896 }
897
898 static struct i915_vma *
899 eb_get_vma(const struct i915_execbuffer *eb, unsigned long handle)
900 {
901         if (eb->lut_size < 0) {
902                 if (handle >= -eb->lut_size)
903                         return NULL;
904                 return eb->vma[handle];
905         } else {
906                 struct hlist_head *head;
907                 struct i915_vma *vma;
908
909                 head = &eb->buckets[hash_32(handle, eb->lut_size)];
910                 hlist_for_each_entry(vma, head, exec_node) {
911                         if (vma->exec_handle == handle)
912                                 return vma;
913                 }
914                 return NULL;
915         }
916 }
917
918 static void eb_release_vmas(const struct i915_execbuffer *eb)
919 {
920         const unsigned int count = eb->buffer_count;
921         unsigned int i;
922
923         for (i = 0; i < count; i++) {
924                 struct i915_vma *vma = eb->vma[i];
925                 unsigned int flags = eb->flags[i];
926
927                 if (!vma)
928                         break;
929
930                 GEM_BUG_ON(vma->exec_flags != &eb->flags[i]);
931                 vma->exec_flags = NULL;
932                 eb->vma[i] = NULL;
933
934                 if (flags & __EXEC_OBJECT_HAS_PIN)
935                         __eb_unreserve_vma(vma, flags);
936
937                 if (flags & __EXEC_OBJECT_HAS_REF)
938                         i915_vma_put(vma);
939         }
940 }
941
942 static void eb_reset_vmas(const struct i915_execbuffer *eb)
943 {
944         eb_release_vmas(eb);
945         if (eb->lut_size > 0)
946                 memset(eb->buckets, 0,
947                        sizeof(struct hlist_head) << eb->lut_size);
948 }
949
950 static void eb_destroy(const struct i915_execbuffer *eb)
951 {
952         GEM_BUG_ON(eb->reloc_cache.rq);
953
954         if (eb->lut_size > 0)
955                 kfree(eb->buckets);
956 }
957
958 static inline u64
959 relocation_target(const struct drm_i915_gem_relocation_entry *reloc,
960                   const struct i915_vma *target)
961 {
962         return gen8_canonical_addr((int)reloc->delta + target->node.start);
963 }
964
965 static void reloc_cache_init(struct reloc_cache *cache,
966                              struct drm_i915_private *i915)
967 {
968         cache->page = -1;
969         cache->vaddr = 0;
970         /* Must be a variable in the struct to allow GCC to unroll. */
971         cache->gen = INTEL_GEN(i915);
972         cache->has_llc = HAS_LLC(i915);
973         cache->use_64bit_reloc = HAS_64BIT_RELOC(i915);
974         cache->has_fence = cache->gen < 4;
975         cache->needs_unfenced = INTEL_INFO(i915)->unfenced_needs_alignment;
976         cache->node.allocated = false;
977         cache->rq = NULL;
978         cache->rq_size = 0;
979 }
980
981 static inline void *unmask_page(unsigned long p)
982 {
983         return (void *)(uintptr_t)(p & PAGE_MASK);
984 }
985
986 static inline unsigned int unmask_flags(unsigned long p)
987 {
988         return p & ~PAGE_MASK;
989 }
990
991 #define KMAP 0x4 /* after CLFLUSH_FLAGS */
992
993 static inline struct i915_ggtt *cache_to_ggtt(struct reloc_cache *cache)
994 {
995         struct drm_i915_private *i915 =
996                 container_of(cache, struct i915_execbuffer, reloc_cache)->i915;
997         return &i915->ggtt;
998 }
999
1000 static void reloc_gpu_flush(struct reloc_cache *cache)
1001 {
1002         GEM_BUG_ON(cache->rq_size >= cache->rq->batch->obj->base.size / sizeof(u32));
1003         cache->rq_cmd[cache->rq_size] = MI_BATCH_BUFFER_END;
1004         i915_gem_object_unpin_map(cache->rq->batch->obj);
1005         i915_gem_chipset_flush(cache->rq->i915);
1006
1007         i915_request_add(cache->rq);
1008         cache->rq = NULL;
1009 }
1010
1011 static void reloc_cache_reset(struct reloc_cache *cache)
1012 {
1013         void *vaddr;
1014
1015         if (cache->rq)
1016                 reloc_gpu_flush(cache);
1017
1018         if (!cache->vaddr)
1019                 return;
1020
1021         vaddr = unmask_page(cache->vaddr);
1022         if (cache->vaddr & KMAP) {
1023                 if (cache->vaddr & CLFLUSH_AFTER)
1024                         mb();
1025
1026                 kunmap_atomic(vaddr);
1027                 i915_gem_obj_finish_shmem_access((struct drm_i915_gem_object *)cache->node.mm);
1028         } else {
1029                 wmb();
1030                 io_mapping_unmap_atomic((void __iomem *)vaddr);
1031                 if (cache->node.allocated) {
1032                         struct i915_ggtt *ggtt = cache_to_ggtt(cache);
1033
1034                         ggtt->vm.clear_range(&ggtt->vm,
1035                                              cache->node.start,
1036                                              cache->node.size);
1037                         drm_mm_remove_node(&cache->node);
1038                 } else {
1039                         i915_vma_unpin((struct i915_vma *)cache->node.mm);
1040                 }
1041         }
1042
1043         cache->vaddr = 0;
1044         cache->page = -1;
1045 }
1046
1047 static void *reloc_kmap(struct drm_i915_gem_object *obj,
1048                         struct reloc_cache *cache,
1049                         unsigned long page)
1050 {
1051         void *vaddr;
1052
1053         if (cache->vaddr) {
1054                 kunmap_atomic(unmask_page(cache->vaddr));
1055         } else {
1056                 unsigned int flushes;
1057                 int err;
1058
1059                 err = i915_gem_obj_prepare_shmem_write(obj, &flushes);
1060                 if (err)
1061                         return ERR_PTR(err);
1062
1063                 BUILD_BUG_ON(KMAP & CLFLUSH_FLAGS);
1064                 BUILD_BUG_ON((KMAP | CLFLUSH_FLAGS) & PAGE_MASK);
1065
1066                 cache->vaddr = flushes | KMAP;
1067                 cache->node.mm = (void *)obj;
1068                 if (flushes)
1069                         mb();
1070         }
1071
1072         vaddr = kmap_atomic(i915_gem_object_get_dirty_page(obj, page));
1073         cache->vaddr = unmask_flags(cache->vaddr) | (unsigned long)vaddr;
1074         cache->page = page;
1075
1076         return vaddr;
1077 }
1078
1079 static void *reloc_iomap(struct drm_i915_gem_object *obj,
1080                          struct reloc_cache *cache,
1081                          unsigned long page)
1082 {
1083         struct i915_ggtt *ggtt = cache_to_ggtt(cache);
1084         unsigned long offset;
1085         void *vaddr;
1086
1087         if (cache->vaddr) {
1088                 io_mapping_unmap_atomic((void __force __iomem *) unmask_page(cache->vaddr));
1089         } else {
1090                 struct i915_vma *vma;
1091                 int err;
1092
1093                 if (use_cpu_reloc(cache, obj))
1094                         return NULL;
1095
1096                 err = i915_gem_object_set_to_gtt_domain(obj, true);
1097                 if (err)
1098                         return ERR_PTR(err);
1099
1100                 vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0,
1101                                                PIN_MAPPABLE |
1102                                                PIN_NONBLOCK |
1103                                                PIN_NONFAULT);
1104                 if (IS_ERR(vma)) {
1105                         memset(&cache->node, 0, sizeof(cache->node));
1106                         err = drm_mm_insert_node_in_range
1107                                 (&ggtt->vm.mm, &cache->node,
1108                                  PAGE_SIZE, 0, I915_COLOR_UNEVICTABLE,
1109                                  0, ggtt->mappable_end,
1110                                  DRM_MM_INSERT_LOW);
1111                         if (err) /* no inactive aperture space, use cpu reloc */
1112                                 return NULL;
1113                 } else {
1114                         err = i915_vma_put_fence(vma);
1115                         if (err) {
1116                                 i915_vma_unpin(vma);
1117                                 return ERR_PTR(err);
1118                         }
1119
1120                         cache->node.start = vma->node.start;
1121                         cache->node.mm = (void *)vma;
1122                 }
1123         }
1124
1125         offset = cache->node.start;
1126         if (cache->node.allocated) {
1127                 wmb();
1128                 ggtt->vm.insert_page(&ggtt->vm,
1129                                      i915_gem_object_get_dma_address(obj, page),
1130                                      offset, I915_CACHE_NONE, 0);
1131         } else {
1132                 offset += page << PAGE_SHIFT;
1133         }
1134
1135         vaddr = (void __force *)io_mapping_map_atomic_wc(&ggtt->iomap,
1136                                                          offset);
1137         cache->page = page;
1138         cache->vaddr = (unsigned long)vaddr;
1139
1140         return vaddr;
1141 }
1142
1143 static void *reloc_vaddr(struct drm_i915_gem_object *obj,
1144                          struct reloc_cache *cache,
1145                          unsigned long page)
1146 {
1147         void *vaddr;
1148
1149         if (cache->page == page) {
1150                 vaddr = unmask_page(cache->vaddr);
1151         } else {
1152                 vaddr = NULL;
1153                 if ((cache->vaddr & KMAP) == 0)
1154                         vaddr = reloc_iomap(obj, cache, page);
1155                 if (!vaddr)
1156                         vaddr = reloc_kmap(obj, cache, page);
1157         }
1158
1159         return vaddr;
1160 }
1161
1162 static void clflush_write32(u32 *addr, u32 value, unsigned int flushes)
1163 {
1164         if (unlikely(flushes & (CLFLUSH_BEFORE | CLFLUSH_AFTER))) {
1165                 if (flushes & CLFLUSH_BEFORE) {
1166                         clflushopt(addr);
1167                         mb();
1168                 }
1169
1170                 *addr = value;
1171
1172                 /*
1173                  * Writes to the same cacheline are serialised by the CPU
1174                  * (including clflush). On the write path, we only require
1175                  * that it hits memory in an orderly fashion and place
1176                  * mb barriers at the start and end of the relocation phase
1177                  * to ensure ordering of clflush wrt to the system.
1178                  */
1179                 if (flushes & CLFLUSH_AFTER)
1180                         clflushopt(addr);
1181         } else
1182                 *addr = value;
1183 }
1184
1185 static int __reloc_gpu_alloc(struct i915_execbuffer *eb,
1186                              struct i915_vma *vma,
1187                              unsigned int len)
1188 {
1189         struct reloc_cache *cache = &eb->reloc_cache;
1190         struct drm_i915_gem_object *obj;
1191         struct i915_request *rq;
1192         struct i915_vma *batch;
1193         u32 *cmd;
1194         int err;
1195
1196         if (DBG_FORCE_RELOC == FORCE_GPU_RELOC) {
1197                 obj = vma->obj;
1198                 if (obj->cache_dirty & ~obj->cache_coherent)
1199                         i915_gem_clflush_object(obj, 0);
1200                 obj->write_domain = 0;
1201         }
1202
1203         GEM_BUG_ON(vma->obj->write_domain & I915_GEM_DOMAIN_CPU);
1204
1205         obj = i915_gem_batch_pool_get(&eb->engine->batch_pool, PAGE_SIZE);
1206         if (IS_ERR(obj))
1207                 return PTR_ERR(obj);
1208
1209         cmd = i915_gem_object_pin_map(obj,
1210                                       cache->has_llc ?
1211                                       I915_MAP_FORCE_WB :
1212                                       I915_MAP_FORCE_WC);
1213         i915_gem_object_unpin_pages(obj);
1214         if (IS_ERR(cmd))
1215                 return PTR_ERR(cmd);
1216
1217         err = i915_gem_object_set_to_wc_domain(obj, false);
1218         if (err)
1219                 goto err_unmap;
1220
1221         batch = i915_vma_instance(obj, vma->vm, NULL);
1222         if (IS_ERR(batch)) {
1223                 err = PTR_ERR(batch);
1224                 goto err_unmap;
1225         }
1226
1227         err = i915_vma_pin(batch, 0, 0, PIN_USER | PIN_NONBLOCK);
1228         if (err)
1229                 goto err_unmap;
1230
1231         rq = i915_request_alloc(eb->engine, eb->ctx);
1232         if (IS_ERR(rq)) {
1233                 err = PTR_ERR(rq);
1234                 goto err_unpin;
1235         }
1236
1237         err = i915_request_await_object(rq, vma->obj, true);
1238         if (err)
1239                 goto err_request;
1240
1241         err = eb->engine->emit_bb_start(rq,
1242                                         batch->node.start, PAGE_SIZE,
1243                                         cache->gen > 5 ? 0 : I915_DISPATCH_SECURE);
1244         if (err)
1245                 goto err_request;
1246
1247         GEM_BUG_ON(!reservation_object_test_signaled_rcu(batch->resv, true));
1248         err = i915_vma_move_to_active(batch, rq, 0);
1249         if (err)
1250                 goto skip_request;
1251
1252         err = i915_vma_move_to_active(vma, rq, EXEC_OBJECT_WRITE);
1253         if (err)
1254                 goto skip_request;
1255
1256         rq->batch = batch;
1257         i915_vma_unpin(batch);
1258
1259         cache->rq = rq;
1260         cache->rq_cmd = cmd;
1261         cache->rq_size = 0;
1262
1263         /* Return with batch mapping (cmd) still pinned */
1264         return 0;
1265
1266 skip_request:
1267         i915_request_skip(rq, err);
1268 err_request:
1269         i915_request_add(rq);
1270 err_unpin:
1271         i915_vma_unpin(batch);
1272 err_unmap:
1273         i915_gem_object_unpin_map(obj);
1274         return err;
1275 }
1276
1277 static u32 *reloc_gpu(struct i915_execbuffer *eb,
1278                       struct i915_vma *vma,
1279                       unsigned int len)
1280 {
1281         struct reloc_cache *cache = &eb->reloc_cache;
1282         u32 *cmd;
1283
1284         if (cache->rq_size > PAGE_SIZE/sizeof(u32) - (len + 1))
1285                 reloc_gpu_flush(cache);
1286
1287         if (unlikely(!cache->rq)) {
1288                 int err;
1289
1290                 /* If we need to copy for the cmdparser, we will stall anyway */
1291                 if (eb_use_cmdparser(eb))
1292                         return ERR_PTR(-EWOULDBLOCK);
1293
1294                 if (!intel_engine_can_store_dword(eb->engine))
1295                         return ERR_PTR(-ENODEV);
1296
1297                 err = __reloc_gpu_alloc(eb, vma, len);
1298                 if (unlikely(err))
1299                         return ERR_PTR(err);
1300         }
1301
1302         cmd = cache->rq_cmd + cache->rq_size;
1303         cache->rq_size += len;
1304
1305         return cmd;
1306 }
1307
1308 static u64
1309 relocate_entry(struct i915_vma *vma,
1310                const struct drm_i915_gem_relocation_entry *reloc,
1311                struct i915_execbuffer *eb,
1312                const struct i915_vma *target)
1313 {
1314         u64 offset = reloc->offset;
1315         u64 target_offset = relocation_target(reloc, target);
1316         bool wide = eb->reloc_cache.use_64bit_reloc;
1317         void *vaddr;
1318
1319         if (!eb->reloc_cache.vaddr &&
1320             (DBG_FORCE_RELOC == FORCE_GPU_RELOC ||
1321              !reservation_object_test_signaled_rcu(vma->resv, true))) {
1322                 const unsigned int gen = eb->reloc_cache.gen;
1323                 unsigned int len;
1324                 u32 *batch;
1325                 u64 addr;
1326
1327                 if (wide)
1328                         len = offset & 7 ? 8 : 5;
1329                 else if (gen >= 4)
1330                         len = 4;
1331                 else
1332                         len = 3;
1333
1334                 batch = reloc_gpu(eb, vma, len);
1335                 if (IS_ERR(batch))
1336                         goto repeat;
1337
1338                 addr = gen8_canonical_addr(vma->node.start + offset);
1339                 if (wide) {
1340                         if (offset & 7) {
1341                                 *batch++ = MI_STORE_DWORD_IMM_GEN4;
1342                                 *batch++ = lower_32_bits(addr);
1343                                 *batch++ = upper_32_bits(addr);
1344                                 *batch++ = lower_32_bits(target_offset);
1345
1346                                 addr = gen8_canonical_addr(addr + 4);
1347
1348                                 *batch++ = MI_STORE_DWORD_IMM_GEN4;
1349                                 *batch++ = lower_32_bits(addr);
1350                                 *batch++ = upper_32_bits(addr);
1351                                 *batch++ = upper_32_bits(target_offset);
1352                         } else {
1353                                 *batch++ = (MI_STORE_DWORD_IMM_GEN4 | (1 << 21)) + 1;
1354                                 *batch++ = lower_32_bits(addr);
1355                                 *batch++ = upper_32_bits(addr);
1356                                 *batch++ = lower_32_bits(target_offset);
1357                                 *batch++ = upper_32_bits(target_offset);
1358                         }
1359                 } else if (gen >= 6) {
1360                         *batch++ = MI_STORE_DWORD_IMM_GEN4;
1361                         *batch++ = 0;
1362                         *batch++ = addr;
1363                         *batch++ = target_offset;
1364                 } else if (gen >= 4) {
1365                         *batch++ = MI_STORE_DWORD_IMM_GEN4 | MI_USE_GGTT;
1366                         *batch++ = 0;
1367                         *batch++ = addr;
1368                         *batch++ = target_offset;
1369                 } else {
1370                         *batch++ = MI_STORE_DWORD_IMM | MI_MEM_VIRTUAL;
1371                         *batch++ = addr;
1372                         *batch++ = target_offset;
1373                 }
1374
1375                 goto out;
1376         }
1377
1378 repeat:
1379         vaddr = reloc_vaddr(vma->obj, &eb->reloc_cache, offset >> PAGE_SHIFT);
1380         if (IS_ERR(vaddr))
1381                 return PTR_ERR(vaddr);
1382
1383         clflush_write32(vaddr + offset_in_page(offset),
1384                         lower_32_bits(target_offset),
1385                         eb->reloc_cache.vaddr);
1386
1387         if (wide) {
1388                 offset += sizeof(u32);
1389                 target_offset >>= 32;
1390                 wide = false;
1391                 goto repeat;
1392         }
1393
1394 out:
1395         return target->node.start | UPDATE;
1396 }
1397
1398 static u64
1399 eb_relocate_entry(struct i915_execbuffer *eb,
1400                   struct i915_vma *vma,
1401                   const struct drm_i915_gem_relocation_entry *reloc)
1402 {
1403         struct i915_vma *target;
1404         int err;
1405
1406         /* we've already hold a reference to all valid objects */
1407         target = eb_get_vma(eb, reloc->target_handle);
1408         if (unlikely(!target))
1409                 return -ENOENT;
1410
1411         /* Validate that the target is in a valid r/w GPU domain */
1412         if (unlikely(reloc->write_domain & (reloc->write_domain - 1))) {
1413                 DRM_DEBUG("reloc with multiple write domains: "
1414                           "target %d offset %d "
1415                           "read %08x write %08x",
1416                           reloc->target_handle,
1417                           (int) reloc->offset,
1418                           reloc->read_domains,
1419                           reloc->write_domain);
1420                 return -EINVAL;
1421         }
1422         if (unlikely((reloc->write_domain | reloc->read_domains)
1423                      & ~I915_GEM_GPU_DOMAINS)) {
1424                 DRM_DEBUG("reloc with read/write non-GPU domains: "
1425                           "target %d offset %d "
1426                           "read %08x write %08x",
1427                           reloc->target_handle,
1428                           (int) reloc->offset,
1429                           reloc->read_domains,
1430                           reloc->write_domain);
1431                 return -EINVAL;
1432         }
1433
1434         if (reloc->write_domain) {
1435                 *target->exec_flags |= EXEC_OBJECT_WRITE;
1436
1437                 /*
1438                  * Sandybridge PPGTT errata: We need a global gtt mapping
1439                  * for MI and pipe_control writes because the gpu doesn't
1440                  * properly redirect them through the ppgtt for non_secure
1441                  * batchbuffers.
1442                  */
1443                 if (reloc->write_domain == I915_GEM_DOMAIN_INSTRUCTION &&
1444                     IS_GEN(eb->i915, 6)) {
1445                         err = i915_vma_bind(target, target->obj->cache_level,
1446                                             PIN_GLOBAL);
1447                         if (WARN_ONCE(err,
1448                                       "Unexpected failure to bind target VMA!"))
1449                                 return err;
1450                 }
1451         }
1452
1453         /*
1454          * If the relocation already has the right value in it, no
1455          * more work needs to be done.
1456          */
1457         if (!DBG_FORCE_RELOC &&
1458             gen8_canonical_addr(target->node.start) == reloc->presumed_offset)
1459                 return 0;
1460
1461         /* Check that the relocation address is valid... */
1462         if (unlikely(reloc->offset >
1463                      vma->size - (eb->reloc_cache.use_64bit_reloc ? 8 : 4))) {
1464                 DRM_DEBUG("Relocation beyond object bounds: "
1465                           "target %d offset %d size %d.\n",
1466                           reloc->target_handle,
1467                           (int)reloc->offset,
1468                           (int)vma->size);
1469                 return -EINVAL;
1470         }
1471         if (unlikely(reloc->offset & 3)) {
1472                 DRM_DEBUG("Relocation not 4-byte aligned: "
1473                           "target %d offset %d.\n",
1474                           reloc->target_handle,
1475                           (int)reloc->offset);
1476                 return -EINVAL;
1477         }
1478
1479         /*
1480          * If we write into the object, we need to force the synchronisation
1481          * barrier, either with an asynchronous clflush or if we executed the
1482          * patching using the GPU (though that should be serialised by the
1483          * timeline). To be completely sure, and since we are required to
1484          * do relocations we are already stalling, disable the user's opt
1485          * out of our synchronisation.
1486          */
1487         *vma->exec_flags &= ~EXEC_OBJECT_ASYNC;
1488
1489         /* and update the user's relocation entry */
1490         return relocate_entry(vma, reloc, eb, target);
1491 }
1492
1493 static int eb_relocate_vma(struct i915_execbuffer *eb, struct i915_vma *vma)
1494 {
1495 #define N_RELOC(x) ((x) / sizeof(struct drm_i915_gem_relocation_entry))
1496         struct drm_i915_gem_relocation_entry stack[N_RELOC(512)];
1497         struct drm_i915_gem_relocation_entry __user *urelocs;
1498         const struct drm_i915_gem_exec_object2 *entry = exec_entry(eb, vma);
1499         unsigned int remain;
1500
1501         urelocs = u64_to_user_ptr(entry->relocs_ptr);
1502         remain = entry->relocation_count;
1503         if (unlikely(remain > N_RELOC(ULONG_MAX)))
1504                 return -EINVAL;
1505
1506         /*
1507          * We must check that the entire relocation array is safe
1508          * to read. However, if the array is not writable the user loses
1509          * the updated relocation values.
1510          */
1511         if (unlikely(!access_ok(urelocs, remain*sizeof(*urelocs))))
1512                 return -EFAULT;
1513
1514         do {
1515                 struct drm_i915_gem_relocation_entry *r = stack;
1516                 unsigned int count =
1517                         min_t(unsigned int, remain, ARRAY_SIZE(stack));
1518                 unsigned int copied;
1519
1520                 /*
1521                  * This is the fast path and we cannot handle a pagefault
1522                  * whilst holding the struct mutex lest the user pass in the
1523                  * relocations contained within a mmaped bo. For in such a case
1524                  * we, the page fault handler would call i915_gem_fault() and
1525                  * we would try to acquire the struct mutex again. Obviously
1526                  * this is bad and so lockdep complains vehemently.
1527                  */
1528                 pagefault_disable();
1529                 copied = __copy_from_user_inatomic(r, urelocs, count * sizeof(r[0]));
1530                 pagefault_enable();
1531                 if (unlikely(copied)) {
1532                         remain = -EFAULT;
1533                         goto out;
1534                 }
1535
1536                 remain -= count;
1537                 do {
1538                         u64 offset = eb_relocate_entry(eb, vma, r);
1539
1540                         if (likely(offset == 0)) {
1541                         } else if ((s64)offset < 0) {
1542                                 remain = (int)offset;
1543                                 goto out;
1544                         } else {
1545                                 /*
1546                                  * Note that reporting an error now
1547                                  * leaves everything in an inconsistent
1548                                  * state as we have *already* changed
1549                                  * the relocation value inside the
1550                                  * object. As we have not changed the
1551                                  * reloc.presumed_offset or will not
1552                                  * change the execobject.offset, on the
1553                                  * call we may not rewrite the value
1554                                  * inside the object, leaving it
1555                                  * dangling and causing a GPU hang. Unless
1556                                  * userspace dynamically rebuilds the
1557                                  * relocations on each execbuf rather than
1558                                  * presume a static tree.
1559                                  *
1560                                  * We did previously check if the relocations
1561                                  * were writable (access_ok), an error now
1562                                  * would be a strange race with mprotect,
1563                                  * having already demonstrated that we
1564                                  * can read from this userspace address.
1565                                  */
1566                                 offset = gen8_canonical_addr(offset & ~UPDATE);
1567                                 if (unlikely(__put_user(offset, &urelocs[r-stack].presumed_offset))) {
1568                                         remain = -EFAULT;
1569                                         goto out;
1570                                 }
1571                         }
1572                 } while (r++, --count);
1573                 urelocs += ARRAY_SIZE(stack);
1574         } while (remain);
1575 out:
1576         reloc_cache_reset(&eb->reloc_cache);
1577         return remain;
1578 }
1579
1580 static int
1581 eb_relocate_vma_slow(struct i915_execbuffer *eb, struct i915_vma *vma)
1582 {
1583         const struct drm_i915_gem_exec_object2 *entry = exec_entry(eb, vma);
1584         struct drm_i915_gem_relocation_entry *relocs =
1585                 u64_to_ptr(typeof(*relocs), entry->relocs_ptr);
1586         unsigned int i;
1587         int err;
1588
1589         for (i = 0; i < entry->relocation_count; i++) {
1590                 u64 offset = eb_relocate_entry(eb, vma, &relocs[i]);
1591
1592                 if ((s64)offset < 0) {
1593                         err = (int)offset;
1594                         goto err;
1595                 }
1596         }
1597         err = 0;
1598 err:
1599         reloc_cache_reset(&eb->reloc_cache);
1600         return err;
1601 }
1602
1603 static int check_relocations(const struct drm_i915_gem_exec_object2 *entry)
1604 {
1605         const char __user *addr, *end;
1606         unsigned long size;
1607         char __maybe_unused c;
1608
1609         size = entry->relocation_count;
1610         if (size == 0)
1611                 return 0;
1612
1613         if (size > N_RELOC(ULONG_MAX))
1614                 return -EINVAL;
1615
1616         addr = u64_to_user_ptr(entry->relocs_ptr);
1617         size *= sizeof(struct drm_i915_gem_relocation_entry);
1618         if (!access_ok(addr, size))
1619                 return -EFAULT;
1620
1621         end = addr + size;
1622         for (; addr < end; addr += PAGE_SIZE) {
1623                 int err = __get_user(c, addr);
1624                 if (err)
1625                         return err;
1626         }
1627         return __get_user(c, end - 1);
1628 }
1629
1630 static int eb_copy_relocations(const struct i915_execbuffer *eb)
1631 {
1632         const unsigned int count = eb->buffer_count;
1633         unsigned int i;
1634         int err;
1635
1636         for (i = 0; i < count; i++) {
1637                 const unsigned int nreloc = eb->exec[i].relocation_count;
1638                 struct drm_i915_gem_relocation_entry __user *urelocs;
1639                 struct drm_i915_gem_relocation_entry *relocs;
1640                 unsigned long size;
1641                 unsigned long copied;
1642
1643                 if (nreloc == 0)
1644                         continue;
1645
1646                 err = check_relocations(&eb->exec[i]);
1647                 if (err)
1648                         goto err;
1649
1650                 urelocs = u64_to_user_ptr(eb->exec[i].relocs_ptr);
1651                 size = nreloc * sizeof(*relocs);
1652
1653                 relocs = kvmalloc_array(size, 1, GFP_KERNEL);
1654                 if (!relocs) {
1655                         err = -ENOMEM;
1656                         goto err;
1657                 }
1658
1659                 /* copy_from_user is limited to < 4GiB */
1660                 copied = 0;
1661                 do {
1662                         unsigned int len =
1663                                 min_t(u64, BIT_ULL(31), size - copied);
1664
1665                         if (__copy_from_user((char *)relocs + copied,
1666                                              (char __user *)urelocs + copied,
1667                                              len)) {
1668 end_user:
1669                                 user_access_end();
1670                                 kvfree(relocs);
1671                                 err = -EFAULT;
1672                                 goto err;
1673                         }
1674
1675                         copied += len;
1676                 } while (copied < size);
1677
1678                 /*
1679                  * As we do not update the known relocation offsets after
1680                  * relocating (due to the complexities in lock handling),
1681                  * we need to mark them as invalid now so that we force the
1682                  * relocation processing next time. Just in case the target
1683                  * object is evicted and then rebound into its old
1684                  * presumed_offset before the next execbuffer - if that
1685                  * happened we would make the mistake of assuming that the
1686                  * relocations were valid.
1687                  */
1688                 if (!user_access_begin(urelocs, size))
1689                         goto end_user;
1690
1691                 for (copied = 0; copied < nreloc; copied++)
1692                         unsafe_put_user(-1,
1693                                         &urelocs[copied].presumed_offset,
1694                                         end_user);
1695                 user_access_end();
1696
1697                 eb->exec[i].relocs_ptr = (uintptr_t)relocs;
1698         }
1699
1700         return 0;
1701
1702 err:
1703         while (i--) {
1704                 struct drm_i915_gem_relocation_entry *relocs =
1705                         u64_to_ptr(typeof(*relocs), eb->exec[i].relocs_ptr);
1706                 if (eb->exec[i].relocation_count)
1707                         kvfree(relocs);
1708         }
1709         return err;
1710 }
1711
1712 static int eb_prefault_relocations(const struct i915_execbuffer *eb)
1713 {
1714         const unsigned int count = eb->buffer_count;
1715         unsigned int i;
1716
1717         if (unlikely(i915_modparams.prefault_disable))
1718                 return 0;
1719
1720         for (i = 0; i < count; i++) {
1721                 int err;
1722
1723                 err = check_relocations(&eb->exec[i]);
1724                 if (err)
1725                         return err;
1726         }
1727
1728         return 0;
1729 }
1730
1731 static noinline int eb_relocate_slow(struct i915_execbuffer *eb)
1732 {
1733         struct drm_device *dev = &eb->i915->drm;
1734         bool have_copy = false;
1735         struct i915_vma *vma;
1736         int err = 0;
1737
1738 repeat:
1739         if (signal_pending(current)) {
1740                 err = -ERESTARTSYS;
1741                 goto out;
1742         }
1743
1744         /* We may process another execbuffer during the unlock... */
1745         eb_reset_vmas(eb);
1746         mutex_unlock(&dev->struct_mutex);
1747
1748         /*
1749          * We take 3 passes through the slowpatch.
1750          *
1751          * 1 - we try to just prefault all the user relocation entries and
1752          * then attempt to reuse the atomic pagefault disabled fast path again.
1753          *
1754          * 2 - we copy the user entries to a local buffer here outside of the
1755          * local and allow ourselves to wait upon any rendering before
1756          * relocations
1757          *
1758          * 3 - we already have a local copy of the relocation entries, but
1759          * were interrupted (EAGAIN) whilst waiting for the objects, try again.
1760          */
1761         if (!err) {
1762                 err = eb_prefault_relocations(eb);
1763         } else if (!have_copy) {
1764                 err = eb_copy_relocations(eb);
1765                 have_copy = err == 0;
1766         } else {
1767                 cond_resched();
1768                 err = 0;
1769         }
1770         if (err) {
1771                 mutex_lock(&dev->struct_mutex);
1772                 goto out;
1773         }
1774
1775         /* A frequent cause for EAGAIN are currently unavailable client pages */
1776         flush_workqueue(eb->i915->mm.userptr_wq);
1777
1778         err = i915_mutex_lock_interruptible(dev);
1779         if (err) {
1780                 mutex_lock(&dev->struct_mutex);
1781                 goto out;
1782         }
1783
1784         /* reacquire the objects */
1785         err = eb_lookup_vmas(eb);
1786         if (err)
1787                 goto err;
1788
1789         GEM_BUG_ON(!eb->batch);
1790
1791         list_for_each_entry(vma, &eb->relocs, reloc_link) {
1792                 if (!have_copy) {
1793                         pagefault_disable();
1794                         err = eb_relocate_vma(eb, vma);
1795                         pagefault_enable();
1796                         if (err)
1797                                 goto repeat;
1798                 } else {
1799                         err = eb_relocate_vma_slow(eb, vma);
1800                         if (err)
1801                                 goto err;
1802                 }
1803         }
1804
1805         /*
1806          * Leave the user relocations as are, this is the painfully slow path,
1807          * and we want to avoid the complication of dropping the lock whilst
1808          * having buffers reserved in the aperture and so causing spurious
1809          * ENOSPC for random operations.
1810          */
1811
1812 err:
1813         if (err == -EAGAIN)
1814                 goto repeat;
1815
1816 out:
1817         if (have_copy) {
1818                 const unsigned int count = eb->buffer_count;
1819                 unsigned int i;
1820
1821                 for (i = 0; i < count; i++) {
1822                         const struct drm_i915_gem_exec_object2 *entry =
1823                                 &eb->exec[i];
1824                         struct drm_i915_gem_relocation_entry *relocs;
1825
1826                         if (!entry->relocation_count)
1827                                 continue;
1828
1829                         relocs = u64_to_ptr(typeof(*relocs), entry->relocs_ptr);
1830                         kvfree(relocs);
1831                 }
1832         }
1833
1834         return err;
1835 }
1836
1837 static int eb_relocate(struct i915_execbuffer *eb)
1838 {
1839         if (eb_lookup_vmas(eb))
1840                 goto slow;
1841
1842         /* The objects are in their final locations, apply the relocations. */
1843         if (eb->args->flags & __EXEC_HAS_RELOC) {
1844                 struct i915_vma *vma;
1845
1846                 list_for_each_entry(vma, &eb->relocs, reloc_link) {
1847                         if (eb_relocate_vma(eb, vma))
1848                                 goto slow;
1849                 }
1850         }
1851
1852         return 0;
1853
1854 slow:
1855         return eb_relocate_slow(eb);
1856 }
1857
1858 static int eb_move_to_gpu(struct i915_execbuffer *eb)
1859 {
1860         const unsigned int count = eb->buffer_count;
1861         unsigned int i;
1862         int err;
1863
1864         for (i = 0; i < count; i++) {
1865                 unsigned int flags = eb->flags[i];
1866                 struct i915_vma *vma = eb->vma[i];
1867                 struct drm_i915_gem_object *obj = vma->obj;
1868
1869                 if (flags & EXEC_OBJECT_CAPTURE) {
1870                         struct i915_capture_list *capture;
1871
1872                         capture = kmalloc(sizeof(*capture), GFP_KERNEL);
1873                         if (unlikely(!capture))
1874                                 return -ENOMEM;
1875
1876                         capture->next = eb->request->capture_list;
1877                         capture->vma = eb->vma[i];
1878                         eb->request->capture_list = capture;
1879                 }
1880
1881                 /*
1882                  * If the GPU is not _reading_ through the CPU cache, we need
1883                  * to make sure that any writes (both previous GPU writes from
1884                  * before a change in snooping levels and normal CPU writes)
1885                  * caught in that cache are flushed to main memory.
1886                  *
1887                  * We want to say
1888                  *   obj->cache_dirty &&
1889                  *   !(obj->cache_coherent & I915_BO_CACHE_COHERENT_FOR_READ)
1890                  * but gcc's optimiser doesn't handle that as well and emits
1891                  * two jumps instead of one. Maybe one day...
1892                  */
1893                 if (unlikely(obj->cache_dirty & ~obj->cache_coherent)) {
1894                         if (i915_gem_clflush_object(obj, 0))
1895                                 flags &= ~EXEC_OBJECT_ASYNC;
1896                 }
1897
1898                 if (flags & EXEC_OBJECT_ASYNC)
1899                         continue;
1900
1901                 err = i915_request_await_object
1902                         (eb->request, obj, flags & EXEC_OBJECT_WRITE);
1903                 if (err)
1904                         return err;
1905         }
1906
1907         for (i = 0; i < count; i++) {
1908                 unsigned int flags = eb->flags[i];
1909                 struct i915_vma *vma = eb->vma[i];
1910
1911                 err = i915_vma_move_to_active(vma, eb->request, flags);
1912                 if (unlikely(err)) {
1913                         i915_request_skip(eb->request, err);
1914                         return err;
1915                 }
1916
1917                 __eb_unreserve_vma(vma, flags);
1918                 vma->exec_flags = NULL;
1919
1920                 if (unlikely(flags & __EXEC_OBJECT_HAS_REF))
1921                         i915_vma_put(vma);
1922         }
1923         eb->exec = NULL;
1924
1925         /* Unconditionally flush any chipset caches (for streaming writes). */
1926         i915_gem_chipset_flush(eb->i915);
1927
1928         return 0;
1929 }
1930
1931 static bool i915_gem_check_execbuffer(struct drm_i915_gem_execbuffer2 *exec)
1932 {
1933         if (exec->flags & __I915_EXEC_ILLEGAL_FLAGS)
1934                 return false;
1935
1936         /* Kernel clipping was a DRI1 misfeature */
1937         if (!(exec->flags & I915_EXEC_FENCE_ARRAY)) {
1938                 if (exec->num_cliprects || exec->cliprects_ptr)
1939                         return false;
1940         }
1941
1942         if (exec->DR4 == 0xffffffff) {
1943                 DRM_DEBUG("UXA submitting garbage DR4, fixing up\n");
1944                 exec->DR4 = 0;
1945         }
1946         if (exec->DR1 || exec->DR4)
1947                 return false;
1948
1949         if ((exec->batch_start_offset | exec->batch_len) & 0x7)
1950                 return false;
1951
1952         return true;
1953 }
1954
1955 static int i915_reset_gen7_sol_offsets(struct i915_request *rq)
1956 {
1957         u32 *cs;
1958         int i;
1959
1960         if (!IS_GEN(rq->i915, 7) || rq->engine->id != RCS) {
1961                 DRM_DEBUG("sol reset is gen7/rcs only\n");
1962                 return -EINVAL;
1963         }
1964
1965         cs = intel_ring_begin(rq, 4 * 2 + 2);
1966         if (IS_ERR(cs))
1967                 return PTR_ERR(cs);
1968
1969         *cs++ = MI_LOAD_REGISTER_IMM(4);
1970         for (i = 0; i < 4; i++) {
1971                 *cs++ = i915_mmio_reg_offset(GEN7_SO_WRITE_OFFSET(i));
1972                 *cs++ = 0;
1973         }
1974         *cs++ = MI_NOOP;
1975         intel_ring_advance(rq, cs);
1976
1977         return 0;
1978 }
1979
1980 static struct i915_vma *eb_parse(struct i915_execbuffer *eb, bool is_master)
1981 {
1982         struct drm_i915_gem_object *shadow_batch_obj;
1983         struct i915_vma *vma;
1984         int err;
1985
1986         shadow_batch_obj = i915_gem_batch_pool_get(&eb->engine->batch_pool,
1987                                                    PAGE_ALIGN(eb->batch_len));
1988         if (IS_ERR(shadow_batch_obj))
1989                 return ERR_CAST(shadow_batch_obj);
1990
1991         err = intel_engine_cmd_parser(eb->engine,
1992                                       eb->batch->obj,
1993                                       shadow_batch_obj,
1994                                       eb->batch_start_offset,
1995                                       eb->batch_len,
1996                                       is_master);
1997         if (err) {
1998                 if (err == -EACCES) /* unhandled chained batch */
1999                         vma = NULL;
2000                 else
2001                         vma = ERR_PTR(err);
2002                 goto out;
2003         }
2004
2005         vma = i915_gem_object_ggtt_pin(shadow_batch_obj, NULL, 0, 0, 0);
2006         if (IS_ERR(vma))
2007                 goto out;
2008
2009         eb->vma[eb->buffer_count] = i915_vma_get(vma);
2010         eb->flags[eb->buffer_count] =
2011                 __EXEC_OBJECT_HAS_PIN | __EXEC_OBJECT_HAS_REF;
2012         vma->exec_flags = &eb->flags[eb->buffer_count];
2013         eb->buffer_count++;
2014
2015 out:
2016         i915_gem_object_unpin_pages(shadow_batch_obj);
2017         return vma;
2018 }
2019
2020 static void
2021 add_to_client(struct i915_request *rq, struct drm_file *file)
2022 {
2023         rq->file_priv = file->driver_priv;
2024         list_add_tail(&rq->client_link, &rq->file_priv->mm.request_list);
2025 }
2026
2027 static int eb_submit(struct i915_execbuffer *eb)
2028 {
2029         int err;
2030
2031         err = eb_move_to_gpu(eb);
2032         if (err)
2033                 return err;
2034
2035         if (eb->args->flags & I915_EXEC_GEN7_SOL_RESET) {
2036                 err = i915_reset_gen7_sol_offsets(eb->request);
2037                 if (err)
2038                         return err;
2039         }
2040
2041         /*
2042          * After we completed waiting for other engines (using HW semaphores)
2043          * then we can signal that this request/batch is ready to run. This
2044          * allows us to determine if the batch is still waiting on the GPU
2045          * or actually running by checking the breadcrumb.
2046          */
2047         if (eb->engine->emit_init_breadcrumb) {
2048                 err = eb->engine->emit_init_breadcrumb(eb->request);
2049                 if (err)
2050                         return err;
2051         }
2052
2053         err = eb->engine->emit_bb_start(eb->request,
2054                                         eb->batch->node.start +
2055                                         eb->batch_start_offset,
2056                                         eb->batch_len,
2057                                         eb->batch_flags);
2058         if (err)
2059                 return err;
2060
2061         return 0;
2062 }
2063
2064 /*
2065  * Find one BSD ring to dispatch the corresponding BSD command.
2066  * The engine index is returned.
2067  */
2068 static unsigned int
2069 gen8_dispatch_bsd_engine(struct drm_i915_private *dev_priv,
2070                          struct drm_file *file)
2071 {
2072         struct drm_i915_file_private *file_priv = file->driver_priv;
2073
2074         /* Check whether the file_priv has already selected one ring. */
2075         if ((int)file_priv->bsd_engine < 0)
2076                 file_priv->bsd_engine = atomic_fetch_xor(1,
2077                          &dev_priv->mm.bsd_engine_dispatch_index);
2078
2079         return file_priv->bsd_engine;
2080 }
2081
2082 #define I915_USER_RINGS (4)
2083
2084 static const enum intel_engine_id user_ring_map[I915_USER_RINGS + 1] = {
2085         [I915_EXEC_DEFAULT]     = RCS,
2086         [I915_EXEC_RENDER]      = RCS,
2087         [I915_EXEC_BLT]         = BCS,
2088         [I915_EXEC_BSD]         = VCS,
2089         [I915_EXEC_VEBOX]       = VECS
2090 };
2091
2092 static struct intel_engine_cs *
2093 eb_select_engine(struct drm_i915_private *dev_priv,
2094                  struct drm_file *file,
2095                  struct drm_i915_gem_execbuffer2 *args)
2096 {
2097         unsigned int user_ring_id = args->flags & I915_EXEC_RING_MASK;
2098         struct intel_engine_cs *engine;
2099
2100         if (user_ring_id > I915_USER_RINGS) {
2101                 DRM_DEBUG("execbuf with unknown ring: %u\n", user_ring_id);
2102                 return NULL;
2103         }
2104
2105         if ((user_ring_id != I915_EXEC_BSD) &&
2106             ((args->flags & I915_EXEC_BSD_MASK) != 0)) {
2107                 DRM_DEBUG("execbuf with non bsd ring but with invalid "
2108                           "bsd dispatch flags: %d\n", (int)(args->flags));
2109                 return NULL;
2110         }
2111
2112         if (user_ring_id == I915_EXEC_BSD && HAS_BSD2(dev_priv)) {
2113                 unsigned int bsd_idx = args->flags & I915_EXEC_BSD_MASK;
2114
2115                 if (bsd_idx == I915_EXEC_BSD_DEFAULT) {
2116                         bsd_idx = gen8_dispatch_bsd_engine(dev_priv, file);
2117                 } else if (bsd_idx >= I915_EXEC_BSD_RING1 &&
2118                            bsd_idx <= I915_EXEC_BSD_RING2) {
2119                         bsd_idx >>= I915_EXEC_BSD_SHIFT;
2120                         bsd_idx--;
2121                 } else {
2122                         DRM_DEBUG("execbuf with unknown bsd ring: %u\n",
2123                                   bsd_idx);
2124                         return NULL;
2125                 }
2126
2127                 engine = dev_priv->engine[_VCS(bsd_idx)];
2128         } else {
2129                 engine = dev_priv->engine[user_ring_map[user_ring_id]];
2130         }
2131
2132         if (!engine) {
2133                 DRM_DEBUG("execbuf with invalid ring: %u\n", user_ring_id);
2134                 return NULL;
2135         }
2136
2137         return engine;
2138 }
2139
2140 static void
2141 __free_fence_array(struct drm_syncobj **fences, unsigned int n)
2142 {
2143         while (n--)
2144                 drm_syncobj_put(ptr_mask_bits(fences[n], 2));
2145         kvfree(fences);
2146 }
2147
2148 static struct drm_syncobj **
2149 get_fence_array(struct drm_i915_gem_execbuffer2 *args,
2150                 struct drm_file *file)
2151 {
2152         const unsigned long nfences = args->num_cliprects;
2153         struct drm_i915_gem_exec_fence __user *user;
2154         struct drm_syncobj **fences;
2155         unsigned long n;
2156         int err;
2157
2158         if (!(args->flags & I915_EXEC_FENCE_ARRAY))
2159                 return NULL;
2160
2161         /* Check multiplication overflow for access_ok() and kvmalloc_array() */
2162         BUILD_BUG_ON(sizeof(size_t) > sizeof(unsigned long));
2163         if (nfences > min_t(unsigned long,
2164                             ULONG_MAX / sizeof(*user),
2165                             SIZE_MAX / sizeof(*fences)))
2166                 return ERR_PTR(-EINVAL);
2167
2168         user = u64_to_user_ptr(args->cliprects_ptr);
2169         if (!access_ok(user, nfences * sizeof(*user)))
2170                 return ERR_PTR(-EFAULT);
2171
2172         fences = kvmalloc_array(nfences, sizeof(*fences),
2173                                 __GFP_NOWARN | GFP_KERNEL);
2174         if (!fences)
2175                 return ERR_PTR(-ENOMEM);
2176
2177         for (n = 0; n < nfences; n++) {
2178                 struct drm_i915_gem_exec_fence fence;
2179                 struct drm_syncobj *syncobj;
2180
2181                 if (__copy_from_user(&fence, user++, sizeof(fence))) {
2182                         err = -EFAULT;
2183                         goto err;
2184                 }
2185
2186                 if (fence.flags & __I915_EXEC_FENCE_UNKNOWN_FLAGS) {
2187                         err = -EINVAL;
2188                         goto err;
2189                 }
2190
2191                 syncobj = drm_syncobj_find(file, fence.handle);
2192                 if (!syncobj) {
2193                         DRM_DEBUG("Invalid syncobj handle provided\n");
2194                         err = -ENOENT;
2195                         goto err;
2196                 }
2197
2198                 BUILD_BUG_ON(~(ARCH_KMALLOC_MINALIGN - 1) &
2199                              ~__I915_EXEC_FENCE_UNKNOWN_FLAGS);
2200
2201                 fences[n] = ptr_pack_bits(syncobj, fence.flags, 2);
2202         }
2203
2204         return fences;
2205
2206 err:
2207         __free_fence_array(fences, n);
2208         return ERR_PTR(err);
2209 }
2210
2211 static void
2212 put_fence_array(struct drm_i915_gem_execbuffer2 *args,
2213                 struct drm_syncobj **fences)
2214 {
2215         if (fences)
2216                 __free_fence_array(fences, args->num_cliprects);
2217 }
2218
2219 static int
2220 await_fence_array(struct i915_execbuffer *eb,
2221                   struct drm_syncobj **fences)
2222 {
2223         const unsigned int nfences = eb->args->num_cliprects;
2224         unsigned int n;
2225         int err;
2226
2227         for (n = 0; n < nfences; n++) {
2228                 struct drm_syncobj *syncobj;
2229                 struct dma_fence *fence;
2230                 unsigned int flags;
2231
2232                 syncobj = ptr_unpack_bits(fences[n], &flags, 2);
2233                 if (!(flags & I915_EXEC_FENCE_WAIT))
2234                         continue;
2235
2236                 fence = drm_syncobj_fence_get(syncobj);
2237                 if (!fence)
2238                         return -EINVAL;
2239
2240                 err = i915_request_await_dma_fence(eb->request, fence);
2241                 dma_fence_put(fence);
2242                 if (err < 0)
2243                         return err;
2244         }
2245
2246         return 0;
2247 }
2248
2249 static void
2250 signal_fence_array(struct i915_execbuffer *eb,
2251                    struct drm_syncobj **fences)
2252 {
2253         const unsigned int nfences = eb->args->num_cliprects;
2254         struct dma_fence * const fence = &eb->request->fence;
2255         unsigned int n;
2256
2257         for (n = 0; n < nfences; n++) {
2258                 struct drm_syncobj *syncobj;
2259                 unsigned int flags;
2260
2261                 syncobj = ptr_unpack_bits(fences[n], &flags, 2);
2262                 if (!(flags & I915_EXEC_FENCE_SIGNAL))
2263                         continue;
2264
2265                 drm_syncobj_replace_fence(syncobj, fence);
2266         }
2267 }
2268
2269 static int
2270 i915_gem_do_execbuffer(struct drm_device *dev,
2271                        struct drm_file *file,
2272                        struct drm_i915_gem_execbuffer2 *args,
2273                        struct drm_i915_gem_exec_object2 *exec,
2274                        struct drm_syncobj **fences)
2275 {
2276         struct i915_execbuffer eb;
2277         struct dma_fence *in_fence = NULL;
2278         struct sync_file *out_fence = NULL;
2279         intel_wakeref_t wakeref;
2280         int out_fence_fd = -1;
2281         int err;
2282
2283         BUILD_BUG_ON(__EXEC_INTERNAL_FLAGS & ~__I915_EXEC_ILLEGAL_FLAGS);
2284         BUILD_BUG_ON(__EXEC_OBJECT_INTERNAL_FLAGS &
2285                      ~__EXEC_OBJECT_UNKNOWN_FLAGS);
2286
2287         eb.i915 = to_i915(dev);
2288         eb.file = file;
2289         eb.args = args;
2290         if (DBG_FORCE_RELOC || !(args->flags & I915_EXEC_NO_RELOC))
2291                 args->flags |= __EXEC_HAS_RELOC;
2292
2293         eb.exec = exec;
2294         eb.vma = (struct i915_vma **)(exec + args->buffer_count + 1);
2295         eb.vma[0] = NULL;
2296         eb.flags = (unsigned int *)(eb.vma + args->buffer_count + 1);
2297
2298         eb.invalid_flags = __EXEC_OBJECT_UNKNOWN_FLAGS;
2299         reloc_cache_init(&eb.reloc_cache, eb.i915);
2300
2301         eb.buffer_count = args->buffer_count;
2302         eb.batch_start_offset = args->batch_start_offset;
2303         eb.batch_len = args->batch_len;
2304
2305         eb.batch_flags = 0;
2306         if (args->flags & I915_EXEC_SECURE) {
2307                 if (!drm_is_current_master(file) || !capable(CAP_SYS_ADMIN))
2308                     return -EPERM;
2309
2310                 eb.batch_flags |= I915_DISPATCH_SECURE;
2311         }
2312         if (args->flags & I915_EXEC_IS_PINNED)
2313                 eb.batch_flags |= I915_DISPATCH_PINNED;
2314
2315         eb.engine = eb_select_engine(eb.i915, file, args);
2316         if (!eb.engine)
2317                 return -EINVAL;
2318
2319         if (args->flags & I915_EXEC_FENCE_IN) {
2320                 in_fence = sync_file_get_fence(lower_32_bits(args->rsvd2));
2321                 if (!in_fence)
2322                         return -EINVAL;
2323         }
2324
2325         if (args->flags & I915_EXEC_FENCE_OUT) {
2326                 out_fence_fd = get_unused_fd_flags(O_CLOEXEC);
2327                 if (out_fence_fd < 0) {
2328                         err = out_fence_fd;
2329                         goto err_in_fence;
2330                 }
2331         }
2332
2333         err = eb_create(&eb);
2334         if (err)
2335                 goto err_out_fence;
2336
2337         GEM_BUG_ON(!eb.lut_size);
2338
2339         err = eb_select_context(&eb);
2340         if (unlikely(err))
2341                 goto err_destroy;
2342
2343         /*
2344          * Take a local wakeref for preparing to dispatch the execbuf as
2345          * we expect to access the hardware fairly frequently in the
2346          * process. Upon first dispatch, we acquire another prolonged
2347          * wakeref that we hold until the GPU has been idle for at least
2348          * 100ms.
2349          */
2350         wakeref = intel_runtime_pm_get(eb.i915);
2351
2352         err = i915_mutex_lock_interruptible(dev);
2353         if (err)
2354                 goto err_rpm;
2355
2356         err = eb_wait_for_ring(&eb); /* may temporarily drop struct_mutex */
2357         if (unlikely(err))
2358                 goto err_unlock;
2359
2360         err = eb_relocate(&eb);
2361         if (err) {
2362                 /*
2363                  * If the user expects the execobject.offset and
2364                  * reloc.presumed_offset to be an exact match,
2365                  * as for using NO_RELOC, then we cannot update
2366                  * the execobject.offset until we have completed
2367                  * relocation.
2368                  */
2369                 args->flags &= ~__EXEC_HAS_RELOC;
2370                 goto err_vma;
2371         }
2372
2373         if (unlikely(*eb.batch->exec_flags & EXEC_OBJECT_WRITE)) {
2374                 DRM_DEBUG("Attempting to use self-modifying batch buffer\n");
2375                 err = -EINVAL;
2376                 goto err_vma;
2377         }
2378         if (eb.batch_start_offset > eb.batch->size ||
2379             eb.batch_len > eb.batch->size - eb.batch_start_offset) {
2380                 DRM_DEBUG("Attempting to use out-of-bounds batch\n");
2381                 err = -EINVAL;
2382                 goto err_vma;
2383         }
2384
2385         if (eb_use_cmdparser(&eb)) {
2386                 struct i915_vma *vma;
2387
2388                 vma = eb_parse(&eb, drm_is_current_master(file));
2389                 if (IS_ERR(vma)) {
2390                         err = PTR_ERR(vma);
2391                         goto err_vma;
2392                 }
2393
2394                 if (vma) {
2395                         /*
2396                          * Batch parsed and accepted:
2397                          *
2398                          * Set the DISPATCH_SECURE bit to remove the NON_SECURE
2399                          * bit from MI_BATCH_BUFFER_START commands issued in
2400                          * the dispatch_execbuffer implementations. We
2401                          * specifically don't want that set on batches the
2402                          * command parser has accepted.
2403                          */
2404                         eb.batch_flags |= I915_DISPATCH_SECURE;
2405                         eb.batch_start_offset = 0;
2406                         eb.batch = vma;
2407                 }
2408         }
2409
2410         if (eb.batch_len == 0)
2411                 eb.batch_len = eb.batch->size - eb.batch_start_offset;
2412
2413         /*
2414          * snb/ivb/vlv conflate the "batch in ppgtt" bit with the "non-secure
2415          * batch" bit. Hence we need to pin secure batches into the global gtt.
2416          * hsw should have this fixed, but bdw mucks it up again. */
2417         if (eb.batch_flags & I915_DISPATCH_SECURE) {
2418                 struct i915_vma *vma;
2419
2420                 /*
2421                  * So on first glance it looks freaky that we pin the batch here
2422                  * outside of the reservation loop. But:
2423                  * - The batch is already pinned into the relevant ppgtt, so we
2424                  *   already have the backing storage fully allocated.
2425                  * - No other BO uses the global gtt (well contexts, but meh),
2426                  *   so we don't really have issues with multiple objects not
2427                  *   fitting due to fragmentation.
2428                  * So this is actually safe.
2429                  */
2430                 vma = i915_gem_object_ggtt_pin(eb.batch->obj, NULL, 0, 0, 0);
2431                 if (IS_ERR(vma)) {
2432                         err = PTR_ERR(vma);
2433                         goto err_vma;
2434                 }
2435
2436                 eb.batch = vma;
2437         }
2438
2439         /* All GPU relocation batches must be submitted prior to the user rq */
2440         GEM_BUG_ON(eb.reloc_cache.rq);
2441
2442         /* Allocate a request for this batch buffer nice and early. */
2443         eb.request = i915_request_alloc(eb.engine, eb.ctx);
2444         if (IS_ERR(eb.request)) {
2445                 err = PTR_ERR(eb.request);
2446                 goto err_batch_unpin;
2447         }
2448
2449         if (in_fence) {
2450                 err = i915_request_await_dma_fence(eb.request, in_fence);
2451                 if (err < 0)
2452                         goto err_request;
2453         }
2454
2455         if (fences) {
2456                 err = await_fence_array(&eb, fences);
2457                 if (err)
2458                         goto err_request;
2459         }
2460
2461         if (out_fence_fd != -1) {
2462                 out_fence = sync_file_create(&eb.request->fence);
2463                 if (!out_fence) {
2464                         err = -ENOMEM;
2465                         goto err_request;
2466                 }
2467         }
2468
2469         /*
2470          * Whilst this request exists, batch_obj will be on the
2471          * active_list, and so will hold the active reference. Only when this
2472          * request is retired will the the batch_obj be moved onto the
2473          * inactive_list and lose its active reference. Hence we do not need
2474          * to explicitly hold another reference here.
2475          */
2476         eb.request->batch = eb.batch;
2477
2478         trace_i915_request_queue(eb.request, eb.batch_flags);
2479         err = eb_submit(&eb);
2480 err_request:
2481         i915_request_add(eb.request);
2482         add_to_client(eb.request, file);
2483
2484         if (fences)
2485                 signal_fence_array(&eb, fences);
2486
2487         if (out_fence) {
2488                 if (err == 0) {
2489                         fd_install(out_fence_fd, out_fence->file);
2490                         args->rsvd2 &= GENMASK_ULL(31, 0); /* keep in-fence */
2491                         args->rsvd2 |= (u64)out_fence_fd << 32;
2492                         out_fence_fd = -1;
2493                 } else {
2494                         fput(out_fence->file);
2495                 }
2496         }
2497
2498 err_batch_unpin:
2499         if (eb.batch_flags & I915_DISPATCH_SECURE)
2500                 i915_vma_unpin(eb.batch);
2501 err_vma:
2502         if (eb.exec)
2503                 eb_release_vmas(&eb);
2504 err_unlock:
2505         mutex_unlock(&dev->struct_mutex);
2506 err_rpm:
2507         intel_runtime_pm_put(eb.i915, wakeref);
2508         i915_gem_context_put(eb.ctx);
2509 err_destroy:
2510         eb_destroy(&eb);
2511 err_out_fence:
2512         if (out_fence_fd != -1)
2513                 put_unused_fd(out_fence_fd);
2514 err_in_fence:
2515         dma_fence_put(in_fence);
2516         return err;
2517 }
2518
2519 static size_t eb_element_size(void)
2520 {
2521         return (sizeof(struct drm_i915_gem_exec_object2) +
2522                 sizeof(struct i915_vma *) +
2523                 sizeof(unsigned int));
2524 }
2525
2526 static bool check_buffer_count(size_t count)
2527 {
2528         const size_t sz = eb_element_size();
2529
2530         /*
2531          * When using LUT_HANDLE, we impose a limit of INT_MAX for the lookup
2532          * array size (see eb_create()). Otherwise, we can accept an array as
2533          * large as can be addressed (though use large arrays at your peril)!
2534          */
2535
2536         return !(count < 1 || count > INT_MAX || count > SIZE_MAX / sz - 1);
2537 }
2538
2539 /*
2540  * Legacy execbuffer just creates an exec2 list from the original exec object
2541  * list array and passes it to the real function.
2542  */
2543 int
2544 i915_gem_execbuffer_ioctl(struct drm_device *dev, void *data,
2545                           struct drm_file *file)
2546 {
2547         struct drm_i915_gem_execbuffer *args = data;
2548         struct drm_i915_gem_execbuffer2 exec2;
2549         struct drm_i915_gem_exec_object *exec_list = NULL;
2550         struct drm_i915_gem_exec_object2 *exec2_list = NULL;
2551         const size_t count = args->buffer_count;
2552         unsigned int i;
2553         int err;
2554
2555         if (!check_buffer_count(count)) {
2556                 DRM_DEBUG("execbuf2 with %zd buffers\n", count);
2557                 return -EINVAL;
2558         }
2559
2560         exec2.buffers_ptr = args->buffers_ptr;
2561         exec2.buffer_count = args->buffer_count;
2562         exec2.batch_start_offset = args->batch_start_offset;
2563         exec2.batch_len = args->batch_len;
2564         exec2.DR1 = args->DR1;
2565         exec2.DR4 = args->DR4;
2566         exec2.num_cliprects = args->num_cliprects;
2567         exec2.cliprects_ptr = args->cliprects_ptr;
2568         exec2.flags = I915_EXEC_RENDER;
2569         i915_execbuffer2_set_context_id(exec2, 0);
2570
2571         if (!i915_gem_check_execbuffer(&exec2))
2572                 return -EINVAL;
2573
2574         /* Copy in the exec list from userland */
2575         exec_list = kvmalloc_array(count, sizeof(*exec_list),
2576                                    __GFP_NOWARN | GFP_KERNEL);
2577         exec2_list = kvmalloc_array(count + 1, eb_element_size(),
2578                                     __GFP_NOWARN | GFP_KERNEL);
2579         if (exec_list == NULL || exec2_list == NULL) {
2580                 DRM_DEBUG("Failed to allocate exec list for %d buffers\n",
2581                           args->buffer_count);
2582                 kvfree(exec_list);
2583                 kvfree(exec2_list);
2584                 return -ENOMEM;
2585         }
2586         err = copy_from_user(exec_list,
2587                              u64_to_user_ptr(args->buffers_ptr),
2588                              sizeof(*exec_list) * count);
2589         if (err) {
2590                 DRM_DEBUG("copy %d exec entries failed %d\n",
2591                           args->buffer_count, err);
2592                 kvfree(exec_list);
2593                 kvfree(exec2_list);
2594                 return -EFAULT;
2595         }
2596
2597         for (i = 0; i < args->buffer_count; i++) {
2598                 exec2_list[i].handle = exec_list[i].handle;
2599                 exec2_list[i].relocation_count = exec_list[i].relocation_count;
2600                 exec2_list[i].relocs_ptr = exec_list[i].relocs_ptr;
2601                 exec2_list[i].alignment = exec_list[i].alignment;
2602                 exec2_list[i].offset = exec_list[i].offset;
2603                 if (INTEL_GEN(to_i915(dev)) < 4)
2604                         exec2_list[i].flags = EXEC_OBJECT_NEEDS_FENCE;
2605                 else
2606                         exec2_list[i].flags = 0;
2607         }
2608
2609         err = i915_gem_do_execbuffer(dev, file, &exec2, exec2_list, NULL);
2610         if (exec2.flags & __EXEC_HAS_RELOC) {
2611                 struct drm_i915_gem_exec_object __user *user_exec_list =
2612                         u64_to_user_ptr(args->buffers_ptr);
2613
2614                 /* Copy the new buffer offsets back to the user's exec list. */
2615                 for (i = 0; i < args->buffer_count; i++) {
2616                         if (!(exec2_list[i].offset & UPDATE))
2617                                 continue;
2618
2619                         exec2_list[i].offset =
2620                                 gen8_canonical_addr(exec2_list[i].offset & PIN_OFFSET_MASK);
2621                         exec2_list[i].offset &= PIN_OFFSET_MASK;
2622                         if (__copy_to_user(&user_exec_list[i].offset,
2623                                            &exec2_list[i].offset,
2624                                            sizeof(user_exec_list[i].offset)))
2625                                 break;
2626                 }
2627         }
2628
2629         kvfree(exec_list);
2630         kvfree(exec2_list);
2631         return err;
2632 }
2633
2634 int
2635 i915_gem_execbuffer2_ioctl(struct drm_device *dev, void *data,
2636                            struct drm_file *file)
2637 {
2638         struct drm_i915_gem_execbuffer2 *args = data;
2639         struct drm_i915_gem_exec_object2 *exec2_list;
2640         struct drm_syncobj **fences = NULL;
2641         const size_t count = args->buffer_count;
2642         int err;
2643
2644         if (!check_buffer_count(count)) {
2645                 DRM_DEBUG("execbuf2 with %zd buffers\n", count);
2646                 return -EINVAL;
2647         }
2648
2649         if (!i915_gem_check_execbuffer(args))
2650                 return -EINVAL;
2651
2652         /* Allocate an extra slot for use by the command parser */
2653         exec2_list = kvmalloc_array(count + 1, eb_element_size(),
2654                                     __GFP_NOWARN | GFP_KERNEL);
2655         if (exec2_list == NULL) {
2656                 DRM_DEBUG("Failed to allocate exec list for %zd buffers\n",
2657                           count);
2658                 return -ENOMEM;
2659         }
2660         if (copy_from_user(exec2_list,
2661                            u64_to_user_ptr(args->buffers_ptr),
2662                            sizeof(*exec2_list) * count)) {
2663                 DRM_DEBUG("copy %zd exec entries failed\n", count);
2664                 kvfree(exec2_list);
2665                 return -EFAULT;
2666         }
2667
2668         if (args->flags & I915_EXEC_FENCE_ARRAY) {
2669                 fences = get_fence_array(args, file);
2670                 if (IS_ERR(fences)) {
2671                         kvfree(exec2_list);
2672                         return PTR_ERR(fences);
2673                 }
2674         }
2675
2676         err = i915_gem_do_execbuffer(dev, file, args, exec2_list, fences);
2677
2678         /*
2679          * Now that we have begun execution of the batchbuffer, we ignore
2680          * any new error after this point. Also given that we have already
2681          * updated the associated relocations, we try to write out the current
2682          * object locations irrespective of any error.
2683          */
2684         if (args->flags & __EXEC_HAS_RELOC) {
2685                 struct drm_i915_gem_exec_object2 __user *user_exec_list =
2686                         u64_to_user_ptr(args->buffers_ptr);
2687                 unsigned int i;
2688
2689                 /* Copy the new buffer offsets back to the user's exec list. */
2690                 /*
2691                  * Note: count * sizeof(*user_exec_list) does not overflow,
2692                  * because we checked 'count' in check_buffer_count().
2693                  *
2694                  * And this range already got effectively checked earlier
2695                  * when we did the "copy_from_user()" above.
2696                  */
2697                 if (!user_access_begin(user_exec_list, count * sizeof(*user_exec_list)))
2698                         goto end_user;
2699
2700                 for (i = 0; i < args->buffer_count; i++) {
2701                         if (!(exec2_list[i].offset & UPDATE))
2702                                 continue;
2703
2704                         exec2_list[i].offset =
2705                                 gen8_canonical_addr(exec2_list[i].offset & PIN_OFFSET_MASK);
2706                         unsafe_put_user(exec2_list[i].offset,
2707                                         &user_exec_list[i].offset,
2708                                         end_user);
2709                 }
2710 end_user:
2711                 user_access_end();
2712         }
2713
2714         args->flags &= ~__I915_EXEC_UNKNOWN_FLAGS;
2715         put_fence_array(args, fences);
2716         kvfree(exec2_list);
2717         return err;
2718 }