blob: a6d5bab6f237e4678432237b3c7e534428da2942 [file] [log] [blame]
Chris Wilsonb47eb4a2010-08-07 11:01:23 +01001/*
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
David Howells760285e2012-10-02 18:01:07 +010029#include <drm/drmP.h>
David Howells760285e2012-10-02 18:01:07 +010030#include <drm/i915_drm.h>
Chris Wilson74e21ac2014-01-20 10:17:37 +000031
32#include "i915_drv.h"
33#include "intel_drv.h"
Chris Wilsondb53a302011-02-03 11:57:46 +000034#include "i915_trace.h"
Chris Wilsonb47eb4a2010-08-07 11:01:23 +010035
Chris Wilson80b204b2016-10-28 13:58:58 +010036static bool ggtt_is_idle(struct drm_i915_private *dev_priv)
Chris Wilson9332f3b2016-08-04 16:32:17 +010037{
Chris Wilson80b204b2016-10-28 13:58:58 +010038 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Chris Wilson9332f3b2016-08-04 16:32:17 +010039 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +053040 enum intel_engine_id id;
Chris Wilson9332f3b2016-08-04 16:32:17 +010041
Akash Goel3b3f1652016-10-13 22:44:48 +053042 for_each_engine(engine, dev_priv, id) {
Chris Wilson80b204b2016-10-28 13:58:58 +010043 struct intel_timeline *tl;
44
45 tl = &ggtt->base.timeline.engine[engine->id];
46 if (i915_gem_active_isset(&tl->last_request))
Chris Wilson9332f3b2016-08-04 16:32:17 +010047 return false;
48 }
49
50 return true;
51}
52
53static bool
Chris Wilson9a71e272016-12-22 08:36:29 +000054mark_free(struct drm_mm_scan *scan,
55 struct i915_vma *vma,
56 unsigned int flags,
57 struct list_head *unwind)
Chris Wilsonb47eb4a2010-08-07 11:01:23 +010058{
Chris Wilson20dfbde2016-08-04 16:32:30 +010059 if (i915_vma_is_pinned(vma))
Chris Wilson1b502472012-04-24 15:47:30 +010060 return false;
61
Daniel Vetterb93dab62013-08-26 11:23:47 +020062 if (WARN_ON(!list_empty(&vma->exec_list)))
63 return false;
64
Chris Wilson275f0392016-10-24 13:42:14 +010065 if (flags & PIN_NONFAULT && !list_empty(&vma->obj->userfault_link))
Chris Wilson82118872016-08-18 17:17:05 +010066 return false;
67
Ben Widawsky82a55ad2013-08-14 11:38:34 +020068 list_add(&vma->exec_list, unwind);
Chris Wilson9a71e272016-12-22 08:36:29 +000069 return drm_mm_scan_add_block(scan, &vma->node);
Chris Wilsonb47eb4a2010-08-07 11:01:23 +010070}
71
Daniel Vetterc2c1d492014-01-29 22:07:11 +010072/**
73 * i915_gem_evict_something - Evict vmas to make room for binding a new one
Daniel Vetterc2c1d492014-01-29 22:07:11 +010074 * @vm: address space to evict from
Daniel Vetter7838a632015-01-05 14:36:59 +010075 * @min_size: size of the desired free space
Daniel Vetterc2c1d492014-01-29 22:07:11 +010076 * @alignment: alignment constraint of the desired free space
77 * @cache_level: cache_level for the desired space
Daniel Vetter7838a632015-01-05 14:36:59 +010078 * @start: start (inclusive) of the range from which to evict objects
79 * @end: end (exclusive) of the range from which to evict objects
80 * @flags: additional flags to control the eviction algorithm
Daniel Vetterc2c1d492014-01-29 22:07:11 +010081 *
82 * This function will try to evict vmas until a free space satisfying the
83 * requirements is found. Callers must check first whether any such hole exists
84 * already before calling this function.
85 *
86 * This function is used by the object/vma binding code.
87 *
Daniel Vettereb0b44a2015-03-18 14:47:59 +010088 * Since this function is only used to free up virtual address space it only
89 * ignores pinned vmas, and not object where the backing storage itself is
90 * pinned. Hence obj->pages_pin_count does not protect against eviction.
91 *
Daniel Vetterc2c1d492014-01-29 22:07:11 +010092 * To clarify: This is for freeing up virtual address space, not for freeing
93 * memory in e.g. the shrinker.
94 */
Chris Wilsonb47eb4a2010-08-07 11:01:23 +010095int
Chris Wilsone522ac22016-08-04 16:32:18 +010096i915_gem_evict_something(struct i915_address_space *vm,
Chris Wilson2ffffd02016-08-04 16:32:22 +010097 u64 min_size, u64 alignment,
98 unsigned cache_level,
99 u64 start, u64 end,
Daniel Vetter1ec9e262014-02-14 14:01:11 +0100100 unsigned flags)
Chris Wilsonb47eb4a2010-08-07 11:01:23 +0100101{
Chris Wilsone522ac22016-08-04 16:32:18 +0100102 struct drm_i915_private *dev_priv = to_i915(vm->dev);
Chris Wilson9a71e272016-12-22 08:36:29 +0000103 struct drm_mm_scan scan;
Chris Wilson9332f3b2016-08-04 16:32:17 +0100104 struct list_head eviction_list;
105 struct list_head *phases[] = {
106 &vm->inactive_list,
107 &vm->active_list,
108 NULL,
109 }, **phase;
110 struct i915_vma *vma, *next;
111 int ret;
Chris Wilsonb47eb4a2010-08-07 11:01:23 +0100112
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100113 lockdep_assert_held(&vm->dev->struct_mutex);
Chris Wilsone522ac22016-08-04 16:32:18 +0100114 trace_i915_gem_evict(vm, min_size, alignment, flags);
Chris Wilsondb53a302011-02-03 11:57:46 +0000115
Chris Wilsoncd377ea2010-08-07 11:01:24 +0100116 /*
117 * The goal is to evict objects and amalgamate space in LRU order.
118 * The oldest idle objects reside on the inactive list, which is in
Chris Wilson9332f3b2016-08-04 16:32:17 +0100119 * retirement order. The next objects to retire are those in flight,
120 * on the active list, again in retirement order.
Chris Wilsoncd377ea2010-08-07 11:01:24 +0100121 *
122 * The retirement sequence is thus:
123 * 1. Inactive objects (already retired)
Chris Wilson9332f3b2016-08-04 16:32:17 +0100124 * 2. Active objects (will stall on unbinding)
Chris Wilsoncd377ea2010-08-07 11:01:24 +0100125 *
126 * On each list, the oldest objects lie at the HEAD with the freshest
127 * object on the TAIL.
128 */
Chris Wilson2c4b3892016-12-22 08:36:31 +0000129 drm_mm_scan_init_with_range(&scan, &vm->mm,
130 min_size, alignment, cache_level,
131 start, end);
Chris Wilsonb47eb4a2010-08-07 11:01:23 +0100132
Daniel Vetter1ec9e262014-02-14 14:01:11 +0100133 if (flags & PIN_NONBLOCK)
Chris Wilson9332f3b2016-08-04 16:32:17 +0100134 phases[1] = NULL;
Chris Wilson86a1ee22012-08-11 15:41:04 +0100135
Chris Wilson9332f3b2016-08-04 16:32:17 +0100136search_again:
137 INIT_LIST_HEAD(&eviction_list);
138 phase = phases;
139 do {
140 list_for_each_entry(vma, *phase, vm_link)
Chris Wilson9a71e272016-12-22 08:36:29 +0000141 if (mark_free(&scan, vma, flags, &eviction_list))
Chris Wilson9332f3b2016-08-04 16:32:17 +0100142 goto found;
143 } while (*++phase);
Chris Wilsoncd377ea2010-08-07 11:01:24 +0100144
Chris Wilsoncd377ea2010-08-07 11:01:24 +0100145 /* Nothing found, clean up and bail out! */
Chris Wilson9332f3b2016-08-04 16:32:17 +0100146 list_for_each_entry_safe(vma, next, &eviction_list, exec_list) {
Chris Wilson9a71e272016-12-22 08:36:29 +0000147 ret = drm_mm_scan_remove_block(&scan, &vma->node);
Chris Wilsoncd377ea2010-08-07 11:01:24 +0100148 BUG_ON(ret);
Chris Wilson092de6f2011-01-10 14:21:05 +0000149
Chris Wilson9332f3b2016-08-04 16:32:17 +0100150 INIT_LIST_HEAD(&vma->exec_list);
Chris Wilsoncd377ea2010-08-07 11:01:24 +0100151 }
152
Chris Wilsonad071ac2013-12-09 10:37:24 +0000153 /* Can we unpin some objects such as idle hw contents,
Chris Wilson9332f3b2016-08-04 16:32:17 +0100154 * or pending flips? But since only the GGTT has global entries
155 * such as scanouts, rinbuffers and contexts, we can skip the
156 * purge when inspecting per-process local address spaces.
Chris Wilsoncd377ea2010-08-07 11:01:24 +0100157 */
Chris Wilson9332f3b2016-08-04 16:32:17 +0100158 if (!i915_is_ggtt(vm) || flags & PIN_NONBLOCK)
Chris Wilson74e21ac2014-01-20 10:17:37 +0000159 return -ENOSPC;
Chris Wilsonad071ac2013-12-09 10:37:24 +0000160
Chris Wilson80b204b2016-10-28 13:58:58 +0100161 if (ggtt_is_idle(dev_priv)) {
Chris Wilson9332f3b2016-08-04 16:32:17 +0100162 /* If we still have pending pageflip completions, drop
163 * back to userspace to give our workqueues time to
164 * acquire our locks and unpin the old scanouts.
165 */
Chris Wilsone522ac22016-08-04 16:32:18 +0100166 return intel_has_pending_fb_unpin(vm->dev) ? -EAGAIN : -ENOSPC;
Chris Wilson74e21ac2014-01-20 10:17:37 +0000167 }
168
Chris Wilson9332f3b2016-08-04 16:32:17 +0100169 /* Not everything in the GGTT is tracked via vma (otherwise we
170 * could evict as required with minimal stalling) so we are forced
171 * to idle the GPU and explicitly retire outstanding requests in
172 * the hopes that we can then remove contexts and the like only
173 * bound by their active reference.
Chris Wilson74e21ac2014-01-20 10:17:37 +0000174 */
Chris Wilson9332f3b2016-08-04 16:32:17 +0100175 ret = i915_gem_switch_to_kernel_context(dev_priv);
176 if (ret)
177 return ret;
178
Chris Wilson22dd3bb2016-09-09 14:11:50 +0100179 ret = i915_gem_wait_for_idle(dev_priv,
180 I915_WAIT_INTERRUPTIBLE |
181 I915_WAIT_LOCKED);
Chris Wilson9332f3b2016-08-04 16:32:17 +0100182 if (ret)
183 return ret;
184
185 i915_gem_retire_requests(dev_priv);
186 goto search_again;
Chris Wilsoncd377ea2010-08-07 11:01:24 +0100187
188found:
Chris Wilsone39a0152010-09-29 22:23:05 +0100189 /* drm_mm doesn't allow any other other operations while
Chris Wilson9332f3b2016-08-04 16:32:17 +0100190 * scanning, therefore store to-be-evicted objects on a
191 * temporary list and take a reference for all before
192 * calling unbind (which may remove the active reference
193 * of any of our objects, thus corrupting the list).
194 */
195 list_for_each_entry_safe(vma, next, &eviction_list, exec_list) {
Chris Wilson9a71e272016-12-22 08:36:29 +0000196 if (drm_mm_scan_remove_block(&scan, &vma->node))
Chris Wilson20dfbde2016-08-04 16:32:30 +0100197 __i915_vma_pin(vma);
Chris Wilson9332f3b2016-08-04 16:32:17 +0100198 else
199 list_del_init(&vma->exec_list);
Chris Wilsoncd377ea2010-08-07 11:01:24 +0100200 }
201
Chris Wilsone39a0152010-09-29 22:23:05 +0100202 /* Unbinding will emit any required flushes */
203 while (!list_empty(&eviction_list)) {
Ben Widawsky82a55ad2013-08-14 11:38:34 +0200204 vma = list_first_entry(&eviction_list,
205 struct i915_vma,
Chris Wilson432e58e2010-11-25 19:32:06 +0000206 exec_list);
Ben Widawsky8637b402013-08-16 13:29:33 -0700207
Ben Widawsky8637b402013-08-16 13:29:33 -0700208 list_del_init(&vma->exec_list);
Chris Wilson20dfbde2016-08-04 16:32:30 +0100209 __i915_vma_unpin(vma);
Chris Wilsone39a0152010-09-29 22:23:05 +0100210 if (ret == 0)
Ben Widawsky82a55ad2013-08-14 11:38:34 +0200211 ret = i915_vma_unbind(vma);
Chris Wilsone39a0152010-09-29 22:23:05 +0100212 }
Chris Wilsone39a0152010-09-29 22:23:05 +0100213 return ret;
Chris Wilsonb47eb4a2010-08-07 11:01:23 +0100214}
215
Chris Wilson506a8e82015-12-08 11:55:07 +0000216int
217i915_gem_evict_for_vma(struct i915_vma *target)
218{
219 struct drm_mm_node *node, *next;
220
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100221 lockdep_assert_held(&target->vm->dev->struct_mutex);
222
Chris Wilson506a8e82015-12-08 11:55:07 +0000223 list_for_each_entry_safe(node, next,
224 &target->vm->mm.head_node.node_list,
225 node_list) {
226 struct i915_vma *vma;
227 int ret;
228
229 if (node->start + node->size <= target->node.start)
230 continue;
231 if (node->start >= target->node.start + target->node.size)
232 break;
233
234 vma = container_of(node, typeof(*vma), node);
235
Chris Wilson20dfbde2016-08-04 16:32:30 +0100236 if (i915_vma_is_pinned(vma)) {
237 if (!vma->exec_entry || i915_vma_pin_count(vma) > 1)
Chris Wilson506a8e82015-12-08 11:55:07 +0000238 /* Object is pinned for some other use */
239 return -EBUSY;
240
241 /* We need to evict a buffer in the same batch */
242 if (vma->exec_entry->flags & EXEC_OBJECT_PINNED)
243 /* Overlapping fixed objects in the same batch */
244 return -EINVAL;
245
246 return -ENOSPC;
247 }
248
249 ret = i915_vma_unbind(vma);
250 if (ret)
251 return ret;
252 }
253
254 return 0;
255}
256
Ben Widawsky68c8c172013-09-11 14:57:50 -0700257/**
Daniel Vetterc2c1d492014-01-29 22:07:11 +0100258 * i915_gem_evict_vm - Evict all idle vmas from a vm
Daniel Vetterc2c1d492014-01-29 22:07:11 +0100259 * @vm: Address space to cleanse
Ben Widawsky68c8c172013-09-11 14:57:50 -0700260 * @do_idle: Boolean directing whether to idle first.
261 *
Daniel Vetterc2c1d492014-01-29 22:07:11 +0100262 * This function evicts all idles vmas from a vm. If all unpinned vmas should be
263 * evicted the @do_idle needs to be set to true.
Ben Widawsky68c8c172013-09-11 14:57:50 -0700264 *
Daniel Vetterc2c1d492014-01-29 22:07:11 +0100265 * This is used by the execbuf code as a last-ditch effort to defragment the
266 * address space.
267 *
268 * To clarify: This is for freeing up virtual address space, not for freeing
269 * memory in e.g. the shrinker.
Ben Widawsky68c8c172013-09-11 14:57:50 -0700270 */
271int i915_gem_evict_vm(struct i915_address_space *vm, bool do_idle)
Ben Widawsky7b796122013-09-11 14:57:49 -0700272{
273 struct i915_vma *vma, *next;
274 int ret;
275
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100276 lockdep_assert_held(&vm->dev->struct_mutex);
Ben Widawskybcccff82013-09-24 09:57:56 -0700277 trace_i915_gem_evict_vm(vm);
278
Ben Widawsky7b796122013-09-11 14:57:49 -0700279 if (do_idle) {
Chris Wilson6e5a5be2016-06-24 14:55:57 +0100280 struct drm_i915_private *dev_priv = to_i915(vm->dev);
281
Chris Wilson883445d2016-06-24 14:55:58 +0100282 if (i915_is_ggtt(vm)) {
Chris Wilson945657b2016-07-15 14:56:19 +0100283 ret = i915_gem_switch_to_kernel_context(dev_priv);
Chris Wilson883445d2016-06-24 14:55:58 +0100284 if (ret)
285 return ret;
286 }
Ben Widawsky7b796122013-09-11 14:57:49 -0700287
Chris Wilson22dd3bb2016-09-09 14:11:50 +0100288 ret = i915_gem_wait_for_idle(dev_priv,
289 I915_WAIT_INTERRUPTIBLE |
290 I915_WAIT_LOCKED);
Chris Wilson6e5a5be2016-06-24 14:55:57 +0100291 if (ret)
292 return ret;
293
294 i915_gem_retire_requests(dev_priv);
Ben Widawskyb9b5dce2014-12-23 17:16:04 +0000295 WARN_ON(!list_empty(&vm->active_list));
Ben Widawsky7b796122013-09-11 14:57:49 -0700296 }
297
Chris Wilson1c7f4bc2016-02-26 11:03:19 +0000298 list_for_each_entry_safe(vma, next, &vm->inactive_list, vm_link)
Chris Wilson20dfbde2016-08-04 16:32:30 +0100299 if (!i915_vma_is_pinned(vma))
Ben Widawsky7b796122013-09-11 14:57:49 -0700300 WARN_ON(i915_vma_unbind(vma));
301
302 return 0;
303}