1 /* SPDX-License-Identifier: GPL-2.0 OR MIT */
2 /**************************************************************************
4 * Copyright (c) 2006-2009 VMware, Inc., Palo Alto, CA., USA
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the
9 * "Software"), to deal in the Software without restriction, including
10 * without limitation the rights to use, copy, modify, merge, publish,
11 * distribute, sub license, and/or sell copies of the Software, and to
12 * permit persons to whom the Software is furnished to do so, subject to
13 * the following conditions:
15 * The above copyright notice and this permission notice (including the
16 * next paragraph) shall be included in all copies or substantial portions
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
22 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
23 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
24 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
25 * USE OR OTHER DEALINGS IN THE SOFTWARE.
27 **************************************************************************/
29 * Authors: Thomas Hellstrom <thellstrom-at-vmware-dot-com>
32 #define pr_fmt(fmt) "[TTM] " fmt
34 #include <drm/ttm/ttm_bo.h>
35 #include <drm/ttm/ttm_placement.h>
36 #include <drm/ttm/ttm_tt.h>
38 #include <linux/jiffies.h>
39 #include <linux/slab.h>
40 #include <linux/sched.h>
42 #include <linux/file.h>
43 #include <linux/module.h>
44 #include <linux/atomic.h>
45 #include <linux/dma-resv.h>
47 #include "ttm_module.h"
49 static void ttm_bo_mem_space_debug(struct ttm_buffer_object *bo,
50 struct ttm_placement *placement)
52 struct drm_printer p = drm_debug_printer(TTM_PFX);
53 struct ttm_resource_manager *man;
56 for (i = 0; i < placement->num_placement; i++) {
57 mem_type = placement->placement[i].mem_type;
58 drm_printf(&p, " placement[%d]=0x%08X (%d)\n",
59 i, placement->placement[i].flags, mem_type);
60 man = ttm_manager_type(bo->bdev, mem_type);
61 ttm_resource_manager_debug(man, &p);
66 * ttm_bo_move_to_lru_tail
68 * @bo: The buffer object.
70 * Move this BO to the tail of all lru lists used to lookup and reserve an
71 * object. This function must be called with struct ttm_global::lru_lock
72 * held, and is used to make a BO less likely to be considered for eviction.
74 void ttm_bo_move_to_lru_tail(struct ttm_buffer_object *bo)
76 dma_resv_assert_held(bo->base.resv);
79 ttm_resource_move_to_lru_tail(bo->resource);
81 EXPORT_SYMBOL(ttm_bo_move_to_lru_tail);
84 * ttm_bo_set_bulk_move - update BOs bulk move object
86 * @bo: The buffer object.
87 * @bulk: bulk move structure
89 * Update the BOs bulk move object, making sure that resources are added/removed
90 * as well. A bulk move allows to move many resource on the LRU at once,
91 * resulting in much less overhead of maintaining the LRU.
92 * The only requirement is that the resources stay together on the LRU and are
93 * never separated. This is enforces by setting the bulk_move structure on a BO.
94 * ttm_lru_bulk_move_tail() should be used to move all resources to the tail of
97 void ttm_bo_set_bulk_move(struct ttm_buffer_object *bo,
98 struct ttm_lru_bulk_move *bulk)
100 dma_resv_assert_held(bo->base.resv);
102 if (bo->bulk_move == bulk)
105 spin_lock(&bo->bdev->lru_lock);
107 ttm_resource_del_bulk_move(bo->resource, bo);
108 bo->bulk_move = bulk;
110 ttm_resource_add_bulk_move(bo->resource, bo);
111 spin_unlock(&bo->bdev->lru_lock);
113 EXPORT_SYMBOL(ttm_bo_set_bulk_move);
115 static int ttm_bo_handle_move_mem(struct ttm_buffer_object *bo,
116 struct ttm_resource *mem, bool evict,
117 struct ttm_operation_ctx *ctx,
118 struct ttm_place *hop)
120 struct ttm_device *bdev = bo->bdev;
121 bool old_use_tt, new_use_tt;
124 old_use_tt = !bo->resource || ttm_manager_type(bdev, bo->resource->mem_type)->use_tt;
125 new_use_tt = ttm_manager_type(bdev, mem->mem_type)->use_tt;
127 ttm_bo_unmap_virtual(bo);
130 * Create and bind a ttm if required.
134 /* Zero init the new TTM structure if the old location should
135 * have used one as well.
137 ret = ttm_tt_create(bo, old_use_tt);
141 if (mem->mem_type != TTM_PL_SYSTEM) {
142 ret = ttm_tt_populate(bo->bdev, bo->ttm, ctx);
148 ret = dma_resv_reserve_fences(bo->base.resv, 1);
152 ret = bdev->funcs->move(bo, evict, ctx, mem, hop);
154 if (ret == -EMULTIHOP)
159 ctx->bytes_moved += bo->base.size;
164 ttm_bo_tt_destroy(bo);
171 * Will release GPU memory type usage on destruction.
172 * This is the place to put in driver specific hooks to release
173 * driver private resources.
174 * Will release the bo::reserved lock.
177 static void ttm_bo_cleanup_memtype_use(struct ttm_buffer_object *bo)
179 if (bo->bdev->funcs->delete_mem_notify)
180 bo->bdev->funcs->delete_mem_notify(bo);
182 ttm_bo_tt_destroy(bo);
183 ttm_resource_free(bo, &bo->resource);
186 static int ttm_bo_individualize_resv(struct ttm_buffer_object *bo)
190 if (bo->base.resv == &bo->base._resv)
193 BUG_ON(!dma_resv_trylock(&bo->base._resv));
195 r = dma_resv_copy_fences(&bo->base._resv, bo->base.resv);
196 dma_resv_unlock(&bo->base._resv);
200 if (bo->type != ttm_bo_type_sg) {
201 /* This works because the BO is about to be destroyed and nobody
202 * reference it any more. The only tricky case is the trylock on
203 * the resv object while holding the lru_lock.
205 spin_lock(&bo->bdev->lru_lock);
206 bo->base.resv = &bo->base._resv;
207 spin_unlock(&bo->bdev->lru_lock);
213 static void ttm_bo_flush_all_fences(struct ttm_buffer_object *bo)
215 struct dma_resv *resv = &bo->base._resv;
216 struct dma_resv_iter cursor;
217 struct dma_fence *fence;
219 dma_resv_iter_begin(&cursor, resv, DMA_RESV_USAGE_BOOKKEEP);
220 dma_resv_for_each_fence_unlocked(&cursor, fence) {
221 if (!fence->ops->signaled)
222 dma_fence_enable_sw_signaling(fence);
224 dma_resv_iter_end(&cursor);
228 * ttm_bo_cleanup_refs
229 * If bo idle, remove from lru lists, and unref.
230 * If not idle, block if possible.
232 * Must be called with lru_lock and reservation held, this function
233 * will drop the lru lock and optionally the reservation lock before returning.
235 * @bo: The buffer object to clean-up
236 * @interruptible: Any sleeps should occur interruptibly.
237 * @no_wait_gpu: Never wait for gpu. Return -EBUSY instead.
238 * @unlock_resv: Unlock the reservation lock as well.
241 static int ttm_bo_cleanup_refs(struct ttm_buffer_object *bo,
242 bool interruptible, bool no_wait_gpu,
245 struct dma_resv *resv = &bo->base._resv;
248 if (dma_resv_test_signaled(resv, DMA_RESV_USAGE_BOOKKEEP))
253 if (ret && !no_wait_gpu) {
257 dma_resv_unlock(bo->base.resv);
258 spin_unlock(&bo->bdev->lru_lock);
260 lret = dma_resv_wait_timeout(resv, DMA_RESV_USAGE_BOOKKEEP,
269 spin_lock(&bo->bdev->lru_lock);
270 if (unlock_resv && !dma_resv_trylock(bo->base.resv)) {
272 * We raced, and lost, someone else holds the reservation now,
273 * and is probably busy in ttm_bo_cleanup_memtype_use.
275 * Even if it's not the case, because we finished waiting any
276 * delayed destruction would succeed, so just return success
279 spin_unlock(&bo->bdev->lru_lock);
287 dma_resv_unlock(bo->base.resv);
288 spin_unlock(&bo->bdev->lru_lock);
292 spin_unlock(&bo->bdev->lru_lock);
293 ttm_bo_cleanup_memtype_use(bo);
296 dma_resv_unlock(bo->base.resv);
302 * Block for the dma_resv object to become idle, lock the buffer and clean up
303 * the resource and tt object.
305 static void ttm_bo_delayed_delete(struct work_struct *work)
307 struct ttm_buffer_object *bo;
309 bo = container_of(work, typeof(*bo), delayed_delete);
311 dma_resv_wait_timeout(bo->base.resv, DMA_RESV_USAGE_BOOKKEEP, false,
312 MAX_SCHEDULE_TIMEOUT);
313 dma_resv_lock(bo->base.resv, NULL);
314 ttm_bo_cleanup_memtype_use(bo);
315 dma_resv_unlock(bo->base.resv);
319 static void ttm_bo_release(struct kref *kref)
321 struct ttm_buffer_object *bo =
322 container_of(kref, struct ttm_buffer_object, kref);
323 struct ttm_device *bdev = bo->bdev;
326 WARN_ON_ONCE(bo->pin_count);
327 WARN_ON_ONCE(bo->bulk_move);
330 ret = ttm_bo_individualize_resv(bo);
332 /* Last resort, if we fail to allocate memory for the
333 * fences block for the BO to become idle
335 dma_resv_wait_timeout(bo->base.resv,
336 DMA_RESV_USAGE_BOOKKEEP, false,
340 if (bo->bdev->funcs->release_notify)
341 bo->bdev->funcs->release_notify(bo);
343 drm_vma_offset_remove(bdev->vma_manager, &bo->base.vma_node);
344 ttm_mem_io_free(bdev, bo->resource);
346 if (!dma_resv_test_signaled(bo->base.resv,
347 DMA_RESV_USAGE_BOOKKEEP) ||
348 (want_init_on_free() && (bo->ttm != NULL)) ||
349 !dma_resv_trylock(bo->base.resv)) {
350 /* The BO is not idle, resurrect it for delayed destroy */
351 ttm_bo_flush_all_fences(bo);
354 spin_lock(&bo->bdev->lru_lock);
357 * Make pinned bos immediately available to
358 * shrinkers, now that they are queued for
361 * FIXME: QXL is triggering this. Can be removed when the
366 ttm_resource_move_to_lru_tail(bo->resource);
369 kref_init(&bo->kref);
370 spin_unlock(&bo->bdev->lru_lock);
372 INIT_WORK(&bo->delayed_delete, ttm_bo_delayed_delete);
373 queue_work(bdev->wq, &bo->delayed_delete);
377 ttm_bo_cleanup_memtype_use(bo);
378 dma_resv_unlock(bo->base.resv);
381 atomic_dec(&ttm_glob.bo_count);
388 * @bo: The buffer object.
390 * Unreference a buffer object.
392 void ttm_bo_put(struct ttm_buffer_object *bo)
394 kref_put(&bo->kref, ttm_bo_release);
396 EXPORT_SYMBOL(ttm_bo_put);
398 static int ttm_bo_bounce_temp_buffer(struct ttm_buffer_object *bo,
399 struct ttm_resource **mem,
400 struct ttm_operation_ctx *ctx,
401 struct ttm_place *hop)
403 struct ttm_placement hop_placement;
404 struct ttm_resource *hop_mem;
407 hop_placement.num_placement = hop_placement.num_busy_placement = 1;
408 hop_placement.placement = hop_placement.busy_placement = hop;
410 /* find space in the bounce domain */
411 ret = ttm_bo_mem_space(bo, &hop_placement, &hop_mem, ctx);
414 /* move to the bounce domain */
415 ret = ttm_bo_handle_move_mem(bo, hop_mem, false, ctx, NULL);
417 ttm_resource_free(bo, &hop_mem);
423 static int ttm_bo_evict(struct ttm_buffer_object *bo,
424 struct ttm_operation_ctx *ctx)
426 struct ttm_device *bdev = bo->bdev;
427 struct ttm_resource *evict_mem;
428 struct ttm_placement placement;
429 struct ttm_place hop;
432 memset(&hop, 0, sizeof(hop));
434 dma_resv_assert_held(bo->base.resv);
436 placement.num_placement = 0;
437 placement.num_busy_placement = 0;
438 bdev->funcs->evict_flags(bo, &placement);
440 if (!placement.num_placement && !placement.num_busy_placement) {
441 ret = ttm_bo_wait_ctx(bo, ctx);
446 * Since we've already synced, this frees backing store
449 return ttm_bo_pipeline_gutting(bo);
452 ret = ttm_bo_mem_space(bo, &placement, &evict_mem, ctx);
454 if (ret != -ERESTARTSYS) {
455 pr_err("Failed to find memory space for buffer 0x%p eviction\n",
457 ttm_bo_mem_space_debug(bo, &placement);
463 ret = ttm_bo_handle_move_mem(bo, evict_mem, true, ctx, &hop);
464 if (ret != -EMULTIHOP)
467 ret = ttm_bo_bounce_temp_buffer(bo, &evict_mem, ctx, &hop);
471 ttm_resource_free(bo, &evict_mem);
472 if (ret != -ERESTARTSYS && ret != -EINTR)
473 pr_err("Buffer eviction failed\n");
480 * ttm_bo_eviction_valuable
482 * @bo: The buffer object to evict
483 * @place: the placement we need to make room for
485 * Check if it is valuable to evict the BO to make room for the given placement.
487 bool ttm_bo_eviction_valuable(struct ttm_buffer_object *bo,
488 const struct ttm_place *place)
490 struct ttm_resource *res = bo->resource;
491 struct ttm_device *bdev = bo->bdev;
493 dma_resv_assert_held(bo->base.resv);
494 if (bo->resource->mem_type == TTM_PL_SYSTEM)
497 /* Don't evict this BO if it's outside of the
498 * requested placement range
500 return ttm_resource_intersects(bdev, res, place, bo->base.size);
502 EXPORT_SYMBOL(ttm_bo_eviction_valuable);
505 * Check the target bo is allowable to be evicted or swapout, including cases:
507 * a. if share same reservation object with ctx->resv, have assumption
508 * reservation objects should already be locked, so not lock again and
509 * return true directly when either the opreation allow_reserved_eviction
510 * or the target bo already is in delayed free list;
512 * b. Otherwise, trylock it.
514 static bool ttm_bo_evict_swapout_allowable(struct ttm_buffer_object *bo,
515 struct ttm_operation_ctx *ctx,
516 const struct ttm_place *place,
517 bool *locked, bool *busy)
528 if (bo->base.resv == ctx->resv) {
529 dma_resv_assert_held(bo->base.resv);
530 if (ctx->allow_res_evict)
536 ret = dma_resv_trylock(bo->base.resv);
542 if (ret && place && (bo->resource->mem_type != place->mem_type ||
543 !bo->bdev->funcs->eviction_valuable(bo, place))) {
546 dma_resv_unlock(bo->base.resv);
555 * ttm_mem_evict_wait_busy - wait for a busy BO to become available
557 * @busy_bo: BO which couldn't be locked with trylock
558 * @ctx: operation context
559 * @ticket: acquire ticket
561 * Try to lock a busy buffer object to avoid failing eviction.
563 static int ttm_mem_evict_wait_busy(struct ttm_buffer_object *busy_bo,
564 struct ttm_operation_ctx *ctx,
565 struct ww_acquire_ctx *ticket)
569 if (!busy_bo || !ticket)
572 if (ctx->interruptible)
573 r = dma_resv_lock_interruptible(busy_bo->base.resv,
576 r = dma_resv_lock(busy_bo->base.resv, ticket);
579 * TODO: It would be better to keep the BO locked until allocation is at
580 * least tried one more time, but that would mean a much larger rework
584 dma_resv_unlock(busy_bo->base.resv);
586 return r == -EDEADLK ? -EBUSY : r;
589 int ttm_mem_evict_first(struct ttm_device *bdev,
590 struct ttm_resource_manager *man,
591 const struct ttm_place *place,
592 struct ttm_operation_ctx *ctx,
593 struct ww_acquire_ctx *ticket)
595 struct ttm_buffer_object *bo = NULL, *busy_bo = NULL;
596 struct ttm_resource_cursor cursor;
597 struct ttm_resource *res;
601 spin_lock(&bdev->lru_lock);
602 ttm_resource_manager_for_each_res(man, &cursor, res) {
605 if (!ttm_bo_evict_swapout_allowable(res->bo, ctx, place,
607 if (busy && !busy_bo && ticket !=
608 dma_resv_locking_ctx(res->bo->base.resv))
613 if (ttm_bo_get_unless_zero(res->bo)) {
618 dma_resv_unlock(res->bo->base.resv);
622 if (busy_bo && !ttm_bo_get_unless_zero(busy_bo))
624 spin_unlock(&bdev->lru_lock);
625 ret = ttm_mem_evict_wait_busy(busy_bo, ctx, ticket);
632 ret = ttm_bo_cleanup_refs(bo, ctx->interruptible,
633 ctx->no_wait_gpu, locked);
638 spin_unlock(&bdev->lru_lock);
640 ret = ttm_bo_evict(bo, ctx);
642 ttm_bo_unreserve(bo);
644 ttm_bo_move_to_lru_tail_unlocked(bo);
651 * ttm_bo_pin - Pin the buffer object.
652 * @bo: The buffer object to pin
654 * Make sure the buffer is not evicted any more during memory pressure.
655 * @bo must be unpinned again by calling ttm_bo_unpin().
657 void ttm_bo_pin(struct ttm_buffer_object *bo)
659 dma_resv_assert_held(bo->base.resv);
660 WARN_ON_ONCE(!kref_read(&bo->kref));
661 spin_lock(&bo->bdev->lru_lock);
663 ttm_resource_del_bulk_move(bo->resource, bo);
665 spin_unlock(&bo->bdev->lru_lock);
667 EXPORT_SYMBOL(ttm_bo_pin);
670 * ttm_bo_unpin - Unpin the buffer object.
671 * @bo: The buffer object to unpin
673 * Allows the buffer object to be evicted again during memory pressure.
675 void ttm_bo_unpin(struct ttm_buffer_object *bo)
677 dma_resv_assert_held(bo->base.resv);
678 WARN_ON_ONCE(!kref_read(&bo->kref));
679 if (WARN_ON_ONCE(!bo->pin_count))
682 spin_lock(&bo->bdev->lru_lock);
685 ttm_resource_add_bulk_move(bo->resource, bo);
686 spin_unlock(&bo->bdev->lru_lock);
688 EXPORT_SYMBOL(ttm_bo_unpin);
691 * Add the last move fence to the BO as kernel dependency and reserve a new
694 static int ttm_bo_add_move_fence(struct ttm_buffer_object *bo,
695 struct ttm_resource_manager *man,
696 struct ttm_resource *mem,
699 struct dma_fence *fence;
702 spin_lock(&man->move_lock);
703 fence = dma_fence_get(man->move);
704 spin_unlock(&man->move_lock);
710 ret = dma_fence_is_signaled(fence) ? 0 : -EBUSY;
711 dma_fence_put(fence);
715 dma_resv_add_fence(bo->base.resv, fence, DMA_RESV_USAGE_KERNEL);
717 ret = dma_resv_reserve_fences(bo->base.resv, 1);
718 dma_fence_put(fence);
723 * Repeatedly evict memory from the LRU for @mem_type until we create enough
724 * space, or we've evicted everything and there isn't enough space.
726 static int ttm_bo_mem_force_space(struct ttm_buffer_object *bo,
727 const struct ttm_place *place,
728 struct ttm_resource **mem,
729 struct ttm_operation_ctx *ctx)
731 struct ttm_device *bdev = bo->bdev;
732 struct ttm_resource_manager *man;
733 struct ww_acquire_ctx *ticket;
736 man = ttm_manager_type(bdev, place->mem_type);
737 ticket = dma_resv_locking_ctx(bo->base.resv);
739 ret = ttm_resource_alloc(bo, place, mem);
742 if (unlikely(ret != -ENOSPC))
744 ret = ttm_mem_evict_first(bdev, man, place, ctx,
746 if (unlikely(ret != 0))
750 return ttm_bo_add_move_fence(bo, man, *mem, ctx->no_wait_gpu);
756 * @bo: Pointer to a struct ttm_buffer_object. the data of which
757 * we want to allocate space for.
758 * @placement: Proposed new placement for the buffer object.
759 * @mem: A struct ttm_resource.
760 * @ctx: if and how to sleep, lock buffers and alloc memory
762 * Allocate memory space for the buffer object pointed to by @bo, using
763 * the placement flags in @placement, potentially evicting other idle buffer objects.
764 * This function may sleep while waiting for space to become available.
766 * -EBUSY: No space available (only if no_wait == 1).
767 * -ENOMEM: Could not allocate memory for the buffer object, either due to
768 * fragmentation or concurrent allocators.
769 * -ERESTARTSYS: An interruptible sleep was interrupted by a signal.
771 int ttm_bo_mem_space(struct ttm_buffer_object *bo,
772 struct ttm_placement *placement,
773 struct ttm_resource **mem,
774 struct ttm_operation_ctx *ctx)
776 struct ttm_device *bdev = bo->bdev;
777 bool type_found = false;
780 ret = dma_resv_reserve_fences(bo->base.resv, 1);
784 for (i = 0; i < placement->num_placement; ++i) {
785 const struct ttm_place *place = &placement->placement[i];
786 struct ttm_resource_manager *man;
788 man = ttm_manager_type(bdev, place->mem_type);
789 if (!man || !ttm_resource_manager_used(man))
793 ret = ttm_resource_alloc(bo, place, mem);
799 ret = ttm_bo_add_move_fence(bo, man, *mem, ctx->no_wait_gpu);
801 ttm_resource_free(bo, mem);
810 for (i = 0; i < placement->num_busy_placement; ++i) {
811 const struct ttm_place *place = &placement->busy_placement[i];
812 struct ttm_resource_manager *man;
814 man = ttm_manager_type(bdev, place->mem_type);
815 if (!man || !ttm_resource_manager_used(man))
819 ret = ttm_bo_mem_force_space(bo, place, mem, ctx);
823 if (ret && ret != -EBUSY)
829 pr_err(TTM_PFX "No compatible memory type found\n");
836 EXPORT_SYMBOL(ttm_bo_mem_space);
838 static int ttm_bo_move_buffer(struct ttm_buffer_object *bo,
839 struct ttm_placement *placement,
840 struct ttm_operation_ctx *ctx)
842 struct ttm_resource *mem;
843 struct ttm_place hop;
846 dma_resv_assert_held(bo->base.resv);
849 * Determine where to move the buffer.
851 * If driver determines move is going to need
852 * an extra step then it will return -EMULTIHOP
853 * and the buffer will be moved to the temporary
854 * stop and the driver will be called to make
857 ret = ttm_bo_mem_space(bo, placement, &mem, ctx);
861 ret = ttm_bo_handle_move_mem(bo, mem, false, ctx, &hop);
862 if (ret == -EMULTIHOP) {
863 ret = ttm_bo_bounce_temp_buffer(bo, &mem, ctx, &hop);
866 /* try and move to final place now. */
871 ttm_resource_free(bo, &mem);
878 * @bo: The buffer object.
879 * @placement: Proposed placement for the buffer object.
880 * @ctx: validation parameters.
882 * Changes placement and caching policy of the buffer object
883 * according proposed placement.
885 * -EINVAL on invalid proposed placement.
886 * -ENOMEM on out-of-memory condition.
887 * -EBUSY if no_wait is true and buffer busy.
888 * -ERESTARTSYS if interrupted by a signal.
890 int ttm_bo_validate(struct ttm_buffer_object *bo,
891 struct ttm_placement *placement,
892 struct ttm_operation_ctx *ctx)
896 dma_resv_assert_held(bo->base.resv);
899 * Remove the backing store if no placement is given.
901 if (!placement->num_placement && !placement->num_busy_placement)
902 return ttm_bo_pipeline_gutting(bo);
904 /* Check whether we need to move buffer. */
905 if (bo->resource && ttm_resource_compat(bo->resource, placement))
908 /* Moving of pinned BOs is forbidden */
912 ret = ttm_bo_move_buffer(bo, placement, ctx);
917 * We might need to add a TTM.
919 if (!bo->resource || bo->resource->mem_type == TTM_PL_SYSTEM) {
920 ret = ttm_tt_create(bo, true);
926 EXPORT_SYMBOL(ttm_bo_validate);
929 * ttm_bo_init_reserved
931 * @bdev: Pointer to a ttm_device struct.
932 * @bo: Pointer to a ttm_buffer_object to be initialized.
933 * @type: Requested type of buffer object.
934 * @placement: Initial placement for buffer object.
935 * @alignment: Data alignment in pages.
936 * @ctx: TTM operation context for memory allocation.
937 * @sg: Scatter-gather table.
938 * @resv: Pointer to a dma_resv, or NULL to let ttm allocate one.
939 * @destroy: Destroy function. Use NULL for kfree().
941 * This function initializes a pre-allocated struct ttm_buffer_object.
942 * As this object may be part of a larger structure, this function,
943 * together with the @destroy function, enables driver-specific objects
944 * derived from a ttm_buffer_object.
946 * On successful return, the caller owns an object kref to @bo. The kref and
947 * list_kref are usually set to 1, but note that in some situations, other
948 * tasks may already be holding references to @bo as well.
949 * Furthermore, if resv == NULL, the buffer's reservation lock will be held,
950 * and it is the caller's responsibility to call ttm_bo_unreserve.
952 * If a failure occurs, the function will call the @destroy function. Thus,
953 * after a failure, dereferencing @bo is illegal and will likely cause memory
957 * -ENOMEM: Out of memory.
958 * -EINVAL: Invalid placement flags.
959 * -ERESTARTSYS: Interrupted by signal while sleeping waiting for resources.
961 int ttm_bo_init_reserved(struct ttm_device *bdev, struct ttm_buffer_object *bo,
962 enum ttm_bo_type type, struct ttm_placement *placement,
963 uint32_t alignment, struct ttm_operation_ctx *ctx,
964 struct sg_table *sg, struct dma_resv *resv,
965 void (*destroy) (struct ttm_buffer_object *))
969 kref_init(&bo->kref);
972 bo->page_alignment = alignment;
973 bo->destroy = destroy;
976 bo->bulk_move = NULL;
978 bo->base.resv = resv;
980 bo->base.resv = &bo->base._resv;
981 atomic_inc(&ttm_glob.bo_count);
984 * For ttm_bo_type_device buffers, allocate
985 * address space from the device.
987 if (bo->type == ttm_bo_type_device || bo->type == ttm_bo_type_sg) {
988 ret = drm_vma_offset_add(bdev->vma_manager, &bo->base.vma_node,
989 PFN_UP(bo->base.size));
994 /* passed reservation objects should already be locked,
995 * since otherwise lockdep will be angered in radeon.
998 WARN_ON(!dma_resv_trylock(bo->base.resv));
1000 dma_resv_assert_held(resv);
1002 ret = ttm_bo_validate(bo, placement, ctx);
1010 dma_resv_unlock(bo->base.resv);
1016 EXPORT_SYMBOL(ttm_bo_init_reserved);
1019 * ttm_bo_init_validate
1021 * @bdev: Pointer to a ttm_device struct.
1022 * @bo: Pointer to a ttm_buffer_object to be initialized.
1023 * @type: Requested type of buffer object.
1024 * @placement: Initial placement for buffer object.
1025 * @alignment: Data alignment in pages.
1026 * @interruptible: If needing to sleep to wait for GPU resources,
1027 * sleep interruptible.
1028 * pinned in physical memory. If this behaviour is not desired, this member
1029 * holds a pointer to a persistent shmem object. Typically, this would
1030 * point to the shmem object backing a GEM object if TTM is used to back a
1031 * GEM user interface.
1032 * @sg: Scatter-gather table.
1033 * @resv: Pointer to a dma_resv, or NULL to let ttm allocate one.
1034 * @destroy: Destroy function. Use NULL for kfree().
1036 * This function initializes a pre-allocated struct ttm_buffer_object.
1037 * As this object may be part of a larger structure, this function,
1038 * together with the @destroy function,
1039 * enables driver-specific objects derived from a ttm_buffer_object.
1041 * On successful return, the caller owns an object kref to @bo. The kref and
1042 * list_kref are usually set to 1, but note that in some situations, other
1043 * tasks may already be holding references to @bo as well.
1045 * If a failure occurs, the function will call the @destroy function, Thus,
1046 * after a failure, dereferencing @bo is illegal and will likely cause memory
1050 * -ENOMEM: Out of memory.
1051 * -EINVAL: Invalid placement flags.
1052 * -ERESTARTSYS: Interrupted by signal while sleeping waiting for resources.
1054 int ttm_bo_init_validate(struct ttm_device *bdev, struct ttm_buffer_object *bo,
1055 enum ttm_bo_type type, struct ttm_placement *placement,
1056 uint32_t alignment, bool interruptible,
1057 struct sg_table *sg, struct dma_resv *resv,
1058 void (*destroy) (struct ttm_buffer_object *))
1060 struct ttm_operation_ctx ctx = { interruptible, false };
1063 ret = ttm_bo_init_reserved(bdev, bo, type, placement, alignment, &ctx,
1069 ttm_bo_unreserve(bo);
1073 EXPORT_SYMBOL(ttm_bo_init_validate);
1076 * buffer object vm functions.
1080 * ttm_bo_unmap_virtual
1082 * @bo: tear down the virtual mappings for this BO
1084 void ttm_bo_unmap_virtual(struct ttm_buffer_object *bo)
1086 struct ttm_device *bdev = bo->bdev;
1088 drm_vma_node_unmap(&bo->base.vma_node, bdev->dev_mapping);
1089 ttm_mem_io_free(bdev, bo->resource);
1091 EXPORT_SYMBOL(ttm_bo_unmap_virtual);
1094 * ttm_bo_wait_ctx - wait for buffer idle.
1096 * @bo: The buffer object.
1097 * @ctx: defines how to wait
1099 * Waits for the buffer to be idle. Used timeout depends on the context.
1100 * Returns -EBUSY if wait timed outt, -ERESTARTSYS if interrupted by a signal or
1103 int ttm_bo_wait_ctx(struct ttm_buffer_object *bo, struct ttm_operation_ctx *ctx)
1107 if (ctx->no_wait_gpu) {
1108 if (dma_resv_test_signaled(bo->base.resv,
1109 DMA_RESV_USAGE_BOOKKEEP))
1115 ret = dma_resv_wait_timeout(bo->base.resv, DMA_RESV_USAGE_BOOKKEEP,
1116 ctx->interruptible, 15 * HZ);
1117 if (unlikely(ret < 0))
1119 if (unlikely(ret == 0))
1123 EXPORT_SYMBOL(ttm_bo_wait_ctx);
1125 int ttm_bo_swapout(struct ttm_buffer_object *bo, struct ttm_operation_ctx *ctx,
1128 struct ttm_place place;
1133 * While the bo may already reside in SYSTEM placement, set
1134 * SYSTEM as new placement to cover also the move further below.
1135 * The driver may use the fact that we're moving from SYSTEM
1136 * as an indication that we're about to swap out.
1138 memset(&place, 0, sizeof(place));
1139 place.mem_type = bo->resource->mem_type;
1140 if (!ttm_bo_evict_swapout_allowable(bo, ctx, &place, &locked, NULL))
1143 if (!bo->ttm || !ttm_tt_is_populated(bo->ttm) ||
1144 bo->ttm->page_flags & TTM_TT_FLAG_EXTERNAL ||
1145 bo->ttm->page_flags & TTM_TT_FLAG_SWAPPED ||
1146 !ttm_bo_get_unless_zero(bo)) {
1148 dma_resv_unlock(bo->base.resv);
1153 ret = ttm_bo_cleanup_refs(bo, false, false, locked);
1155 return ret == -EBUSY ? -ENOSPC : ret;
1158 /* TODO: Cleanup the locking */
1159 spin_unlock(&bo->bdev->lru_lock);
1162 * Move to system cached
1164 if (bo->resource->mem_type != TTM_PL_SYSTEM) {
1165 struct ttm_resource *evict_mem;
1166 struct ttm_place hop;
1168 memset(&hop, 0, sizeof(hop));
1169 place.mem_type = TTM_PL_SYSTEM;
1170 ret = ttm_resource_alloc(bo, &place, &evict_mem);
1174 ret = ttm_bo_handle_move_mem(bo, evict_mem, true, ctx, &hop);
1175 if (unlikely(ret != 0)) {
1176 WARN(ret == -EMULTIHOP, "Unexpected multihop in swaput - likely driver bug.\n");
1177 ttm_resource_free(bo, &evict_mem);
1183 * Make sure BO is idle.
1185 ret = ttm_bo_wait_ctx(bo, ctx);
1186 if (unlikely(ret != 0))
1189 ttm_bo_unmap_virtual(bo);
1192 * Swap out. Buffer will be swapped in again as soon as
1193 * anyone tries to access a ttm page.
1195 if (bo->bdev->funcs->swap_notify)
1196 bo->bdev->funcs->swap_notify(bo);
1198 if (ttm_tt_is_populated(bo->ttm))
1199 ret = ttm_tt_swapout(bo->bdev, bo->ttm, gfp_flags);
1203 * Unreserve without putting on LRU to avoid swapping out an
1204 * already swapped buffer.
1207 dma_resv_unlock(bo->base.resv);
1209 return ret == -EBUSY ? -ENOSPC : ret;
1212 void ttm_bo_tt_destroy(struct ttm_buffer_object *bo)
1214 if (bo->ttm == NULL)
1217 ttm_tt_unpopulate(bo->bdev, bo->ttm);
1218 ttm_tt_destroy(bo->bdev, bo->ttm);