defconfig: exynos9610: Re-add dropped Wi-Fi AP options lost
[GitHub/LineageOS/android_kernel_motorola_exynos9610.git] / drivers / gpu / drm / i915 / i915_gem_evict.c
CommitLineData
b47eb4a2
CW
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.uuk>
26 *
27 */
28
760285e7 29#include <drm/drmP.h>
760285e7 30#include <drm/i915_drm.h>
74e21ac2
CW
31
32#include "i915_drv.h"
33#include "intel_drv.h"
db53a302 34#include "i915_trace.h"
b47eb4a2 35
99b169d3 36static bool ggtt_is_idle(struct drm_i915_private *i915)
9332f3b1 37{
99b169d3
CW
38 struct intel_engine_cs *engine;
39 enum intel_engine_id id;
9332f3b1 40
99b169d3
CW
41 if (i915->gt.active_requests)
42 return false;
80b204bc 43
99b169d3
CW
44 for_each_engine(engine, i915, id) {
45 if (engine->last_retired_context != i915->kernel_context)
46 return false;
47 }
9332f3b1 48
99b169d3 49 return true;
9332f3b1
CW
50}
51
2889caa9
CW
52static int ggtt_flush(struct drm_i915_private *i915)
53{
54 int err;
55
56 /* Not everything in the GGTT is tracked via vma (otherwise we
57 * could evict as required with minimal stalling) so we are forced
58 * to idle the GPU and explicitly retire outstanding requests in
59 * the hopes that we can then remove contexts and the like only
60 * bound by their active reference.
61 */
62 err = i915_gem_switch_to_kernel_context(i915);
63 if (err)
64 return err;
65
66 err = i915_gem_wait_for_idle(i915,
67 I915_WAIT_INTERRUPTIBLE |
68 I915_WAIT_LOCKED);
69 if (err)
70 return err;
71
72 return 0;
73}
74
cd377ea9 75static bool
9a71e277
CW
76mark_free(struct drm_mm_scan *scan,
77 struct i915_vma *vma,
78 unsigned int flags,
79 struct list_head *unwind)
b47eb4a2 80{
20dfbde4 81 if (i915_vma_is_pinned(vma))
1b50247a
CW
82 return false;
83
275f039d 84 if (flags & PIN_NONFAULT && !list_empty(&vma->obj->userfault_link))
82118877
CW
85 return false;
86
8c45cec4 87 list_add(&vma->evict_link, unwind);
9a71e277 88 return drm_mm_scan_add_block(scan, &vma->node);
b47eb4a2
CW
89}
90
c2c1d491
DV
91/**
92 * i915_gem_evict_something - Evict vmas to make room for binding a new one
c2c1d491 93 * @vm: address space to evict from
7838a63a 94 * @min_size: size of the desired free space
c2c1d491
DV
95 * @alignment: alignment constraint of the desired free space
96 * @cache_level: cache_level for the desired space
7838a63a
DV
97 * @start: start (inclusive) of the range from which to evict objects
98 * @end: end (exclusive) of the range from which to evict objects
99 * @flags: additional flags to control the eviction algorithm
c2c1d491
DV
100 *
101 * This function will try to evict vmas until a free space satisfying the
102 * requirements is found. Callers must check first whether any such hole exists
103 * already before calling this function.
104 *
105 * This function is used by the object/vma binding code.
106 *
eb0b44ad
DV
107 * Since this function is only used to free up virtual address space it only
108 * ignores pinned vmas, and not object where the backing storage itself is
109 * pinned. Hence obj->pages_pin_count does not protect against eviction.
110 *
c2c1d491
DV
111 * To clarify: This is for freeing up virtual address space, not for freeing
112 * memory in e.g. the shrinker.
113 */
b47eb4a2 114int
e522ac23 115i915_gem_evict_something(struct i915_address_space *vm,
2ffffd0f
CW
116 u64 min_size, u64 alignment,
117 unsigned cache_level,
118 u64 start, u64 end,
1ec9e26d 119 unsigned flags)
b47eb4a2 120{
49d73912 121 struct drm_i915_private *dev_priv = vm->i915;
9a71e277 122 struct drm_mm_scan scan;
9332f3b1
CW
123 struct list_head eviction_list;
124 struct list_head *phases[] = {
125 &vm->inactive_list,
126 &vm->active_list,
127 NULL,
128 }, **phase;
129 struct i915_vma *vma, *next;
3fa489da 130 struct drm_mm_node *node;
4e64e553 131 enum drm_mm_insert_mode mode;
9332f3b1 132 int ret;
b47eb4a2 133
49d73912 134 lockdep_assert_held(&vm->i915->drm.struct_mutex);
e522ac23 135 trace_i915_gem_evict(vm, min_size, alignment, flags);
db53a302 136
cd377ea9
CW
137 /*
138 * The goal is to evict objects and amalgamate space in LRU order.
139 * The oldest idle objects reside on the inactive list, which is in
9332f3b1
CW
140 * retirement order. The next objects to retire are those in flight,
141 * on the active list, again in retirement order.
cd377ea9
CW
142 *
143 * The retirement sequence is thus:
144 * 1. Inactive objects (already retired)
9332f3b1 145 * 2. Active objects (will stall on unbinding)
cd377ea9
CW
146 *
147 * On each list, the oldest objects lie at the HEAD with the freshest
148 * object on the TAIL.
149 */
4e64e553
CW
150 mode = DRM_MM_INSERT_BEST;
151 if (flags & PIN_HIGH)
152 mode = DRM_MM_INSERT_HIGH;
153 if (flags & PIN_MAPPABLE)
154 mode = DRM_MM_INSERT_LOW;
2c4b3895
CW
155 drm_mm_scan_init_with_range(&scan, &vm->mm,
156 min_size, alignment, cache_level,
4e64e553 157 start, end, mode);
cd377ea9 158
99b169d3
CW
159 /*
160 * Retire before we search the active list. Although we have
7155b057
CW
161 * reasonable accuracy in our retirement lists, we may have
162 * a stray pin (preventing eviction) that can only be resolved by
163 * retiring.
164 */
165 if (!(flags & PIN_NONBLOCK))
166 i915_gem_retire_requests(dev_priv);
167 else
9332f3b1 168 phases[1] = NULL;
b47eb4a2 169
9332f3b1
CW
170search_again:
171 INIT_LIST_HEAD(&eviction_list);
172 phase = phases;
173 do {
174 list_for_each_entry(vma, *phase, vm_link)
9a71e277 175 if (mark_free(&scan, vma, flags, &eviction_list))
9332f3b1
CW
176 goto found;
177 } while (*++phase);
cd377ea9
CW
178
179 /* Nothing found, clean up and bail out! */
8c45cec4 180 list_for_each_entry_safe(vma, next, &eviction_list, evict_link) {
9a71e277 181 ret = drm_mm_scan_remove_block(&scan, &vma->node);
cd377ea9
CW
182 BUG_ON(ret);
183 }
184
99b169d3
CW
185 /*
186 * Can we unpin some objects such as idle hw contents,
9332f3b1
CW
187 * or pending flips? But since only the GGTT has global entries
188 * such as scanouts, rinbuffers and contexts, we can skip the
189 * purge when inspecting per-process local address spaces.
cd377ea9 190 */
9332f3b1 191 if (!i915_is_ggtt(vm) || flags & PIN_NONBLOCK)
74e21ac2 192 return -ENOSPC;
ad071acb 193
99b169d3
CW
194 /*
195 * Not everything in the GGTT is tracked via VMA using
196 * i915_vma_move_to_active(), otherwise we could evict as required
197 * with minimal stalling. Instead we are forced to idle the GPU and
198 * explicitly retire outstanding requests which will then remove
199 * the pinning for active objects such as contexts and ring,
200 * enabling us to evict them on the next iteration.
201 *
202 * To ensure that all user contexts are evictable, we perform
203 * a switch to the perma-pinned kernel context. This all also gives
204 * us a termination condition, when the last retired context is
205 * the kernel's there is no more we can evict.
206 */
207 if (!ggtt_is_idle(dev_priv)) {
208 ret = ggtt_flush(dev_priv);
209 if (ret)
210 return ret;
74e21ac2 211
99b169d3
CW
212 goto search_again;
213 }
9332f3b1 214
99b169d3
CW
215 /*
216 * If we still have pending pageflip completions, drop
217 * back to userspace to give our workqueues time to
218 * acquire our locks and unpin the old scanouts.
219 */
220 return intel_has_pending_fb_unpin(dev_priv) ? -EAGAIN : -ENOSPC;
cd377ea9
CW
221
222found:
e39a0150 223 /* drm_mm doesn't allow any other other operations while
9332f3b1
CW
224 * scanning, therefore store to-be-evicted objects on a
225 * temporary list and take a reference for all before
226 * calling unbind (which may remove the active reference
227 * of any of our objects, thus corrupting the list).
228 */
8c45cec4 229 list_for_each_entry_safe(vma, next, &eviction_list, evict_link) {
9a71e277 230 if (drm_mm_scan_remove_block(&scan, &vma->node))
20dfbde4 231 __i915_vma_pin(vma);
9332f3b1 232 else
8c45cec4 233 list_del(&vma->evict_link);
cd377ea9 234 }
b47eb4a2 235
cd377ea9 236 /* Unbinding will emit any required flushes */
121dfbb2 237 ret = 0;
8c45cec4 238 list_for_each_entry_safe(vma, next, &eviction_list, evict_link) {
20dfbde4 239 __i915_vma_unpin(vma);
e39a0150 240 if (ret == 0)
82a55ad1 241 ret = i915_vma_unbind(vma);
b47eb4a2 242 }
3fa489da
CW
243
244 while (ret == 0 && (node = drm_mm_scan_color_evict(&scan))) {
245 vma = container_of(node, struct i915_vma, node);
246 ret = i915_vma_unbind(vma);
247 }
248
e39a0150 249 return ret;
b47eb4a2
CW
250}
251
172ae5b4
CW
252/**
253 * i915_gem_evict_for_vma - Evict vmas to make room for binding a new one
625d988a
CW
254 * @vm: address space to evict from
255 * @target: range (and color) to evict for
172ae5b4
CW
256 * @flags: additional flags to control the eviction algorithm
257 *
258 * This function will try to evict vmas that overlap the target node.
259 *
260 * To clarify: This is for freeing up virtual address space, not for freeing
261 * memory in e.g. the shrinker.
262 */
625d988a
CW
263int i915_gem_evict_for_node(struct i915_address_space *vm,
264 struct drm_mm_node *target,
265 unsigned int flags)
506a8e87 266{
172ae5b4
CW
267 LIST_HEAD(eviction_list);
268 struct drm_mm_node *node;
625d988a
CW
269 u64 start = target->start;
270 u64 end = start + target->size;
172ae5b4
CW
271 struct i915_vma *vma, *next;
272 bool check_color;
273 int ret = 0;
506a8e87 274
625d988a 275 lockdep_assert_held(&vm->i915->drm.struct_mutex);
a6508ded
CW
276 GEM_BUG_ON(!IS_ALIGNED(start, I915_GTT_PAGE_SIZE));
277 GEM_BUG_ON(!IS_ALIGNED(end, I915_GTT_PAGE_SIZE));
278
625d988a 279 trace_i915_gem_evict_node(vm, target, flags);
172ae5b4 280
7155b057
CW
281 /* Retire before we search the active list. Although we have
282 * reasonable accuracy in our retirement lists, we may have
283 * a stray pin (preventing eviction) that can only be resolved by
284 * retiring.
285 */
286 if (!(flags & PIN_NONBLOCK))
625d988a 287 i915_gem_retire_requests(vm->i915);
7155b057 288
625d988a 289 check_color = vm->mm.color_adjust;
172ae5b4
CW
290 if (check_color) {
291 /* Expand search to cover neighbouring guard pages (or lack!) */
381b943b 292 if (start)
f51455d4 293 start -= I915_GTT_PAGE_SIZE;
a6508ded
CW
294
295 /* Always look at the page afterwards to avoid the end-of-GTT */
296 end += I915_GTT_PAGE_SIZE;
172ae5b4 297 }
a6508ded 298 GEM_BUG_ON(start >= end);
4c7d62c6 299
625d988a 300 drm_mm_for_each_node_in_range(node, &vm->mm, start, end) {
172ae5b4
CW
301 /* If we find any non-objects (!vma), we cannot evict them */
302 if (node->color == I915_COLOR_UNEVICTABLE) {
303 ret = -ENOSPC;
506a8e87 304 break;
172ae5b4 305 }
506a8e87 306
a6508ded 307 GEM_BUG_ON(!node->allocated);
506a8e87
CW
308 vma = container_of(node, typeof(*vma), node);
309
172ae5b4
CW
310 /* If we are using coloring to insert guard pages between
311 * different cache domains within the address space, we have
312 * to check whether the objects on either side of our range
313 * abutt and conflict. If they are in conflict, then we evict
314 * those as well to make room for our guard pages.
315 */
316 if (check_color) {
fe65cbdb
MA
317 if (node->start + node->size == target->start) {
318 if (node->color == target->color)
172ae5b4
CW
319 continue;
320 }
fe65cbdb
MA
321 if (node->start == target->start + target->size) {
322 if (node->color == target->color)
172ae5b4
CW
323 continue;
324 }
325 }
506a8e87 326
172ae5b4
CW
327 if (flags & PIN_NONBLOCK &&
328 (i915_vma_is_pinned(vma) || i915_vma_is_active(vma))) {
329 ret = -ENOSPC;
330 break;
331 }
506a8e87 332
172ae5b4 333 /* Overlap of objects in the same batch? */
d55495b4 334 if (i915_vma_is_pinned(vma)) {
172ae5b4 335 ret = -ENOSPC;
c7c6e46f
CW
336 if (vma->exec_flags &&
337 *vma->exec_flags & EXEC_OBJECT_PINNED)
172ae5b4
CW
338 ret = -EINVAL;
339 break;
506a8e87
CW
340 }
341
172ae5b4
CW
342 /* Never show fear in the face of dragons!
343 *
344 * We cannot directly remove this node from within this
345 * iterator and as with i915_gem_evict_something() we employ
346 * the vma pin_count in order to prevent the action of
347 * unbinding one vma from freeing (by dropping its active
348 * reference) another in our eviction list.
349 */
350 __i915_vma_pin(vma);
8c45cec4 351 list_add(&vma->evict_link, &eviction_list);
172ae5b4
CW
352 }
353
8c45cec4 354 list_for_each_entry_safe(vma, next, &eviction_list, evict_link) {
172ae5b4
CW
355 __i915_vma_unpin(vma);
356 if (ret == 0)
357 ret = i915_vma_unbind(vma);
506a8e87
CW
358 }
359
172ae5b4 360 return ret;
506a8e87
CW
361}
362
68c8c17f 363/**
c2c1d491 364 * i915_gem_evict_vm - Evict all idle vmas from a vm
c2c1d491 365 * @vm: Address space to cleanse
68c8c17f 366 *
2889caa9 367 * This function evicts all vmas from a vm.
68c8c17f 368 *
c2c1d491
DV
369 * This is used by the execbuf code as a last-ditch effort to defragment the
370 * address space.
371 *
372 * To clarify: This is for freeing up virtual address space, not for freeing
373 * memory in e.g. the shrinker.
68c8c17f 374 */
2889caa9 375int i915_gem_evict_vm(struct i915_address_space *vm)
7b796122 376{
2889caa9
CW
377 struct list_head *phases[] = {
378 &vm->inactive_list,
379 &vm->active_list,
380 NULL
381 }, **phase;
382 struct list_head eviction_list;
7b796122
BW
383 struct i915_vma *vma, *next;
384 int ret;
385
49d73912 386 lockdep_assert_held(&vm->i915->drm.struct_mutex);
bcccff84
BW
387 trace_i915_gem_evict_vm(vm);
388
2889caa9
CW
389 /* Switch back to the default context in order to unpin
390 * the existing context objects. However, such objects only
391 * pin themselves inside the global GTT and performing the
392 * switch otherwise is ineffective.
393 */
394 if (i915_is_ggtt(vm)) {
395 ret = ggtt_flush(vm->i915);
7b796122
BW
396 if (ret)
397 return ret;
7b796122
BW
398 }
399
2889caa9
CW
400 INIT_LIST_HEAD(&eviction_list);
401 phase = phases;
402 do {
403 list_for_each_entry(vma, *phase, vm_link) {
404 if (i915_vma_is_pinned(vma))
405 continue;
7b796122 406
2889caa9
CW
407 __i915_vma_pin(vma);
408 list_add(&vma->evict_link, &eviction_list);
409 }
410 } while (*++phase);
411
412 ret = 0;
413 list_for_each_entry_safe(vma, next, &eviction_list, evict_link) {
414 __i915_vma_unpin(vma);
415 if (ret == 0)
416 ret = i915_vma_unbind(vma);
417 }
418 return ret;
7b796122 419}
f40a7b75
CW
420
421#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
422#include "selftests/i915_gem_evict.c"
423#endif