1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29#include <drm/drmP.h>
30#include <drm/i915_drm.h>
31
32#include "i915_drv.h"
33#include "intel_drv.h"
34#include "i915_trace.h"
35
36static bool ggtt_is_idle(struct drm_i915_private *i915)
37{
38 struct intel_engine_cs *engine;
39 enum intel_engine_id id;
40
41 if (i915->gt.active_requests)
42 return false;
43
44 for_each_engine(engine, i915, id) {
45 if (engine->last_retired_context != i915->kernel_context)
46 return false;
47 }
48
49 return true;
50}
51
52static int ggtt_flush(struct drm_i915_private *i915)
53{
54 int err;
55
56
57
58
59
60
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
75static bool
76mark_free(struct drm_mm_scan *scan,
77 struct i915_vma *vma,
78 unsigned int flags,
79 struct list_head *unwind)
80{
81 if (i915_vma_is_pinned(vma))
82 return false;
83
84 if (flags & PIN_NONFAULT && !list_empty(&vma->obj->userfault_link))
85 return false;
86
87 list_add(&vma->evict_link, unwind);
88 return drm_mm_scan_add_block(scan, &vma->node);
89}
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114int
115i915_gem_evict_something(struct i915_address_space *vm,
116 u64 min_size, u64 alignment,
117 unsigned cache_level,
118 u64 start, u64 end,
119 unsigned flags)
120{
121 struct drm_i915_private *dev_priv = vm->i915;
122 struct drm_mm_scan scan;
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;
130 struct drm_mm_node *node;
131 enum drm_mm_insert_mode mode;
132 int ret;
133
134 lockdep_assert_held(&vm->i915->drm.struct_mutex);
135 trace_i915_gem_evict(vm, min_size, alignment, flags);
136
137
138
139
140
141
142
143
144
145
146
147
148
149
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;
155 drm_mm_scan_init_with_range(&scan, &vm->mm,
156 min_size, alignment, cache_level,
157 start, end, mode);
158
159
160
161
162
163
164
165 if (!(flags & PIN_NONBLOCK))
166 i915_gem_retire_requests(dev_priv);
167 else
168 phases[1] = NULL;
169
170search_again:
171 INIT_LIST_HEAD(&eviction_list);
172 phase = phases;
173 do {
174 list_for_each_entry(vma, *phase, vm_link)
175 if (mark_free(&scan, vma, flags, &eviction_list))
176 goto found;
177 } while (*++phase);
178
179
180 list_for_each_entry_safe(vma, next, &eviction_list, evict_link) {
181 ret = drm_mm_scan_remove_block(&scan, &vma->node);
182 BUG_ON(ret);
183 }
184
185
186
187
188
189
190
191 if (!i915_is_ggtt(vm) || flags & PIN_NONBLOCK)
192 return -ENOSPC;
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207 if (!ggtt_is_idle(dev_priv)) {
208 ret = ggtt_flush(dev_priv);
209 if (ret)
210 return ret;
211
212 goto search_again;
213 }
214
215
216
217
218
219
220 return intel_has_pending_fb_unpin(dev_priv) ? -EAGAIN : -ENOSPC;
221
222found:
223
224
225
226
227
228
229 list_for_each_entry_safe(vma, next, &eviction_list, evict_link) {
230 if (drm_mm_scan_remove_block(&scan, &vma->node))
231 __i915_vma_pin(vma);
232 else
233 list_del(&vma->evict_link);
234 }
235
236
237 ret = 0;
238 list_for_each_entry_safe(vma, next, &eviction_list, evict_link) {
239 __i915_vma_unpin(vma);
240 if (ret == 0)
241 ret = i915_vma_unbind(vma);
242 }
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
249 return ret;
250}
251
252
253
254
255
256
257
258
259
260
261
262
263int i915_gem_evict_for_node(struct i915_address_space *vm,
264 struct drm_mm_node *target,
265 unsigned int flags)
266{
267 LIST_HEAD(eviction_list);
268 struct drm_mm_node *node;
269 u64 start = target->start;
270 u64 end = start + target->size;
271 struct i915_vma *vma, *next;
272 bool check_color;
273 int ret = 0;
274
275 lockdep_assert_held(&vm->i915->drm.struct_mutex);
276 GEM_BUG_ON(!IS_ALIGNED(start, I915_GTT_PAGE_SIZE));
277 GEM_BUG_ON(!IS_ALIGNED(end, I915_GTT_PAGE_SIZE));
278
279 trace_i915_gem_evict_node(vm, target, flags);
280
281
282
283
284
285
286 if (!(flags & PIN_NONBLOCK))
287 i915_gem_retire_requests(vm->i915);
288
289 check_color = vm->mm.color_adjust;
290 if (check_color) {
291
292 if (start)
293 start -= I915_GTT_PAGE_SIZE;
294
295
296 end += I915_GTT_PAGE_SIZE;
297 }
298 GEM_BUG_ON(start >= end);
299
300 drm_mm_for_each_node_in_range(node, &vm->mm, start, end) {
301
302 if (node->color == I915_COLOR_UNEVICTABLE) {
303 ret = -ENOSPC;
304 break;
305 }
306
307 GEM_BUG_ON(!node->allocated);
308 vma = container_of(node, typeof(*vma), node);
309
310
311
312
313
314
315
316 if (check_color) {
317 if (node->start + node->size == target->start) {
318 if (node->color == target->color)
319 continue;
320 }
321 if (node->start == target->start + target->size) {
322 if (node->color == target->color)
323 continue;
324 }
325 }
326
327 if (flags & PIN_NONBLOCK &&
328 (i915_vma_is_pinned(vma) || i915_vma_is_active(vma))) {
329 ret = -ENOSPC;
330 break;
331 }
332
333
334 if (i915_vma_is_pinned(vma)) {
335 ret = -ENOSPC;
336 if (vma->exec_flags &&
337 *vma->exec_flags & EXEC_OBJECT_PINNED)
338 ret = -EINVAL;
339 break;
340 }
341
342
343
344
345
346
347
348
349
350 __i915_vma_pin(vma);
351 list_add(&vma->evict_link, &eviction_list);
352 }
353
354 list_for_each_entry_safe(vma, next, &eviction_list, evict_link) {
355 __i915_vma_unpin(vma);
356 if (ret == 0)
357 ret = i915_vma_unbind(vma);
358 }
359
360 return ret;
361}
362
363
364
365
366
367
368
369
370
371
372
373
374
375int i915_gem_evict_vm(struct i915_address_space *vm)
376{
377 struct list_head *phases[] = {
378 &vm->inactive_list,
379 &vm->active_list,
380 NULL
381 }, **phase;
382 struct list_head eviction_list;
383 struct i915_vma *vma, *next;
384 int ret;
385
386 lockdep_assert_held(&vm->i915->drm.struct_mutex);
387 trace_i915_gem_evict_vm(vm);
388
389
390
391
392
393
394 if (i915_is_ggtt(vm)) {
395 ret = ggtt_flush(vm->i915);
396 if (ret)
397 return ret;
398 }
399
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;
406
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;
419}
420
421#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
422#include "selftests/i915_gem_evict.c"
423#endif
424