2 * Copyright 2020 Advanced Micro Devices, Inc.
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:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
22 * Authors: Christian König
25 #include <linux/iosys-map.h>
26 #include <linux/io-mapping.h>
27 #include <linux/scatterlist.h>
29 #include <drm/ttm/ttm_resource.h>
30 #include <drm/ttm/ttm_bo_driver.h>
33 * ttm_lru_bulk_move_init - initialize a bulk move structure
34 * @bulk: the structure to init
36 * For now just memset the structure to zero.
38 void ttm_lru_bulk_move_init(struct ttm_lru_bulk_move *bulk)
40 memset(bulk, 0, sizeof(*bulk));
42 EXPORT_SYMBOL(ttm_lru_bulk_move_init);
45 * ttm_lru_bulk_move_tail - bulk move range of resources to the LRU tail.
47 * @bulk: bulk move structure
49 * Bulk move BOs to the LRU tail, only valid to use when driver makes sure that
50 * resource order never changes. Should be called with &ttm_device.lru_lock held.
52 void ttm_lru_bulk_move_tail(struct ttm_lru_bulk_move *bulk)
56 for (i = 0; i < TTM_NUM_MEM_TYPES; ++i) {
57 for (j = 0; j < TTM_MAX_BO_PRIORITY; ++j) {
58 struct ttm_lru_bulk_move_pos *pos = &bulk->pos[i][j];
59 struct ttm_resource_manager *man;
64 lockdep_assert_held(&pos->first->bo->bdev->lru_lock);
65 dma_resv_assert_held(pos->first->bo->base.resv);
66 dma_resv_assert_held(pos->last->bo->base.resv);
68 man = ttm_manager_type(pos->first->bo->bdev, i);
69 list_bulk_move_tail(&man->lru[j], &pos->first->lru,
74 EXPORT_SYMBOL(ttm_lru_bulk_move_tail);
76 /* Return the bulk move pos object for this resource */
77 static struct ttm_lru_bulk_move_pos *
78 ttm_lru_bulk_move_pos(struct ttm_lru_bulk_move *bulk, struct ttm_resource *res)
80 return &bulk->pos[res->mem_type][res->bo->priority];
83 /* Move the resource to the tail of the bulk move range */
84 static void ttm_lru_bulk_move_pos_tail(struct ttm_lru_bulk_move_pos *pos,
85 struct ttm_resource *res)
87 if (pos->last != res) {
88 list_move(&res->lru, &pos->last->lru);
93 /* Add the resource to a bulk_move cursor */
94 static void ttm_lru_bulk_move_add(struct ttm_lru_bulk_move *bulk,
95 struct ttm_resource *res)
97 struct ttm_lru_bulk_move_pos *pos = ttm_lru_bulk_move_pos(bulk, res);
103 ttm_lru_bulk_move_pos_tail(pos, res);
107 /* Remove the resource from a bulk_move range */
108 static void ttm_lru_bulk_move_del(struct ttm_lru_bulk_move *bulk,
109 struct ttm_resource *res)
111 struct ttm_lru_bulk_move_pos *pos = ttm_lru_bulk_move_pos(bulk, res);
113 if (unlikely(pos->first == res && pos->last == res)) {
116 } else if (pos->first == res) {
117 pos->first = list_next_entry(res, lru);
118 } else if (pos->last == res) {
119 pos->last = list_prev_entry(res, lru);
121 list_move(&res->lru, &pos->last->lru);
125 /* Add the resource to a bulk move if the BO is configured for it */
126 void ttm_resource_add_bulk_move(struct ttm_resource *res,
127 struct ttm_buffer_object *bo)
129 if (bo->bulk_move && !bo->pin_count)
130 ttm_lru_bulk_move_add(bo->bulk_move, res);
133 /* Remove the resource from a bulk move if the BO is configured for it */
134 void ttm_resource_del_bulk_move(struct ttm_resource *res,
135 struct ttm_buffer_object *bo)
137 if (bo->bulk_move && !bo->pin_count)
138 ttm_lru_bulk_move_del(bo->bulk_move, res);
141 /* Move a resource to the LRU or bulk tail */
142 void ttm_resource_move_to_lru_tail(struct ttm_resource *res)
144 struct ttm_buffer_object *bo = res->bo;
145 struct ttm_device *bdev = bo->bdev;
147 lockdep_assert_held(&bo->bdev->lru_lock);
150 list_move_tail(&res->lru, &bdev->pinned);
152 } else if (bo->bulk_move) {
153 struct ttm_lru_bulk_move_pos *pos =
154 ttm_lru_bulk_move_pos(bo->bulk_move, res);
156 ttm_lru_bulk_move_pos_tail(pos, res);
158 struct ttm_resource_manager *man;
160 man = ttm_manager_type(bdev, res->mem_type);
161 list_move_tail(&res->lru, &man->lru[bo->priority]);
166 * ttm_resource_init - resource object constructure
167 * @bo: buffer object this resources is allocated for
168 * @place: placement of the resource
169 * @res: the resource object to inistilize
171 * Initialize a new resource object. Counterpart of ttm_resource_fini().
173 void ttm_resource_init(struct ttm_buffer_object *bo,
174 const struct ttm_place *place,
175 struct ttm_resource *res)
177 struct ttm_resource_manager *man;
180 res->num_pages = PFN_UP(bo->base.size);
181 res->mem_type = place->mem_type;
182 res->placement = place->flags;
183 res->bus.addr = NULL;
185 res->bus.is_iomem = false;
186 res->bus.caching = ttm_cached;
189 man = ttm_manager_type(bo->bdev, place->mem_type);
190 spin_lock(&bo->bdev->lru_lock);
192 list_add_tail(&res->lru, &bo->bdev->pinned);
194 list_add_tail(&res->lru, &man->lru[bo->priority]);
195 man->usage += res->num_pages << PAGE_SHIFT;
196 spin_unlock(&bo->bdev->lru_lock);
198 EXPORT_SYMBOL(ttm_resource_init);
201 * ttm_resource_fini - resource destructor
202 * @man: the resource manager this resource belongs to
203 * @res: the resource to clean up
205 * Should be used by resource manager backends to clean up the TTM resource
206 * objects before freeing the underlying structure. Makes sure the resource is
207 * removed from the LRU before destruction.
208 * Counterpart of ttm_resource_init().
210 void ttm_resource_fini(struct ttm_resource_manager *man,
211 struct ttm_resource *res)
213 struct ttm_device *bdev = man->bdev;
215 spin_lock(&bdev->lru_lock);
216 list_del_init(&res->lru);
217 man->usage -= res->num_pages << PAGE_SHIFT;
218 spin_unlock(&bdev->lru_lock);
220 EXPORT_SYMBOL(ttm_resource_fini);
222 int ttm_resource_alloc(struct ttm_buffer_object *bo,
223 const struct ttm_place *place,
224 struct ttm_resource **res_ptr)
226 struct ttm_resource_manager *man =
227 ttm_manager_type(bo->bdev, place->mem_type);
230 ret = man->func->alloc(man, bo, place, res_ptr);
234 spin_lock(&bo->bdev->lru_lock);
235 ttm_resource_add_bulk_move(*res_ptr, bo);
236 spin_unlock(&bo->bdev->lru_lock);
240 void ttm_resource_free(struct ttm_buffer_object *bo, struct ttm_resource **res)
242 struct ttm_resource_manager *man;
247 spin_lock(&bo->bdev->lru_lock);
248 ttm_resource_del_bulk_move(*res, bo);
249 spin_unlock(&bo->bdev->lru_lock);
250 man = ttm_manager_type(bo->bdev, (*res)->mem_type);
251 man->func->free(man, *res);
254 EXPORT_SYMBOL(ttm_resource_free);
257 * ttm_resource_intersects - test for intersection
259 * @bdev: TTM device structure
260 * @res: The resource to test
261 * @place: The placement to test
262 * @size: How many bytes the new allocation needs.
264 * Test if @res intersects with @place and @size. Used for testing if evictions
265 * are valueable or not.
267 * Returns true if the res placement intersects with @place and @size.
269 bool ttm_resource_intersects(struct ttm_device *bdev,
270 struct ttm_resource *res,
271 const struct ttm_place *place,
274 struct ttm_resource_manager *man;
279 man = ttm_manager_type(bdev, res->mem_type);
280 if (!place || !man->func->intersects)
283 return man->func->intersects(man, res, place, size);
287 * ttm_resource_compatible - test for compatibility
289 * @bdev: TTM device structure
290 * @res: The resource to test
291 * @place: The placement to test
292 * @size: How many bytes the new allocation needs.
294 * Test if @res compatible with @place and @size.
296 * Returns true if the res placement compatible with @place and @size.
298 bool ttm_resource_compatible(struct ttm_device *bdev,
299 struct ttm_resource *res,
300 const struct ttm_place *place,
303 struct ttm_resource_manager *man;
308 man = ttm_manager_type(bdev, res->mem_type);
309 if (!man->func->compatible)
312 return man->func->compatible(man, res, place, size);
315 static bool ttm_resource_places_compat(struct ttm_resource *res,
316 const struct ttm_place *places,
317 unsigned num_placement)
319 struct ttm_buffer_object *bo = res->bo;
320 struct ttm_device *bdev = bo->bdev;
323 if (res->placement & TTM_PL_FLAG_TEMPORARY)
326 for (i = 0; i < num_placement; i++) {
327 const struct ttm_place *heap = &places[i];
329 if (!ttm_resource_compatible(bdev, res, heap, bo->base.size))
332 if ((res->mem_type == heap->mem_type) &&
333 (!(heap->flags & TTM_PL_FLAG_CONTIGUOUS) ||
334 (res->placement & TTM_PL_FLAG_CONTIGUOUS)))
341 * ttm_resource_compat - check if resource is compatible with placement
343 * @res: the resource to check
344 * @placement: the placement to check against
346 * Returns true if the placement is compatible.
348 bool ttm_resource_compat(struct ttm_resource *res,
349 struct ttm_placement *placement)
351 if (ttm_resource_places_compat(res, placement->placement,
352 placement->num_placement))
355 if ((placement->busy_placement != placement->placement ||
356 placement->num_busy_placement > placement->num_placement) &&
357 ttm_resource_places_compat(res, placement->busy_placement,
358 placement->num_busy_placement))
363 EXPORT_SYMBOL(ttm_resource_compat);
365 void ttm_resource_set_bo(struct ttm_resource *res,
366 struct ttm_buffer_object *bo)
368 spin_lock(&bo->bdev->lru_lock);
370 spin_unlock(&bo->bdev->lru_lock);
374 * ttm_resource_manager_init
376 * @man: memory manager object to init
377 * @bdev: ttm device this manager belongs to
378 * @size: size of managed resources in arbitrary units
380 * Initialise core parts of a manager object.
382 void ttm_resource_manager_init(struct ttm_resource_manager *man,
383 struct ttm_device *bdev,
388 spin_lock_init(&man->move_lock);
393 for (i = 0; i < TTM_MAX_BO_PRIORITY; ++i)
394 INIT_LIST_HEAD(&man->lru[i]);
397 EXPORT_SYMBOL(ttm_resource_manager_init);
400 * ttm_resource_manager_evict_all
402 * @bdev - device to use
403 * @man - manager to use
405 * Evict all the objects out of a memory manager until it is empty.
406 * Part of memory manager cleanup sequence.
408 int ttm_resource_manager_evict_all(struct ttm_device *bdev,
409 struct ttm_resource_manager *man)
411 struct ttm_operation_ctx ctx = {
412 .interruptible = false,
413 .no_wait_gpu = false,
416 struct dma_fence *fence;
421 * Can't use standard list traversal since we're unlocking.
424 spin_lock(&bdev->lru_lock);
425 for (i = 0; i < TTM_MAX_BO_PRIORITY; ++i) {
426 while (!list_empty(&man->lru[i])) {
427 spin_unlock(&bdev->lru_lock);
428 ret = ttm_mem_evict_first(bdev, man, NULL, &ctx,
432 spin_lock(&bdev->lru_lock);
435 spin_unlock(&bdev->lru_lock);
437 spin_lock(&man->move_lock);
438 fence = dma_fence_get(man->move);
439 spin_unlock(&man->move_lock);
442 ret = dma_fence_wait(fence, false);
443 dma_fence_put(fence);
450 EXPORT_SYMBOL(ttm_resource_manager_evict_all);
453 * ttm_resource_manager_usage
455 * @man: A memory manager object.
457 * Return how many resources are currently used.
459 uint64_t ttm_resource_manager_usage(struct ttm_resource_manager *man)
463 spin_lock(&man->bdev->lru_lock);
465 spin_unlock(&man->bdev->lru_lock);
468 EXPORT_SYMBOL(ttm_resource_manager_usage);
471 * ttm_resource_manager_debug
473 * @man: manager type to dump.
474 * @p: printer to use for debug.
476 void ttm_resource_manager_debug(struct ttm_resource_manager *man,
477 struct drm_printer *p)
479 drm_printf(p, " use_type: %d\n", man->use_type);
480 drm_printf(p, " use_tt: %d\n", man->use_tt);
481 drm_printf(p, " size: %llu\n", man->size);
482 drm_printf(p, " usage: %llu\n", ttm_resource_manager_usage(man));
483 if (man->func->debug)
484 man->func->debug(man, p);
486 EXPORT_SYMBOL(ttm_resource_manager_debug);
489 * ttm_resource_manager_first
491 * @man: resource manager to iterate over
492 * @cursor: cursor to record the position
494 * Returns the first resource from the resource manager.
496 struct ttm_resource *
497 ttm_resource_manager_first(struct ttm_resource_manager *man,
498 struct ttm_resource_cursor *cursor)
500 struct ttm_resource *res;
502 lockdep_assert_held(&man->bdev->lru_lock);
504 for (cursor->priority = 0; cursor->priority < TTM_MAX_BO_PRIORITY;
506 list_for_each_entry(res, &man->lru[cursor->priority], lru)
513 * ttm_resource_manager_next
515 * @man: resource manager to iterate over
516 * @cursor: cursor to record the position
517 * @res: the current resource pointer
519 * Returns the next resource from the resource manager.
521 struct ttm_resource *
522 ttm_resource_manager_next(struct ttm_resource_manager *man,
523 struct ttm_resource_cursor *cursor,
524 struct ttm_resource *res)
526 lockdep_assert_held(&man->bdev->lru_lock);
528 list_for_each_entry_continue(res, &man->lru[cursor->priority], lru)
531 for (++cursor->priority; cursor->priority < TTM_MAX_BO_PRIORITY;
533 list_for_each_entry(res, &man->lru[cursor->priority], lru)
539 static void ttm_kmap_iter_iomap_map_local(struct ttm_kmap_iter *iter,
540 struct iosys_map *dmap,
543 struct ttm_kmap_iter_iomap *iter_io =
544 container_of(iter, typeof(*iter_io), base);
548 while (i >= iter_io->cache.end) {
549 iter_io->cache.sg = iter_io->cache.sg ?
550 sg_next(iter_io->cache.sg) : iter_io->st->sgl;
551 iter_io->cache.i = iter_io->cache.end;
552 iter_io->cache.end += sg_dma_len(iter_io->cache.sg) >>
554 iter_io->cache.offs = sg_dma_address(iter_io->cache.sg) -
558 if (i < iter_io->cache.i) {
559 iter_io->cache.end = 0;
560 iter_io->cache.sg = NULL;
564 addr = io_mapping_map_local_wc(iter_io->iomap, iter_io->cache.offs +
565 (((resource_size_t)i - iter_io->cache.i)
567 iosys_map_set_vaddr_iomem(dmap, addr);
570 static void ttm_kmap_iter_iomap_unmap_local(struct ttm_kmap_iter *iter,
571 struct iosys_map *map)
573 io_mapping_unmap_local(map->vaddr_iomem);
576 static const struct ttm_kmap_iter_ops ttm_kmap_iter_io_ops = {
577 .map_local = ttm_kmap_iter_iomap_map_local,
578 .unmap_local = ttm_kmap_iter_iomap_unmap_local,
583 * ttm_kmap_iter_iomap_init - Initialize a struct ttm_kmap_iter_iomap
584 * @iter_io: The struct ttm_kmap_iter_iomap to initialize.
585 * @iomap: The struct io_mapping representing the underlying linear io_memory.
586 * @st: sg_table into @iomap, representing the memory of the struct
588 * @start: Offset that needs to be subtracted from @st to make
589 * sg_dma_address(st->sgl) - @start == 0 for @iomap start.
591 * Return: Pointer to the embedded struct ttm_kmap_iter.
593 struct ttm_kmap_iter *
594 ttm_kmap_iter_iomap_init(struct ttm_kmap_iter_iomap *iter_io,
595 struct io_mapping *iomap,
597 resource_size_t start)
599 iter_io->base.ops = &ttm_kmap_iter_io_ops;
600 iter_io->iomap = iomap;
602 iter_io->start = start;
603 memset(&iter_io->cache, 0, sizeof(iter_io->cache));
605 return &iter_io->base;
607 EXPORT_SYMBOL(ttm_kmap_iter_iomap_init);
610 * DOC: Linear io iterator
612 * This code should die in the not too near future. Best would be if we could
613 * make io-mapping use memremap for all io memory, and have memremap
614 * implement a kmap_local functionality. We could then strip a huge amount of
615 * code. These linear io iterators are implemented to mimic old functionality,
616 * and they don't use kmap_local semantics at all internally. Rather ioremap or
617 * friends, and at least on 32-bit they add global TLB flushes and points
621 static void ttm_kmap_iter_linear_io_map_local(struct ttm_kmap_iter *iter,
622 struct iosys_map *dmap,
625 struct ttm_kmap_iter_linear_io *iter_io =
626 container_of(iter, typeof(*iter_io), base);
628 *dmap = iter_io->dmap;
629 iosys_map_incr(dmap, i * PAGE_SIZE);
632 static const struct ttm_kmap_iter_ops ttm_kmap_iter_linear_io_ops = {
633 .map_local = ttm_kmap_iter_linear_io_map_local,
638 * ttm_kmap_iter_linear_io_init - Initialize an iterator for linear io memory
639 * @iter_io: The iterator to initialize
640 * @bdev: The TTM device
641 * @mem: The ttm resource representing the iomap.
643 * This function is for internal TTM use only. It sets up a memcpy kmap iterator
644 * pointing at a linear chunk of io memory.
646 * Return: A pointer to the embedded struct ttm_kmap_iter or error pointer on
649 struct ttm_kmap_iter *
650 ttm_kmap_iter_linear_io_init(struct ttm_kmap_iter_linear_io *iter_io,
651 struct ttm_device *bdev,
652 struct ttm_resource *mem)
656 ret = ttm_mem_io_reserve(bdev, mem);
659 if (!mem->bus.is_iomem) {
665 iosys_map_set_vaddr(&iter_io->dmap, mem->bus.addr);
666 iter_io->needs_unmap = false;
668 size_t bus_size = (size_t)mem->num_pages << PAGE_SHIFT;
670 iter_io->needs_unmap = true;
671 memset(&iter_io->dmap, 0, sizeof(iter_io->dmap));
672 if (mem->bus.caching == ttm_write_combined)
673 iosys_map_set_vaddr_iomem(&iter_io->dmap,
674 ioremap_wc(mem->bus.offset,
676 else if (mem->bus.caching == ttm_cached)
677 iosys_map_set_vaddr(&iter_io->dmap,
678 memremap(mem->bus.offset, bus_size,
683 /* If uncached requested or if mapping cached or wc failed */
684 if (iosys_map_is_null(&iter_io->dmap))
685 iosys_map_set_vaddr_iomem(&iter_io->dmap,
686 ioremap(mem->bus.offset,
689 if (iosys_map_is_null(&iter_io->dmap)) {
695 iter_io->base.ops = &ttm_kmap_iter_linear_io_ops;
696 return &iter_io->base;
699 ttm_mem_io_free(bdev, mem);
705 * ttm_kmap_iter_linear_io_fini - Clean up an iterator for linear io memory
706 * @iter_io: The iterator to initialize
707 * @bdev: The TTM device
708 * @mem: The ttm resource representing the iomap.
710 * This function is for internal TTM use only. It cleans up a memcpy kmap
711 * iterator initialized by ttm_kmap_iter_linear_io_init.
714 ttm_kmap_iter_linear_io_fini(struct ttm_kmap_iter_linear_io *iter_io,
715 struct ttm_device *bdev,
716 struct ttm_resource *mem)
718 if (iter_io->needs_unmap && iosys_map_is_set(&iter_io->dmap)) {
719 if (iter_io->dmap.is_iomem)
720 iounmap(iter_io->dmap.vaddr_iomem);
722 memunmap(iter_io->dmap.vaddr);
725 ttm_mem_io_free(bdev, mem);
728 #if defined(CONFIG_DEBUG_FS)
730 static int ttm_resource_manager_show(struct seq_file *m, void *unused)
732 struct ttm_resource_manager *man =
733 (struct ttm_resource_manager *)m->private;
734 struct drm_printer p = drm_seq_file_printer(m);
735 ttm_resource_manager_debug(man, &p);
738 DEFINE_SHOW_ATTRIBUTE(ttm_resource_manager);
743 * ttm_resource_manager_create_debugfs - Create debugfs entry for specified
745 * @man: The TTM resource manager for which the debugfs stats file be creates
746 * @parent: debugfs directory in which the file will reside
747 * @name: The filename to create.
749 * This function setups up a debugfs file that can be used to look
750 * at debug statistics of the specified ttm_resource_manager.
752 void ttm_resource_manager_create_debugfs(struct ttm_resource_manager *man,
753 struct dentry * parent,
756 #if defined(CONFIG_DEBUG_FS)
757 debugfs_create_file(name, 0444, parent, man, &ttm_resource_manager_fops);
760 EXPORT_SYMBOL(ttm_resource_manager_create_debugfs);