1 // SPDX-License-Identifier: MIT
2 /*
3 * Copyright © 2021 Intel Corporation
4 */
5
6 #include <linux/shmem_fs.h>
7
8 #include <linux/gpu_buddy.h>
9 #include <drm/drm_print.h>
10 #include <drm/ttm/ttm_placement.h>
11 #include <drm/ttm/ttm_tt.h>
12
13 #include "i915_drv.h"
14 #include "i915_jiffies.h"
15 #include "i915_ttm_buddy_manager.h"
16 #include "intel_memory_region.h"
17 #include "intel_region_ttm.h"
18
19 #include "gem/i915_gem_mman.h"
20 #include "gem/i915_gem_object.h"
21 #include "gem/i915_gem_region.h"
22 #include "gem/i915_gem_ttm.h"
23 #include "gem/i915_gem_ttm_move.h"
24 #include "gem/i915_gem_ttm_pm.h"
25 #include "gt/intel_gpu_commands.h"
26
27 #define I915_TTM_PRIO_PURGE 0
28 #define I915_TTM_PRIO_NO_PAGES 1
29 #define I915_TTM_PRIO_HAS_PAGES 2
30 #define I915_TTM_PRIO_NEEDS_CPU_ACCESS 3
31
32 /*
33 * Size of struct ttm_place vector in on-stack struct ttm_placement allocs
34 */
35 #define I915_TTM_MAX_PLACEMENTS INTEL_REGION_UNKNOWN
36
37 /**
38 * struct i915_ttm_tt - TTM page vector with additional private information
39 * @ttm: The base TTM page vector.
40 * @dev: The struct device used for dma mapping and unmapping.
41 * @cached_rsgt: The cached scatter-gather table.
42 * @is_shmem: Set if using shmem.
43 * @filp: The shmem file, if using shmem backend.
44 *
45 * Note that DMA may be going on right up to the point where the page-
46 * vector is unpopulated in delayed destroy. Hence keep the
47 * scatter-gather table mapped and cached up to that point. This is
48 * different from the cached gem object io scatter-gather table which
49 * doesn't have an associated dma mapping.
50 */
51 struct i915_ttm_tt {
52 struct ttm_tt ttm;
53 struct device *dev;
54 struct i915_refct_sgt cached_rsgt;
55
56 bool is_shmem;
57 struct file *filp;
58 };
59
60 static const struct ttm_place sys_placement_flags = {
61 .fpfn = 0,
62 .lpfn = 0,
63 .mem_type = I915_PL_SYSTEM,
64 .flags = 0,
65 };
66
67 static struct ttm_placement i915_sys_placement = {
68 .num_placement = 1,
69 .placement = &sys_placement_flags,
70 };
71
72 /**
73 * i915_ttm_sys_placement - Return the struct ttm_placement to be
74 * used for an object in system memory.
75 *
76 * Rather than making the struct extern, use this
77 * function.
78 *
79 * Return: A pointer to a static variable for sys placement.
80 */
i915_ttm_sys_placement(void)81 struct ttm_placement *i915_ttm_sys_placement(void)
82 {
83 return &i915_sys_placement;
84 }
85
i915_ttm_err_to_gem(int err)86 static int i915_ttm_err_to_gem(int err)
87 {
88 /* Fastpath */
89 if (likely(!err))
90 return 0;
91
92 switch (err) {
93 case -EBUSY:
94 /*
95 * TTM likes to convert -EDEADLK to -EBUSY, and wants us to
96 * restart the operation, since we don't record the contending
97 * lock. We use -EAGAIN to restart.
98 */
99 return -EAGAIN;
100 case -ENOSPC:
101 /*
102 * Memory type / region is full, and we can't evict.
103 * Except possibly system, that returns -ENOMEM;
104 */
105 return -ENXIO;
106 default:
107 break;
108 }
109
110 return err;
111 }
112
113 static enum ttm_caching
i915_ttm_select_tt_caching(const struct drm_i915_gem_object * obj)114 i915_ttm_select_tt_caching(const struct drm_i915_gem_object *obj)
115 {
116 /*
117 * Objects only allowed in system get cached cpu-mappings, or when
118 * evicting lmem-only buffers to system for swapping. Other objects get
119 * WC mapping for now. Even if in system.
120 */
121 if (obj->mm.n_placements <= 1)
122 return ttm_cached;
123
124 return ttm_write_combined;
125 }
126
127 static void
i915_ttm_place_from_region(const struct intel_memory_region * mr,struct ttm_place * place,resource_size_t offset,resource_size_t size,unsigned int flags)128 i915_ttm_place_from_region(const struct intel_memory_region *mr,
129 struct ttm_place *place,
130 resource_size_t offset,
131 resource_size_t size,
132 unsigned int flags)
133 {
134 memset(place, 0, sizeof(*place));
135 place->mem_type = intel_region_to_ttm_type(mr);
136
137 if (mr->type == INTEL_MEMORY_SYSTEM)
138 return;
139
140 if (flags & I915_BO_ALLOC_CONTIGUOUS)
141 place->flags |= TTM_PL_FLAG_CONTIGUOUS;
142 if (offset != I915_BO_INVALID_OFFSET) {
143 WARN_ON(overflows_type(offset >> PAGE_SHIFT, place->fpfn));
144 place->fpfn = offset >> PAGE_SHIFT;
145 WARN_ON(overflows_type(place->fpfn + (size >> PAGE_SHIFT), place->lpfn));
146 place->lpfn = place->fpfn + (size >> PAGE_SHIFT);
147 } else if (resource_size(&mr->io) && resource_size(&mr->io) < mr->total) {
148 if (flags & I915_BO_ALLOC_GPU_ONLY) {
149 place->flags |= TTM_PL_FLAG_TOPDOWN;
150 } else {
151 place->fpfn = 0;
152 WARN_ON(overflows_type(resource_size(&mr->io) >> PAGE_SHIFT, place->lpfn));
153 place->lpfn = resource_size(&mr->io) >> PAGE_SHIFT;
154 }
155 }
156 }
157
158 static void
i915_ttm_placement_from_obj(const struct drm_i915_gem_object * obj,struct ttm_place * places,struct ttm_placement * placement)159 i915_ttm_placement_from_obj(const struct drm_i915_gem_object *obj,
160 struct ttm_place *places,
161 struct ttm_placement *placement)
162 {
163 unsigned int num_allowed = obj->mm.n_placements;
164 unsigned int flags = obj->flags;
165 unsigned int i;
166
167 i915_ttm_place_from_region(num_allowed ? obj->mm.placements[0] :
168 obj->mm.region, &places[0], obj->bo_offset,
169 obj->base.size, flags);
170
171 /* Cache this on object? */
172 for (i = 0; i < num_allowed; ++i) {
173 i915_ttm_place_from_region(obj->mm.placements[i],
174 &places[i + 1], obj->bo_offset,
175 obj->base.size, flags);
176 places[i + 1].flags |= TTM_PL_FLAG_FALLBACK;
177 }
178
179 placement->num_placement = num_allowed + 1;
180 placement->placement = places;
181 }
182
i915_ttm_tt_shmem_populate(struct ttm_device * bdev,struct ttm_tt * ttm,struct ttm_operation_ctx * ctx)183 static int i915_ttm_tt_shmem_populate(struct ttm_device *bdev,
184 struct ttm_tt *ttm,
185 struct ttm_operation_ctx *ctx)
186 {
187 struct drm_i915_private *i915 = container_of(bdev, typeof(*i915), bdev);
188 struct intel_memory_region *mr = i915->mm.regions[INTEL_MEMORY_SYSTEM];
189 struct i915_ttm_tt *i915_tt = container_of(ttm, typeof(*i915_tt), ttm);
190 const unsigned int max_segment = i915_sg_segment_size(i915->drm.dev);
191 const size_t size = (size_t)ttm->num_pages << PAGE_SHIFT;
192 struct file *filp = i915_tt->filp;
193 struct sgt_iter sgt_iter;
194 struct sg_table *st;
195 struct page *page;
196 unsigned long i;
197 int err;
198
199 if (!filp) {
200 struct address_space *mapping;
201 gfp_t mask;
202
203 filp = shmem_file_setup("i915-shmem-tt", size,
204 mk_vma_flags(VMA_NORESERVE_BIT));
205 if (IS_ERR(filp))
206 return PTR_ERR(filp);
207
208 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
209
210 mapping = filp->f_mapping;
211 mapping_set_gfp_mask(mapping, mask);
212 GEM_BUG_ON(!(mapping_gfp_mask(mapping) & __GFP_RECLAIM));
213
214 i915_tt->filp = filp;
215 }
216
217 st = &i915_tt->cached_rsgt.table;
218 err = shmem_sg_alloc_table(i915, st, size, mr, filp->f_mapping,
219 max_segment);
220 if (err)
221 return err;
222
223 err = dma_map_sgtable(i915_tt->dev, st, DMA_BIDIRECTIONAL,
224 DMA_ATTR_SKIP_CPU_SYNC);
225 if (err)
226 goto err_free_st;
227
228 i = 0;
229 for_each_sgt_page(page, sgt_iter, st)
230 ttm->pages[i++] = page;
231
232 if (ttm->page_flags & TTM_TT_FLAG_SWAPPED)
233 ttm->page_flags &= ~TTM_TT_FLAG_SWAPPED;
234
235 return 0;
236
237 err_free_st:
238 shmem_sg_free_table(st, filp->f_mapping, false, false);
239
240 return err;
241 }
242
i915_ttm_tt_shmem_unpopulate(struct ttm_tt * ttm)243 static void i915_ttm_tt_shmem_unpopulate(struct ttm_tt *ttm)
244 {
245 struct i915_ttm_tt *i915_tt = container_of(ttm, typeof(*i915_tt), ttm);
246 bool backup = ttm->page_flags & TTM_TT_FLAG_SWAPPED;
247 struct sg_table *st = &i915_tt->cached_rsgt.table;
248
249 shmem_sg_free_table(st, file_inode(i915_tt->filp)->i_mapping,
250 backup, backup);
251 }
252
i915_ttm_tt_release(struct kref * ref)253 static void i915_ttm_tt_release(struct kref *ref)
254 {
255 struct i915_ttm_tt *i915_tt =
256 container_of(ref, typeof(*i915_tt), cached_rsgt.kref);
257 struct sg_table *st = &i915_tt->cached_rsgt.table;
258
259 GEM_WARN_ON(st->sgl);
260
261 kfree(i915_tt);
262 }
263
264 static const struct i915_refct_sgt_ops tt_rsgt_ops = {
265 .release = i915_ttm_tt_release
266 };
267
i915_ttm_tt_create(struct ttm_buffer_object * bo,uint32_t page_flags)268 static struct ttm_tt *i915_ttm_tt_create(struct ttm_buffer_object *bo,
269 uint32_t page_flags)
270 {
271 struct drm_i915_private *i915 = container_of(bo->bdev, typeof(*i915),
272 bdev);
273 struct drm_i915_gem_object *obj = i915_ttm_to_gem(bo);
274 unsigned long ccs_pages = 0;
275 enum ttm_caching caching;
276 struct i915_ttm_tt *i915_tt;
277 int ret;
278
279 if (i915_ttm_is_ghost_object(bo))
280 return NULL;
281
282 i915_tt = kzalloc_obj(*i915_tt);
283 if (!i915_tt)
284 return NULL;
285
286 if (obj->flags & I915_BO_ALLOC_CPU_CLEAR && (!bo->resource ||
287 ttm_manager_type(bo->bdev, bo->resource->mem_type)->use_tt))
288 page_flags |= TTM_TT_FLAG_ZERO_ALLOC;
289
290 caching = i915_ttm_select_tt_caching(obj);
291 if (i915_gem_object_is_shrinkable(obj) && caching == ttm_cached) {
292 page_flags |= TTM_TT_FLAG_EXTERNAL |
293 TTM_TT_FLAG_EXTERNAL_MAPPABLE;
294 i915_tt->is_shmem = true;
295 }
296
297 if (i915_gem_object_needs_ccs_pages(obj))
298 ccs_pages = DIV_ROUND_UP(DIV_ROUND_UP(bo->base.size,
299 NUM_BYTES_PER_CCS_BYTE),
300 PAGE_SIZE);
301
302 ret = ttm_tt_init(&i915_tt->ttm, bo, page_flags, caching, ccs_pages);
303 if (ret)
304 goto err_free;
305
306 __i915_refct_sgt_init(&i915_tt->cached_rsgt, bo->base.size,
307 &tt_rsgt_ops);
308
309 i915_tt->dev = obj->base.dev->dev;
310
311 return &i915_tt->ttm;
312
313 err_free:
314 kfree(i915_tt);
315 return NULL;
316 }
317
i915_ttm_tt_populate(struct ttm_device * bdev,struct ttm_tt * ttm,struct ttm_operation_ctx * ctx)318 static int i915_ttm_tt_populate(struct ttm_device *bdev,
319 struct ttm_tt *ttm,
320 struct ttm_operation_ctx *ctx)
321 {
322 struct i915_ttm_tt *i915_tt = container_of(ttm, typeof(*i915_tt), ttm);
323
324 if (i915_tt->is_shmem)
325 return i915_ttm_tt_shmem_populate(bdev, ttm, ctx);
326
327 return ttm_pool_alloc(&bdev->pool, ttm, ctx);
328 }
329
i915_ttm_tt_unpopulate(struct ttm_device * bdev,struct ttm_tt * ttm)330 static void i915_ttm_tt_unpopulate(struct ttm_device *bdev, struct ttm_tt *ttm)
331 {
332 struct i915_ttm_tt *i915_tt = container_of(ttm, typeof(*i915_tt), ttm);
333 struct sg_table *st = &i915_tt->cached_rsgt.table;
334
335 if (st->sgl)
336 dma_unmap_sgtable(i915_tt->dev, st, DMA_BIDIRECTIONAL, 0);
337
338 if (i915_tt->is_shmem) {
339 i915_ttm_tt_shmem_unpopulate(ttm);
340 } else {
341 sg_free_table(st);
342 ttm_pool_free(&bdev->pool, ttm);
343 }
344 }
345
i915_ttm_tt_destroy(struct ttm_device * bdev,struct ttm_tt * ttm)346 static void i915_ttm_tt_destroy(struct ttm_device *bdev, struct ttm_tt *ttm)
347 {
348 struct i915_ttm_tt *i915_tt = container_of(ttm, typeof(*i915_tt), ttm);
349
350 if (i915_tt->filp)
351 fput(i915_tt->filp);
352
353 ttm_tt_fini(ttm);
354 i915_refct_sgt_put(&i915_tt->cached_rsgt);
355 }
356
i915_ttm_eviction_valuable(struct ttm_buffer_object * bo,const struct ttm_place * place)357 static bool i915_ttm_eviction_valuable(struct ttm_buffer_object *bo,
358 const struct ttm_place *place)
359 {
360 struct drm_i915_gem_object *obj = i915_ttm_to_gem(bo);
361
362 if (i915_ttm_is_ghost_object(bo))
363 return false;
364
365 /*
366 * EXTERNAL objects should never be swapped out by TTM, instead we need
367 * to handle that ourselves. TTM will already skip such objects for us,
368 * but we would like to avoid grabbing locks for no good reason.
369 */
370 if (bo->ttm && bo->ttm->page_flags & TTM_TT_FLAG_EXTERNAL)
371 return false;
372
373 /* Will do for now. Our pinned objects are still on TTM's LRU lists */
374 if (!i915_gem_object_evictable(obj))
375 return false;
376
377 return ttm_bo_eviction_valuable(bo, place);
378 }
379
i915_ttm_evict_flags(struct ttm_buffer_object * bo,struct ttm_placement * placement)380 static void i915_ttm_evict_flags(struct ttm_buffer_object *bo,
381 struct ttm_placement *placement)
382 {
383 *placement = i915_sys_placement;
384 }
385
386 /**
387 * i915_ttm_free_cached_io_rsgt - Free object cached LMEM information
388 * @obj: The GEM object
389 * This function frees any LMEM-related information that is cached on
390 * the object. For example the radix tree for fast page lookup and the
391 * cached refcounted sg-table
392 */
i915_ttm_free_cached_io_rsgt(struct drm_i915_gem_object * obj)393 void i915_ttm_free_cached_io_rsgt(struct drm_i915_gem_object *obj)
394 {
395 struct radix_tree_iter iter;
396 void __rcu **slot;
397
398 if (!obj->ttm.cached_io_rsgt)
399 return;
400
401 rcu_read_lock();
402 radix_tree_for_each_slot(slot, &obj->ttm.get_io_page.radix, &iter, 0)
403 radix_tree_delete(&obj->ttm.get_io_page.radix, iter.index);
404 rcu_read_unlock();
405
406 i915_refct_sgt_put(obj->ttm.cached_io_rsgt);
407 obj->ttm.cached_io_rsgt = NULL;
408 }
409
410 /**
411 * i915_ttm_purge - Clear an object of its memory
412 * @obj: The object
413 *
414 * This function is called to clear an object of it's memory when it is
415 * marked as not needed anymore.
416 *
417 * Return: 0 on success, negative error code on failure.
418 */
i915_ttm_purge(struct drm_i915_gem_object * obj)419 int i915_ttm_purge(struct drm_i915_gem_object *obj)
420 {
421 struct ttm_buffer_object *bo = i915_gem_to_ttm(obj);
422 struct ttm_operation_ctx ctx = {
423 .interruptible = true,
424 .no_wait_gpu = false,
425 };
426 struct ttm_placement place = {};
427 int ret;
428
429 if (obj->mm.madv == __I915_MADV_PURGED)
430 return 0;
431
432 ret = ttm_bo_validate(bo, &place, &ctx);
433 if (ret)
434 return ret;
435
436 if (bo->ttm) {
437 struct i915_ttm_tt *i915_tt =
438 container_of(bo->ttm, typeof(*i915_tt), ttm);
439
440 if (i915_tt->filp) {
441 /*
442 * The below fput(which eventually calls shmem_truncate)
443 * might be delayed by worker, so when directly called
444 * to purge the pages(like by the shrinker) we should
445 * try to be more aggressive and release the pages
446 * immediately.
447 */
448 shmem_truncate_range(file_inode(i915_tt->filp),
449 0, (loff_t)-1);
450 fput(fetch_and_zero(&i915_tt->filp));
451 }
452 }
453
454 obj->write_domain = 0;
455 obj->read_domains = 0;
456 i915_ttm_adjust_gem_after_move(obj);
457 i915_ttm_free_cached_io_rsgt(obj);
458 obj->mm.madv = __I915_MADV_PURGED;
459
460 return 0;
461 }
462
i915_ttm_shrink(struct drm_i915_gem_object * obj,unsigned int flags)463 static int i915_ttm_shrink(struct drm_i915_gem_object *obj, unsigned int flags)
464 {
465 struct ttm_buffer_object *bo = i915_gem_to_ttm(obj);
466 struct i915_ttm_tt *i915_tt =
467 container_of(bo->ttm, typeof(*i915_tt), ttm);
468 struct ttm_operation_ctx ctx = {
469 .interruptible = true,
470 .no_wait_gpu = flags & I915_GEM_OBJECT_SHRINK_NO_GPU_WAIT,
471 };
472 struct ttm_placement place = {};
473 int ret;
474
475 if (!bo->ttm || i915_ttm_cpu_maps_iomem(bo->resource))
476 return 0;
477
478 GEM_BUG_ON(!i915_tt->is_shmem);
479
480 if (!i915_tt->filp)
481 return 0;
482
483 ret = ttm_bo_wait_ctx(bo, &ctx);
484 if (ret)
485 return ret;
486
487 switch (obj->mm.madv) {
488 case I915_MADV_DONTNEED:
489 return i915_ttm_purge(obj);
490 case __I915_MADV_PURGED:
491 return 0;
492 }
493
494 if (bo->ttm->page_flags & TTM_TT_FLAG_SWAPPED)
495 return 0;
496
497 bo->ttm->page_flags |= TTM_TT_FLAG_SWAPPED;
498 ret = ttm_bo_validate(bo, &place, &ctx);
499 if (ret) {
500 bo->ttm->page_flags &= ~TTM_TT_FLAG_SWAPPED;
501 return ret;
502 }
503
504 if (flags & I915_GEM_OBJECT_SHRINK_WRITEBACK)
505 __shmem_writeback(obj->base.size, i915_tt->filp->f_mapping);
506
507 return 0;
508 }
509
i915_ttm_delete_mem_notify(struct ttm_buffer_object * bo)510 static void i915_ttm_delete_mem_notify(struct ttm_buffer_object *bo)
511 {
512 struct drm_i915_gem_object *obj = i915_ttm_to_gem(bo);
513
514 /*
515 * This gets called twice by ttm, so long as we have a ttm resource or
516 * ttm_tt then we can still safely call this. Due to pipeline-gutting,
517 * we maybe have NULL bo->resource, but in that case we should always
518 * have a ttm alive (like if the pages are swapped out).
519 */
520 if ((bo->resource || bo->ttm) && !i915_ttm_is_ghost_object(bo)) {
521 __i915_gem_object_pages_fini(obj);
522 i915_ttm_free_cached_io_rsgt(obj);
523 }
524 }
525
i915_ttm_tt_get_st(struct ttm_tt * ttm)526 static struct i915_refct_sgt *i915_ttm_tt_get_st(struct ttm_tt *ttm)
527 {
528 struct i915_ttm_tt *i915_tt = container_of(ttm, typeof(*i915_tt), ttm);
529 struct sg_table *st;
530 int ret;
531
532 if (i915_tt->cached_rsgt.table.sgl)
533 return i915_refct_sgt_get(&i915_tt->cached_rsgt);
534
535 st = &i915_tt->cached_rsgt.table;
536 ret = sg_alloc_table_from_pages_segment(st,
537 ttm->pages, ttm->num_pages,
538 0, (unsigned long)ttm->num_pages << PAGE_SHIFT,
539 i915_sg_segment_size(i915_tt->dev), GFP_KERNEL);
540 if (ret) {
541 st->sgl = NULL;
542 return ERR_PTR(ret);
543 }
544
545 ret = dma_map_sgtable(i915_tt->dev, st, DMA_BIDIRECTIONAL, 0);
546 if (ret) {
547 sg_free_table(st);
548 return ERR_PTR(ret);
549 }
550
551 return i915_refct_sgt_get(&i915_tt->cached_rsgt);
552 }
553
554 /**
555 * i915_ttm_resource_get_st - Get a refcounted sg-table pointing to the
556 * resource memory
557 * @obj: The GEM object used for sg-table caching
558 * @res: The struct ttm_resource for which an sg-table is requested.
559 *
560 * This function returns a refcounted sg-table representing the memory
561 * pointed to by @res. If @res is the object's current resource it may also
562 * cache the sg_table on the object or attempt to access an already cached
563 * sg-table. The refcounted sg-table needs to be put when no-longer in use.
564 *
565 * Return: A valid pointer to a struct i915_refct_sgt or error pointer on
566 * failure.
567 */
568 struct i915_refct_sgt *
i915_ttm_resource_get_st(struct drm_i915_gem_object * obj,struct ttm_resource * res)569 i915_ttm_resource_get_st(struct drm_i915_gem_object *obj,
570 struct ttm_resource *res)
571 {
572 struct ttm_buffer_object *bo = i915_gem_to_ttm(obj);
573 u32 page_alignment;
574
575 if (!i915_ttm_gtt_binds_lmem(res))
576 return i915_ttm_tt_get_st(bo->ttm);
577
578 page_alignment = bo->page_alignment << PAGE_SHIFT;
579 if (!page_alignment)
580 page_alignment = obj->mm.region->min_page_size;
581
582 /*
583 * If CPU mapping differs, we need to add the ttm_tt pages to
584 * the resulting st. Might make sense for GGTT.
585 */
586 GEM_WARN_ON(!i915_ttm_cpu_maps_iomem(res));
587 if (bo->resource == res) {
588 if (!obj->ttm.cached_io_rsgt) {
589 struct i915_refct_sgt *rsgt;
590
591 rsgt = intel_region_ttm_resource_to_rsgt(obj->mm.region,
592 res,
593 page_alignment);
594 if (IS_ERR(rsgt))
595 return rsgt;
596
597 obj->ttm.cached_io_rsgt = rsgt;
598 }
599 return i915_refct_sgt_get(obj->ttm.cached_io_rsgt);
600 }
601
602 return intel_region_ttm_resource_to_rsgt(obj->mm.region, res,
603 page_alignment);
604 }
605
i915_ttm_truncate(struct drm_i915_gem_object * obj)606 static int i915_ttm_truncate(struct drm_i915_gem_object *obj)
607 {
608 struct ttm_buffer_object *bo = i915_gem_to_ttm(obj);
609 long err;
610
611 WARN_ON_ONCE(obj->mm.madv == I915_MADV_WILLNEED);
612
613 err = dma_resv_wait_timeout(bo->base.resv, DMA_RESV_USAGE_BOOKKEEP,
614 true, 15 * HZ);
615 if (err < 0)
616 return err;
617 if (err == 0)
618 return -EBUSY;
619
620 err = i915_ttm_move_notify(bo);
621 if (err)
622 return err;
623
624 return i915_ttm_purge(obj);
625 }
626
i915_ttm_swap_notify(struct ttm_buffer_object * bo)627 static void i915_ttm_swap_notify(struct ttm_buffer_object *bo)
628 {
629 struct drm_i915_gem_object *obj = i915_ttm_to_gem(bo);
630 int ret;
631
632 if (i915_ttm_is_ghost_object(bo))
633 return;
634
635 ret = i915_ttm_move_notify(bo);
636 GEM_WARN_ON(ret);
637 GEM_WARN_ON(obj->ttm.cached_io_rsgt);
638 if (!ret && obj->mm.madv != I915_MADV_WILLNEED)
639 i915_ttm_purge(obj);
640 }
641
642 /**
643 * i915_ttm_resource_mappable - Return true if the ttm resource is CPU
644 * accessible.
645 * @res: The TTM resource to check.
646 *
647 * This is interesting on small-BAR systems where we may encounter lmem objects
648 * that can't be accessed via the CPU.
649 */
i915_ttm_resource_mappable(struct ttm_resource * res)650 bool i915_ttm_resource_mappable(struct ttm_resource *res)
651 {
652 struct i915_ttm_buddy_resource *bman_res = to_ttm_buddy_resource(res);
653
654 if (!i915_ttm_cpu_maps_iomem(res))
655 return true;
656
657 return bman_res->used_visible_size == PFN_UP(bman_res->base.size);
658 }
659
i915_ttm_io_mem_reserve(struct ttm_device * bdev,struct ttm_resource * mem)660 static int i915_ttm_io_mem_reserve(struct ttm_device *bdev, struct ttm_resource *mem)
661 {
662 struct drm_i915_gem_object *obj = i915_ttm_to_gem(mem->bo);
663 bool unknown_state;
664
665 if (i915_ttm_is_ghost_object(mem->bo))
666 return -EINVAL;
667
668 if (!kref_get_unless_zero(&obj->base.refcount))
669 return -EINVAL;
670
671 assert_object_held(obj);
672
673 unknown_state = i915_gem_object_has_unknown_state(obj);
674 i915_gem_object_put(obj);
675 if (unknown_state)
676 return -EINVAL;
677
678 if (!i915_ttm_cpu_maps_iomem(mem))
679 return 0;
680
681 if (!i915_ttm_resource_mappable(mem))
682 return -EINVAL;
683
684 mem->bus.caching = ttm_write_combined;
685 mem->bus.is_iomem = true;
686
687 return 0;
688 }
689
i915_ttm_io_mem_pfn(struct ttm_buffer_object * bo,unsigned long page_offset)690 static unsigned long i915_ttm_io_mem_pfn(struct ttm_buffer_object *bo,
691 unsigned long page_offset)
692 {
693 struct drm_i915_gem_object *obj = i915_ttm_to_gem(bo);
694 struct scatterlist *sg;
695 unsigned long base;
696 unsigned int ofs;
697
698 GEM_BUG_ON(i915_ttm_is_ghost_object(bo));
699 GEM_WARN_ON(bo->ttm);
700
701 base = obj->mm.region->iomap.base - obj->mm.region->region.start;
702 sg = i915_gem_object_page_iter_get_sg(obj, &obj->ttm.get_io_page, page_offset, &ofs);
703
704 return ((base + sg_dma_address(sg)) >> PAGE_SHIFT) + ofs;
705 }
706
i915_ttm_access_memory(struct ttm_buffer_object * bo,unsigned long offset,void * buf,int len,int write)707 static int i915_ttm_access_memory(struct ttm_buffer_object *bo,
708 unsigned long offset, void *buf,
709 int len, int write)
710 {
711 struct drm_i915_gem_object *obj = i915_ttm_to_gem(bo);
712 resource_size_t iomap = obj->mm.region->iomap.base -
713 obj->mm.region->region.start;
714 unsigned long page = offset >> PAGE_SHIFT;
715 unsigned long bytes_left = len;
716
717 /*
718 * TODO: For now just let it fail if the resource is non-mappable,
719 * otherwise we need to perform the memcpy from the gpu here, without
720 * interfering with the object (like moving the entire thing).
721 */
722 if (!i915_ttm_resource_mappable(bo->resource))
723 return -EIO;
724
725 offset -= page << PAGE_SHIFT;
726 do {
727 unsigned long bytes = min(bytes_left, PAGE_SIZE - offset);
728 void __iomem *ptr;
729 dma_addr_t daddr;
730
731 daddr = i915_gem_object_get_dma_address(obj, page);
732 ptr = ioremap_wc(iomap + daddr + offset, bytes);
733 if (!ptr)
734 return -EIO;
735
736 if (write)
737 memcpy_toio(ptr, buf, bytes);
738 else
739 memcpy_fromio(buf, ptr, bytes);
740 iounmap(ptr);
741
742 page++;
743 buf += bytes;
744 bytes_left -= bytes;
745 offset = 0;
746 } while (bytes_left);
747
748 return len;
749 }
750
751 /*
752 * All callbacks need to take care not to downcast a struct ttm_buffer_object
753 * without checking its subclass, since it might be a TTM ghost object.
754 */
755 static struct ttm_device_funcs i915_ttm_bo_driver = {
756 .ttm_tt_create = i915_ttm_tt_create,
757 .ttm_tt_populate = i915_ttm_tt_populate,
758 .ttm_tt_unpopulate = i915_ttm_tt_unpopulate,
759 .ttm_tt_destroy = i915_ttm_tt_destroy,
760 .eviction_valuable = i915_ttm_eviction_valuable,
761 .evict_flags = i915_ttm_evict_flags,
762 .move = i915_ttm_move,
763 .swap_notify = i915_ttm_swap_notify,
764 .delete_mem_notify = i915_ttm_delete_mem_notify,
765 .io_mem_reserve = i915_ttm_io_mem_reserve,
766 .io_mem_pfn = i915_ttm_io_mem_pfn,
767 .access_memory = i915_ttm_access_memory,
768 };
769
770 /**
771 * i915_ttm_driver - Return a pointer to the TTM device funcs
772 *
773 * Return: Pointer to statically allocated TTM device funcs.
774 */
i915_ttm_driver(void)775 struct ttm_device_funcs *i915_ttm_driver(void)
776 {
777 return &i915_ttm_bo_driver;
778 }
779
__i915_ttm_get_pages(struct drm_i915_gem_object * obj,struct ttm_placement * placement)780 static int __i915_ttm_get_pages(struct drm_i915_gem_object *obj,
781 struct ttm_placement *placement)
782 {
783 struct ttm_buffer_object *bo = i915_gem_to_ttm(obj);
784 struct ttm_operation_ctx ctx = {
785 .interruptible = true,
786 .no_wait_gpu = false,
787 };
788 struct ttm_placement initial_placement;
789 struct ttm_place initial_place;
790 int ret;
791
792 /* First try only the requested placement. No eviction. */
793 initial_placement.num_placement = 1;
794 memcpy(&initial_place, placement->placement, sizeof(struct ttm_place));
795 initial_place.flags |= TTM_PL_FLAG_DESIRED;
796 initial_placement.placement = &initial_place;
797 ret = ttm_bo_validate(bo, &initial_placement, &ctx);
798 if (ret) {
799 ret = i915_ttm_err_to_gem(ret);
800 /*
801 * Anything that wants to restart the operation gets to
802 * do that.
803 */
804 if (ret == -EDEADLK || ret == -EINTR || ret == -ERESTARTSYS ||
805 ret == -EAGAIN)
806 return ret;
807
808 /*
809 * If the initial attempt fails, allow all accepted placements,
810 * evicting if necessary.
811 */
812 ret = ttm_bo_validate(bo, placement, &ctx);
813 if (ret)
814 return i915_ttm_err_to_gem(ret);
815 }
816
817 if (bo->ttm && !ttm_tt_is_populated(bo->ttm)) {
818 ret = ttm_bo_populate(bo, &ctx);
819 if (ret)
820 return ret;
821
822 i915_ttm_adjust_domains_after_move(obj);
823 i915_ttm_adjust_gem_after_move(obj);
824 }
825
826 if (!i915_gem_object_has_pages(obj)) {
827 struct i915_refct_sgt *rsgt =
828 i915_ttm_resource_get_st(obj, bo->resource);
829
830 if (IS_ERR(rsgt))
831 return PTR_ERR(rsgt);
832
833 GEM_BUG_ON(obj->mm.rsgt);
834 obj->mm.rsgt = rsgt;
835 __i915_gem_object_set_pages(obj, &rsgt->table);
836 }
837
838 GEM_BUG_ON(bo->ttm && ((obj->base.size >> PAGE_SHIFT) < bo->ttm->num_pages));
839 i915_ttm_adjust_lru(obj);
840 return ret;
841 }
842
i915_ttm_get_pages(struct drm_i915_gem_object * obj)843 static int i915_ttm_get_pages(struct drm_i915_gem_object *obj)
844 {
845 struct ttm_place places[I915_TTM_MAX_PLACEMENTS + 1];
846 struct ttm_placement placement;
847
848 /* restricted by sg_alloc_table */
849 if (overflows_type(obj->base.size >> PAGE_SHIFT, unsigned int))
850 return -E2BIG;
851
852 GEM_BUG_ON(obj->mm.n_placements > I915_TTM_MAX_PLACEMENTS);
853
854 /* Move to the requested placement. */
855 i915_ttm_placement_from_obj(obj, places, &placement);
856
857 return __i915_ttm_get_pages(obj, &placement);
858 }
859
860 /**
861 * DOC: Migration vs eviction
862 *
863 * GEM migration may not be the same as TTM migration / eviction. If
864 * the TTM core decides to evict an object it may be evicted to a
865 * TTM memory type that is not in the object's allowable GEM regions, or
866 * in fact theoretically to a TTM memory type that doesn't correspond to
867 * a GEM memory region. In that case the object's GEM region is not
868 * updated, and the data is migrated back to the GEM region at
869 * get_pages time. TTM may however set up CPU ptes to the object even
870 * when it is evicted.
871 * Gem forced migration using the i915_ttm_migrate() op, is allowed even
872 * to regions that are not in the object's list of allowable placements.
873 */
__i915_ttm_migrate(struct drm_i915_gem_object * obj,struct intel_memory_region * mr,unsigned int flags)874 static int __i915_ttm_migrate(struct drm_i915_gem_object *obj,
875 struct intel_memory_region *mr,
876 unsigned int flags)
877 {
878 struct ttm_place requested;
879 struct ttm_placement placement;
880 int ret;
881
882 i915_ttm_place_from_region(mr, &requested, obj->bo_offset,
883 obj->base.size, flags);
884 placement.num_placement = 1;
885 placement.placement = &requested;
886
887 ret = __i915_ttm_get_pages(obj, &placement);
888 if (ret)
889 return ret;
890
891 /*
892 * Reinitialize the region bindings. This is primarily
893 * required for objects where the new region is not in
894 * its allowable placements.
895 */
896 if (obj->mm.region != mr) {
897 i915_gem_object_release_memory_region(obj);
898 i915_gem_object_init_memory_region(obj, mr);
899 }
900
901 return 0;
902 }
903
i915_ttm_migrate(struct drm_i915_gem_object * obj,struct intel_memory_region * mr,unsigned int flags)904 static int i915_ttm_migrate(struct drm_i915_gem_object *obj,
905 struct intel_memory_region *mr,
906 unsigned int flags)
907 {
908 return __i915_ttm_migrate(obj, mr, flags);
909 }
910
i915_ttm_put_pages(struct drm_i915_gem_object * obj,struct sg_table * st)911 static void i915_ttm_put_pages(struct drm_i915_gem_object *obj,
912 struct sg_table *st)
913 {
914 /*
915 * We're currently not called from a shrinker, so put_pages()
916 * typically means the object is about to destroyed, or called
917 * from move_notify(). So just avoid doing much for now.
918 * If the object is not destroyed next, The TTM eviction logic
919 * and shrinkers will move it out if needed.
920 */
921
922 if (obj->mm.rsgt)
923 i915_refct_sgt_put(fetch_and_zero(&obj->mm.rsgt));
924 }
925
926 /**
927 * i915_ttm_adjust_lru - Adjust an object's position on relevant LRU lists.
928 * @obj: The object
929 */
i915_ttm_adjust_lru(struct drm_i915_gem_object * obj)930 void i915_ttm_adjust_lru(struct drm_i915_gem_object *obj)
931 {
932 struct ttm_buffer_object *bo = i915_gem_to_ttm(obj);
933 struct i915_ttm_tt *i915_tt =
934 container_of(bo->ttm, typeof(*i915_tt), ttm);
935 bool shrinkable =
936 bo->ttm && i915_tt->filp && ttm_tt_is_populated(bo->ttm);
937
938 /*
939 * Don't manipulate the TTM LRUs while in TTM bo destruction.
940 * We're called through i915_ttm_delete_mem_notify().
941 */
942 if (!kref_read(&bo->kref))
943 return;
944
945 /*
946 * We skip managing the shrinker LRU in set_pages() and just manage
947 * everything here. This does at least solve the issue with having
948 * temporary shmem mappings(like with evicted lmem) not being visible to
949 * the shrinker. Only our shmem objects are shrinkable, everything else
950 * we keep as unshrinkable.
951 *
952 * To make sure everything plays nice we keep an extra shrink pin in TTM
953 * if the underlying pages are not currently shrinkable. Once we release
954 * our pin, like when the pages are moved to shmem, the pages will then
955 * be added to the shrinker LRU, assuming the caller isn't also holding
956 * a pin.
957 *
958 * TODO: consider maybe also bumping the shrinker list here when we have
959 * already unpinned it, which should give us something more like an LRU.
960 *
961 * TODO: There is a small window of opportunity for this function to
962 * get called from eviction after we've dropped the last GEM refcount,
963 * but before the TTM deleted flag is set on the object. Avoid
964 * adjusting the shrinker list in such cases, since the object is
965 * not available to the shrinker anyway due to its zero refcount.
966 * To fix this properly we should move to a TTM shrinker LRU list for
967 * these objects.
968 */
969 if (kref_get_unless_zero(&obj->base.refcount)) {
970 if (shrinkable != obj->mm.ttm_shrinkable) {
971 if (shrinkable) {
972 if (obj->mm.madv == I915_MADV_WILLNEED)
973 __i915_gem_object_make_shrinkable(obj);
974 else
975 __i915_gem_object_make_purgeable(obj);
976 } else {
977 i915_gem_object_make_unshrinkable(obj);
978 }
979
980 obj->mm.ttm_shrinkable = shrinkable;
981 }
982 i915_gem_object_put(obj);
983 }
984
985 /*
986 * Put on the correct LRU list depending on the MADV status
987 */
988 spin_lock(&bo->bdev->lru_lock);
989 if (shrinkable) {
990 /* Try to keep shmem_tt from being considered for shrinking. */
991 bo->priority = TTM_MAX_BO_PRIORITY - 1;
992 } else if (obj->mm.madv != I915_MADV_WILLNEED) {
993 bo->priority = I915_TTM_PRIO_PURGE;
994 } else if (!i915_gem_object_has_pages(obj)) {
995 bo->priority = I915_TTM_PRIO_NO_PAGES;
996 } else {
997 struct ttm_resource_manager *man =
998 ttm_manager_type(bo->bdev, bo->resource->mem_type);
999
1000 /*
1001 * If we need to place an LMEM resource which doesn't need CPU
1002 * access then we should try not to victimize mappable objects
1003 * first, since we likely end up stealing more of the mappable
1004 * portion. And likewise when we try to find space for a mappable
1005 * object, we know not to ever victimize objects that don't
1006 * occupy any mappable pages.
1007 */
1008 if (i915_ttm_cpu_maps_iomem(bo->resource) &&
1009 i915_ttm_buddy_man_visible_size(man) < man->size &&
1010 !(obj->flags & I915_BO_ALLOC_GPU_ONLY))
1011 bo->priority = I915_TTM_PRIO_NEEDS_CPU_ACCESS;
1012 else
1013 bo->priority = I915_TTM_PRIO_HAS_PAGES;
1014 }
1015
1016 ttm_bo_move_to_lru_tail(bo);
1017 spin_unlock(&bo->bdev->lru_lock);
1018 }
1019
1020 /*
1021 * TTM-backed gem object destruction requires some clarification.
1022 * Basically we have two possibilities here. We can either rely on the
1023 * i915 delayed destruction and put the TTM object when the object
1024 * is idle. This would be detected by TTM which would bypass the
1025 * TTM delayed destroy handling. The other approach is to put the TTM
1026 * object early and rely on the TTM destroyed handling, and then free
1027 * the leftover parts of the GEM object once TTM's destroyed list handling is
1028 * complete. For now, we rely on the latter for two reasons:
1029 * a) TTM can evict an object even when it's on the delayed destroy list,
1030 * which in theory allows for complete eviction.
1031 * b) There is work going on in TTM to allow freeing an object even when
1032 * it's not idle, and using the TTM destroyed list handling could help us
1033 * benefit from that.
1034 */
i915_ttm_delayed_free(struct drm_i915_gem_object * obj)1035 static void i915_ttm_delayed_free(struct drm_i915_gem_object *obj)
1036 {
1037 GEM_BUG_ON(!obj->ttm.created);
1038
1039 ttm_bo_fini(i915_gem_to_ttm(obj));
1040 }
1041
vm_fault_ttm(struct vm_fault * vmf)1042 static vm_fault_t vm_fault_ttm(struct vm_fault *vmf)
1043 {
1044 struct vm_area_struct *area = vmf->vma;
1045 struct ttm_buffer_object *bo = area->vm_private_data;
1046 struct drm_device *dev = bo->base.dev;
1047 struct drm_i915_gem_object *obj = i915_ttm_to_gem(bo);
1048 intel_wakeref_t wakeref = NULL;
1049 vm_fault_t ret;
1050 int idx;
1051
1052 /* Sanity check that we allow writing into this object */
1053 if (unlikely(i915_gem_object_is_readonly(obj) &&
1054 area->vm_flags & VM_WRITE))
1055 return VM_FAULT_SIGBUS;
1056
1057 ret = ttm_bo_vm_reserve(bo, vmf);
1058 if (ret)
1059 return ret;
1060
1061 if (obj->mm.madv != I915_MADV_WILLNEED) {
1062 dma_resv_unlock(bo->base.resv);
1063 return VM_FAULT_SIGBUS;
1064 }
1065
1066 /*
1067 * This must be swapped out with shmem ttm_tt (pipeline-gutting).
1068 * Calling ttm_bo_validate() here with TTM_PL_SYSTEM should only go as
1069 * far as far doing a ttm_bo_move_null(), which should skip all the
1070 * other junk.
1071 */
1072 if (!bo->resource) {
1073 struct ttm_operation_ctx ctx = {
1074 .interruptible = true,
1075 .no_wait_gpu = true, /* should be idle already */
1076 };
1077 int err;
1078
1079 GEM_BUG_ON(!bo->ttm || !(bo->ttm->page_flags & TTM_TT_FLAG_SWAPPED));
1080
1081 err = ttm_bo_validate(bo, i915_ttm_sys_placement(), &ctx);
1082 if (err) {
1083 dma_resv_unlock(bo->base.resv);
1084 return VM_FAULT_SIGBUS;
1085 }
1086 } else if (!i915_ttm_resource_mappable(bo->resource)) {
1087 int err = -ENODEV;
1088 int i;
1089
1090 for (i = 0; i < obj->mm.n_placements; i++) {
1091 struct intel_memory_region *mr = obj->mm.placements[i];
1092 unsigned int flags;
1093
1094 if (!resource_size(&mr->io) && mr->type != INTEL_MEMORY_SYSTEM)
1095 continue;
1096
1097 flags = obj->flags;
1098 flags &= ~I915_BO_ALLOC_GPU_ONLY;
1099 err = __i915_ttm_migrate(obj, mr, flags);
1100 if (!err)
1101 break;
1102 }
1103
1104 if (err) {
1105 drm_dbg_ratelimited(dev,
1106 "Unable to make resource CPU accessible(err = %pe)\n",
1107 ERR_PTR(err));
1108 dma_resv_unlock(bo->base.resv);
1109 ret = VM_FAULT_SIGBUS;
1110 goto out_rpm;
1111 }
1112 }
1113
1114 if (i915_ttm_cpu_maps_iomem(bo->resource))
1115 wakeref = intel_runtime_pm_get(&to_i915(obj->base.dev)->runtime_pm);
1116
1117 if (drm_dev_enter(dev, &idx)) {
1118 ret = ttm_bo_vm_fault_reserved(vmf, vmf->vma->vm_page_prot,
1119 TTM_BO_VM_NUM_PREFAULT);
1120 drm_dev_exit(idx);
1121 } else {
1122 ret = ttm_bo_vm_dummy_page(vmf, vmf->vma->vm_page_prot);
1123 }
1124
1125 if (ret == VM_FAULT_RETRY && !(vmf->flags & FAULT_FLAG_RETRY_NOWAIT))
1126 goto out_rpm;
1127
1128 /*
1129 * ttm_bo_vm_reserve() already has dma_resv_lock.
1130 * userfault_count is protected by dma_resv lock and rpm wakeref.
1131 */
1132 if (ret == VM_FAULT_NOPAGE && wakeref && !obj->userfault_count) {
1133 obj->userfault_count = 1;
1134 spin_lock(&to_i915(obj->base.dev)->runtime_pm.lmem_userfault_lock);
1135 list_add(&obj->userfault_link, &to_i915(obj->base.dev)->runtime_pm.lmem_userfault_list);
1136 spin_unlock(&to_i915(obj->base.dev)->runtime_pm.lmem_userfault_lock);
1137
1138 GEM_WARN_ON(!i915_ttm_cpu_maps_iomem(bo->resource));
1139 }
1140
1141 if (wakeref && CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND != 0)
1142 intel_wakeref_auto(&to_i915(obj->base.dev)->runtime_pm.userfault_wakeref,
1143 msecs_to_jiffies_timeout(CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND));
1144
1145 i915_ttm_adjust_lru(obj);
1146
1147 dma_resv_unlock(bo->base.resv);
1148
1149 out_rpm:
1150 if (wakeref)
1151 intel_runtime_pm_put(&to_i915(obj->base.dev)->runtime_pm, wakeref);
1152
1153 return ret;
1154 }
1155
1156 static int
vm_access_ttm(struct vm_area_struct * area,unsigned long addr,void * buf,int len,int write)1157 vm_access_ttm(struct vm_area_struct *area, unsigned long addr,
1158 void *buf, int len, int write)
1159 {
1160 struct drm_i915_gem_object *obj =
1161 i915_ttm_to_gem(area->vm_private_data);
1162
1163 if (i915_gem_object_is_readonly(obj) && write)
1164 return -EACCES;
1165
1166 return ttm_bo_vm_access(area, addr, buf, len, write);
1167 }
1168
ttm_vm_open(struct vm_area_struct * vma)1169 static void ttm_vm_open(struct vm_area_struct *vma)
1170 {
1171 struct drm_i915_gem_object *obj =
1172 i915_ttm_to_gem(vma->vm_private_data);
1173
1174 GEM_BUG_ON(i915_ttm_is_ghost_object(vma->vm_private_data));
1175 i915_gem_object_get(obj);
1176 }
1177
ttm_vm_close(struct vm_area_struct * vma)1178 static void ttm_vm_close(struct vm_area_struct *vma)
1179 {
1180 struct drm_i915_gem_object *obj =
1181 i915_ttm_to_gem(vma->vm_private_data);
1182
1183 GEM_BUG_ON(i915_ttm_is_ghost_object(vma->vm_private_data));
1184 i915_gem_object_put(obj);
1185 }
1186
1187 static const struct vm_operations_struct vm_ops_ttm = {
1188 .fault = vm_fault_ttm,
1189 .access = vm_access_ttm,
1190 .open = ttm_vm_open,
1191 .close = ttm_vm_close,
1192 };
1193
i915_ttm_mmap_offset(struct drm_i915_gem_object * obj)1194 static u64 i915_ttm_mmap_offset(struct drm_i915_gem_object *obj)
1195 {
1196 /* The ttm_bo must be allocated with I915_BO_ALLOC_USER */
1197 GEM_BUG_ON(!drm_mm_node_allocated(&obj->base.vma_node.vm_node));
1198
1199 return drm_vma_node_offset_addr(&obj->base.vma_node);
1200 }
1201
i915_ttm_unmap_virtual(struct drm_i915_gem_object * obj)1202 static void i915_ttm_unmap_virtual(struct drm_i915_gem_object *obj)
1203 {
1204 struct ttm_buffer_object *bo = i915_gem_to_ttm(obj);
1205 intel_wakeref_t wakeref = NULL;
1206
1207 assert_object_held_shared(obj);
1208
1209 if (i915_ttm_cpu_maps_iomem(bo->resource)) {
1210 wakeref = intel_runtime_pm_get(&to_i915(obj->base.dev)->runtime_pm);
1211
1212 /* userfault_count is protected by obj lock and rpm wakeref. */
1213 if (obj->userfault_count) {
1214 spin_lock(&to_i915(obj->base.dev)->runtime_pm.lmem_userfault_lock);
1215 list_del(&obj->userfault_link);
1216 spin_unlock(&to_i915(obj->base.dev)->runtime_pm.lmem_userfault_lock);
1217 obj->userfault_count = 0;
1218 }
1219 }
1220
1221 GEM_WARN_ON(obj->userfault_count);
1222
1223 ttm_bo_unmap_virtual(i915_gem_to_ttm(obj));
1224
1225 if (wakeref)
1226 intel_runtime_pm_put(&to_i915(obj->base.dev)->runtime_pm, wakeref);
1227 }
1228
1229 static const struct drm_i915_gem_object_ops i915_gem_ttm_obj_ops = {
1230 .name = "i915_gem_object_ttm",
1231 .flags = I915_GEM_OBJECT_IS_SHRINKABLE |
1232 I915_GEM_OBJECT_SELF_MANAGED_SHRINK_LIST,
1233
1234 .get_pages = i915_ttm_get_pages,
1235 .put_pages = i915_ttm_put_pages,
1236 .truncate = i915_ttm_truncate,
1237 .shrink = i915_ttm_shrink,
1238
1239 .adjust_lru = i915_ttm_adjust_lru,
1240 .delayed_free = i915_ttm_delayed_free,
1241 .migrate = i915_ttm_migrate,
1242
1243 .mmap_offset = i915_ttm_mmap_offset,
1244 .unmap_virtual = i915_ttm_unmap_virtual,
1245 .mmap_ops = &vm_ops_ttm,
1246 };
1247
i915_ttm_bo_destroy(struct ttm_buffer_object * bo)1248 void i915_ttm_bo_destroy(struct ttm_buffer_object *bo)
1249 {
1250 struct drm_i915_gem_object *obj = i915_ttm_to_gem(bo);
1251
1252 i915_gem_object_release_memory_region(obj);
1253 mutex_destroy(&obj->ttm.get_io_page.lock);
1254
1255 if (obj->ttm.created) {
1256 /*
1257 * We freely manage the shrinker LRU outide of the mm.pages life
1258 * cycle. As a result when destroying the object we should be
1259 * extra paranoid and ensure we remove it from the LRU, before
1260 * we free the object.
1261 *
1262 * Touching the ttm_shrinkable outside of the object lock here
1263 * should be safe now that the last GEM object ref was dropped.
1264 */
1265 if (obj->mm.ttm_shrinkable)
1266 i915_gem_object_make_unshrinkable(obj);
1267
1268 i915_ttm_backup_free(obj);
1269
1270 /* This releases all gem object bindings to the backend. */
1271 __i915_gem_free_object(obj);
1272
1273 call_rcu(&obj->rcu, __i915_gem_free_object_rcu);
1274 } else {
1275 __i915_gem_object_fini(obj);
1276 }
1277 }
1278
1279 /*
1280 * __i915_gem_ttm_object_init - Initialize a ttm-backed i915 gem object
1281 * @mem: The initial memory region for the object.
1282 * @obj: The gem object.
1283 * @size: Object size in bytes.
1284 * @flags: gem object flags.
1285 *
1286 * Return: 0 on success, negative error code on failure.
1287 */
__i915_gem_ttm_object_init(struct intel_memory_region * mem,struct drm_i915_gem_object * obj,resource_size_t offset,resource_size_t size,resource_size_t page_size,unsigned int flags)1288 int __i915_gem_ttm_object_init(struct intel_memory_region *mem,
1289 struct drm_i915_gem_object *obj,
1290 resource_size_t offset,
1291 resource_size_t size,
1292 resource_size_t page_size,
1293 unsigned int flags)
1294 {
1295 static struct lock_class_key lock_class;
1296 struct drm_i915_private *i915 = mem->i915;
1297 struct ttm_operation_ctx ctx = {
1298 .interruptible = true,
1299 .no_wait_gpu = false,
1300 };
1301 enum ttm_bo_type bo_type;
1302 int ret;
1303
1304 drm_gem_private_object_init(&i915->drm, &obj->base, size);
1305 i915_gem_object_init(obj, &i915_gem_ttm_obj_ops, &lock_class, flags);
1306
1307 obj->bo_offset = offset;
1308
1309 /* Don't put on a region list until we're either locked or fully initialized. */
1310 obj->mm.region = mem;
1311 INIT_LIST_HEAD(&obj->mm.region_link);
1312
1313 INIT_RADIX_TREE(&obj->ttm.get_io_page.radix, GFP_KERNEL | __GFP_NOWARN);
1314 mutex_init(&obj->ttm.get_io_page.lock);
1315 bo_type = (obj->flags & I915_BO_ALLOC_USER) ? ttm_bo_type_device :
1316 ttm_bo_type_kernel;
1317
1318 obj->base.vma_node.driver_private = i915_gem_to_ttm(obj);
1319
1320 /* Forcing the page size is kernel internal only */
1321 GEM_BUG_ON(page_size && obj->mm.n_placements);
1322
1323 /*
1324 * Keep an extra shrink pin to prevent the object from being made
1325 * shrinkable too early. If the ttm_tt is ever allocated in shmem, we
1326 * drop the pin. The TTM backend manages the shrinker LRU itself,
1327 * outside of the normal mm.pages life cycle.
1328 */
1329 i915_gem_object_make_unshrinkable(obj);
1330
1331 /*
1332 * If this function fails, it will call the destructor, but
1333 * our caller still owns the object. So no freeing in the
1334 * destructor until obj->ttm.created is true.
1335 * Similarly, in delayed_destroy, we can't call ttm_bo_fini()
1336 * until successful initialization.
1337 */
1338 ret = ttm_bo_init_reserved(&i915->bdev, i915_gem_to_ttm(obj), bo_type,
1339 &i915_sys_placement, page_size >> PAGE_SHIFT,
1340 &ctx, NULL, NULL, i915_ttm_bo_destroy);
1341
1342 /*
1343 * XXX: The ttm_bo_init_reserved() functions returns -ENOSPC if the size
1344 * is too big to add vma. The direct function that returns -ENOSPC is
1345 * drm_mm_insert_node_in_range(). To handle the same error as other code
1346 * that returns -E2BIG when the size is too large, it converts -ENOSPC to
1347 * -E2BIG.
1348 */
1349 if (size >> PAGE_SHIFT > INT_MAX && ret == -ENOSPC)
1350 ret = -E2BIG;
1351
1352 if (ret)
1353 return i915_ttm_err_to_gem(ret);
1354
1355 obj->ttm.created = true;
1356 i915_gem_object_release_memory_region(obj);
1357 i915_gem_object_init_memory_region(obj, mem);
1358 i915_ttm_adjust_domains_after_move(obj);
1359 i915_ttm_adjust_gem_after_move(obj);
1360 i915_gem_object_unlock(obj);
1361
1362 return 0;
1363 }
1364
1365 static const struct intel_memory_region_ops ttm_system_region_ops = {
1366 .init_object = __i915_gem_ttm_object_init,
1367 .release = intel_region_ttm_fini,
1368 };
1369
1370 struct intel_memory_region *
i915_gem_ttm_system_setup(struct drm_i915_private * i915,u16 type,u16 instance)1371 i915_gem_ttm_system_setup(struct drm_i915_private *i915,
1372 u16 type, u16 instance)
1373 {
1374 struct intel_memory_region *mr;
1375
1376 mr = intel_memory_region_create(i915, 0,
1377 totalram_pages() << PAGE_SHIFT,
1378 PAGE_SIZE, 0, 0,
1379 type, instance,
1380 &ttm_system_region_ops);
1381 if (IS_ERR(mr))
1382 return mr;
1383
1384 intel_memory_region_set_name(mr, "system-ttm");
1385 return mr;
1386 }
1387