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 <linux/sched.h>
35 #include <linux/shmem_fs.h>
36 #include <linux/file.h>
37 #include <linux/module.h>
38 #include <drm/drm_cache.h>
39 #include <drm/ttm/ttm_bo.h>
40 #include <drm/ttm/ttm_tt.h>
42 #include "ttm_module.h"
44 static unsigned long ttm_pages_limit;
46 MODULE_PARM_DESC(pages_limit, "Limit for the allocated pages");
47 module_param_named(pages_limit, ttm_pages_limit, ulong, 0644);
49 static unsigned long ttm_dma32_pages_limit;
51 MODULE_PARM_DESC(dma32_pages_limit, "Limit for the allocated DMA32 pages");
52 module_param_named(dma32_pages_limit, ttm_dma32_pages_limit, ulong, 0644);
54 static atomic_long_t ttm_pages_allocated;
55 static atomic_long_t ttm_dma32_pages_allocated;
58 * Allocates a ttm structure for the given BO.
60 int ttm_tt_create(struct ttm_buffer_object *bo, bool zero_alloc)
62 struct ttm_device *bdev = bo->bdev;
63 uint32_t page_flags = 0;
65 dma_resv_assert_held(bo->base.resv);
71 case ttm_bo_type_device:
73 page_flags |= TTM_TT_FLAG_ZERO_ALLOC;
75 case ttm_bo_type_kernel:
78 page_flags |= TTM_TT_FLAG_EXTERNAL;
81 pr_err("Illegal buffer object type\n");
85 bo->ttm = bdev->funcs->ttm_tt_create(bo, page_flags);
86 if (unlikely(bo->ttm == NULL))
89 WARN_ON(bo->ttm->page_flags & TTM_TT_FLAG_EXTERNAL_MAPPABLE &&
90 !(bo->ttm->page_flags & TTM_TT_FLAG_EXTERNAL));
96 * Allocates storage for pointers to the pages that back the ttm.
98 static int ttm_tt_alloc_page_directory(struct ttm_tt *ttm)
100 ttm->pages = kvcalloc(ttm->num_pages, sizeof(void*), GFP_KERNEL);
107 static int ttm_dma_tt_alloc_page_directory(struct ttm_tt *ttm)
109 ttm->pages = kvcalloc(ttm->num_pages, sizeof(*ttm->pages) +
110 sizeof(*ttm->dma_address), GFP_KERNEL);
114 ttm->dma_address = (void *)(ttm->pages + ttm->num_pages);
118 static int ttm_sg_tt_alloc_page_directory(struct ttm_tt *ttm)
120 ttm->dma_address = kvcalloc(ttm->num_pages, sizeof(*ttm->dma_address),
122 if (!ttm->dma_address)
128 void ttm_tt_destroy(struct ttm_device *bdev, struct ttm_tt *ttm)
130 bdev->funcs->ttm_tt_destroy(bdev, ttm);
133 static void ttm_tt_init_fields(struct ttm_tt *ttm,
134 struct ttm_buffer_object *bo,
136 enum ttm_caching caching,
137 unsigned long extra_pages)
139 ttm->num_pages = (PAGE_ALIGN(bo->base.size) >> PAGE_SHIFT) + extra_pages;
140 ttm->page_flags = page_flags;
141 ttm->dma_address = NULL;
142 ttm->swap_storage = NULL;
144 ttm->caching = caching;
147 int ttm_tt_init(struct ttm_tt *ttm, struct ttm_buffer_object *bo,
148 uint32_t page_flags, enum ttm_caching caching,
149 unsigned long extra_pages)
151 ttm_tt_init_fields(ttm, bo, page_flags, caching, extra_pages);
153 if (ttm_tt_alloc_page_directory(ttm)) {
154 pr_err("Failed allocating page table\n");
159 EXPORT_SYMBOL(ttm_tt_init);
161 void ttm_tt_fini(struct ttm_tt *ttm)
163 WARN_ON(ttm->page_flags & TTM_TT_FLAG_PRIV_POPULATED);
165 if (ttm->swap_storage)
166 fput(ttm->swap_storage);
167 ttm->swap_storage = NULL;
172 kvfree(ttm->dma_address);
174 ttm->dma_address = NULL;
176 EXPORT_SYMBOL(ttm_tt_fini);
178 int ttm_sg_tt_init(struct ttm_tt *ttm, struct ttm_buffer_object *bo,
179 uint32_t page_flags, enum ttm_caching caching)
183 ttm_tt_init_fields(ttm, bo, page_flags, caching, 0);
185 if (page_flags & TTM_TT_FLAG_EXTERNAL)
186 ret = ttm_sg_tt_alloc_page_directory(ttm);
188 ret = ttm_dma_tt_alloc_page_directory(ttm);
190 pr_err("Failed allocating page table\n");
195 EXPORT_SYMBOL(ttm_sg_tt_init);
197 int ttm_tt_swapin(struct ttm_tt *ttm)
199 struct address_space *swap_space;
200 struct file *swap_storage;
201 struct page *from_page;
202 struct page *to_page;
206 swap_storage = ttm->swap_storage;
207 BUG_ON(swap_storage == NULL);
209 swap_space = swap_storage->f_mapping;
210 gfp_mask = mapping_gfp_mask(swap_space);
212 for (i = 0; i < ttm->num_pages; ++i) {
213 from_page = shmem_read_mapping_page_gfp(swap_space, i,
215 if (IS_ERR(from_page)) {
216 ret = PTR_ERR(from_page);
219 to_page = ttm->pages[i];
220 if (unlikely(to_page == NULL)) {
225 copy_highpage(to_page, from_page);
230 ttm->swap_storage = NULL;
231 ttm->page_flags &= ~TTM_TT_FLAG_SWAPPED;
240 * ttm_tt_swapout - swap out tt object
242 * @bdev: TTM device structure.
243 * @ttm: The struct ttm_tt.
244 * @gfp_flags: Flags to use for memory allocation.
246 * Swapout a TT object to a shmem_file, return number of pages swapped out or
247 * negative error code.
249 int ttm_tt_swapout(struct ttm_device *bdev, struct ttm_tt *ttm,
252 loff_t size = (loff_t)ttm->num_pages << PAGE_SHIFT;
253 struct address_space *swap_space;
254 struct file *swap_storage;
255 struct page *from_page;
256 struct page *to_page;
259 swap_storage = shmem_file_setup("ttm swap", size, 0);
260 if (IS_ERR(swap_storage)) {
261 pr_err("Failed allocating swap storage\n");
262 return PTR_ERR(swap_storage);
265 swap_space = swap_storage->f_mapping;
266 gfp_flags &= mapping_gfp_mask(swap_space);
268 for (i = 0; i < ttm->num_pages; ++i) {
269 from_page = ttm->pages[i];
270 if (unlikely(from_page == NULL))
273 to_page = shmem_read_mapping_page_gfp(swap_space, i, gfp_flags);
274 if (IS_ERR(to_page)) {
275 ret = PTR_ERR(to_page);
278 copy_highpage(to_page, from_page);
279 set_page_dirty(to_page);
280 mark_page_accessed(to_page);
284 ttm_tt_unpopulate(bdev, ttm);
285 ttm->swap_storage = swap_storage;
286 ttm->page_flags |= TTM_TT_FLAG_SWAPPED;
288 return ttm->num_pages;
296 int ttm_tt_populate(struct ttm_device *bdev,
297 struct ttm_tt *ttm, struct ttm_operation_ctx *ctx)
304 if (ttm_tt_is_populated(ttm))
307 if (!(ttm->page_flags & TTM_TT_FLAG_EXTERNAL)) {
308 atomic_long_add(ttm->num_pages, &ttm_pages_allocated);
309 if (bdev->pool.use_dma32)
310 atomic_long_add(ttm->num_pages,
311 &ttm_dma32_pages_allocated);
314 while (atomic_long_read(&ttm_pages_allocated) > ttm_pages_limit ||
315 atomic_long_read(&ttm_dma32_pages_allocated) >
316 ttm_dma32_pages_limit) {
318 ret = ttm_global_swapout(ctx, GFP_KERNEL);
325 if (bdev->funcs->ttm_tt_populate)
326 ret = bdev->funcs->ttm_tt_populate(bdev, ttm, ctx);
328 ret = ttm_pool_alloc(&bdev->pool, ttm, ctx);
332 ttm->page_flags |= TTM_TT_FLAG_PRIV_POPULATED;
333 if (unlikely(ttm->page_flags & TTM_TT_FLAG_SWAPPED)) {
334 ret = ttm_tt_swapin(ttm);
335 if (unlikely(ret != 0)) {
336 ttm_tt_unpopulate(bdev, ttm);
344 if (!(ttm->page_flags & TTM_TT_FLAG_EXTERNAL)) {
345 atomic_long_sub(ttm->num_pages, &ttm_pages_allocated);
346 if (bdev->pool.use_dma32)
347 atomic_long_sub(ttm->num_pages,
348 &ttm_dma32_pages_allocated);
352 EXPORT_SYMBOL(ttm_tt_populate);
354 void ttm_tt_unpopulate(struct ttm_device *bdev, struct ttm_tt *ttm)
356 if (!ttm_tt_is_populated(ttm))
359 if (bdev->funcs->ttm_tt_unpopulate)
360 bdev->funcs->ttm_tt_unpopulate(bdev, ttm);
362 ttm_pool_free(&bdev->pool, ttm);
364 if (!(ttm->page_flags & TTM_TT_FLAG_EXTERNAL)) {
365 atomic_long_sub(ttm->num_pages, &ttm_pages_allocated);
366 if (bdev->pool.use_dma32)
367 atomic_long_sub(ttm->num_pages,
368 &ttm_dma32_pages_allocated);
371 ttm->page_flags &= ~TTM_TT_FLAG_PRIV_POPULATED;
374 #ifdef CONFIG_DEBUG_FS
376 /* Test the shrinker functions and dump the result */
377 static int ttm_tt_debugfs_shrink_show(struct seq_file *m, void *data)
379 struct ttm_operation_ctx ctx = { false, false };
381 seq_printf(m, "%d\n", ttm_global_swapout(&ctx, GFP_KERNEL));
384 DEFINE_SHOW_ATTRIBUTE(ttm_tt_debugfs_shrink);
390 * ttm_tt_mgr_init - register with the MM shrinker
392 * Register with the MM shrinker for swapping out BOs.
394 void ttm_tt_mgr_init(unsigned long num_pages, unsigned long num_dma32_pages)
396 #ifdef CONFIG_DEBUG_FS
397 debugfs_create_file("tt_shrink", 0400, ttm_debugfs_root, NULL,
398 &ttm_tt_debugfs_shrink_fops);
401 if (!ttm_pages_limit)
402 ttm_pages_limit = num_pages;
404 if (!ttm_dma32_pages_limit)
405 ttm_dma32_pages_limit = num_dma32_pages;
408 static void ttm_kmap_iter_tt_map_local(struct ttm_kmap_iter *iter,
409 struct iosys_map *dmap,
412 struct ttm_kmap_iter_tt *iter_tt =
413 container_of(iter, typeof(*iter_tt), base);
415 iosys_map_set_vaddr(dmap, kmap_local_page_prot(iter_tt->tt->pages[i],
419 static void ttm_kmap_iter_tt_unmap_local(struct ttm_kmap_iter *iter,
420 struct iosys_map *map)
422 kunmap_local(map->vaddr);
425 static const struct ttm_kmap_iter_ops ttm_kmap_iter_tt_ops = {
426 .map_local = ttm_kmap_iter_tt_map_local,
427 .unmap_local = ttm_kmap_iter_tt_unmap_local,
432 * ttm_kmap_iter_tt_init - Initialize a struct ttm_kmap_iter_tt
433 * @iter_tt: The struct ttm_kmap_iter_tt to initialize.
434 * @tt: Struct ttm_tt holding page pointers of the struct ttm_resource.
436 * Return: Pointer to the embedded struct ttm_kmap_iter.
438 struct ttm_kmap_iter *
439 ttm_kmap_iter_tt_init(struct ttm_kmap_iter_tt *iter_tt,
442 iter_tt->base.ops = &ttm_kmap_iter_tt_ops;
445 iter_tt->prot = ttm_prot_from_caching(tt->caching, PAGE_KERNEL);
447 iter_tt->prot = PAGE_KERNEL;
449 return &iter_tt->base;
451 EXPORT_SYMBOL(ttm_kmap_iter_tt_init);
453 unsigned long ttm_tt_pages_limit(void)
455 return ttm_pages_limit;
457 EXPORT_SYMBOL(ttm_tt_pages_limit);