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/pagemap.h>
36 #include <linux/shmem_fs.h>
37 #include <linux/file.h>
38 #include <drm/drm_cache.h>
39 #include <drm/ttm/ttm_bo_driver.h>
40 #include <drm/ttm/ttm_page_alloc.h>
42 #include <asm/set_memory.h>
46 * Allocates a ttm structure for the given BO.
48 int ttm_tt_create(struct ttm_buffer_object *bo, bool zero_alloc)
50 struct ttm_bo_device *bdev = bo->bdev;
51 uint32_t page_flags = 0;
53 reservation_object_assert_held(bo->resv);
56 page_flags |= TTM_PAGE_FLAG_DMA32;
59 page_flags |= TTM_PAGE_FLAG_NO_RETRY;
62 case ttm_bo_type_device:
64 page_flags |= TTM_PAGE_FLAG_ZERO_ALLOC;
66 case ttm_bo_type_kernel:
69 page_flags |= TTM_PAGE_FLAG_SG;
73 pr_err("Illegal buffer object type\n");
77 bo->ttm = bdev->driver->ttm_tt_create(bo, page_flags);
78 if (unlikely(bo->ttm == NULL))
85 * Allocates storage for pointers to the pages that back the ttm.
87 static int ttm_tt_alloc_page_directory(struct ttm_tt *ttm)
89 ttm->pages = kvmalloc_array(ttm->num_pages, sizeof(void*),
90 GFP_KERNEL | __GFP_ZERO);
96 static int ttm_dma_tt_alloc_page_directory(struct ttm_dma_tt *ttm)
98 ttm->ttm.pages = kvmalloc_array(ttm->ttm.num_pages,
99 sizeof(*ttm->ttm.pages) +
100 sizeof(*ttm->dma_address),
101 GFP_KERNEL | __GFP_ZERO);
104 ttm->dma_address = (void *) (ttm->ttm.pages + ttm->ttm.num_pages);
108 static int ttm_sg_tt_alloc_page_directory(struct ttm_dma_tt *ttm)
110 ttm->dma_address = kvmalloc_array(ttm->ttm.num_pages,
111 sizeof(*ttm->dma_address),
112 GFP_KERNEL | __GFP_ZERO);
113 if (!ttm->dma_address)
119 static inline int ttm_tt_set_page_caching(struct page *p,
120 enum ttm_caching_state c_old,
121 enum ttm_caching_state c_new)
128 if (c_old != tt_cached) {
129 /* p isn't in the default caching state, set it to
130 * writeback first to free its current memtype. */
132 ret = set_pages_wb(p, 1);
138 ret = set_memory_wc((unsigned long) page_address(p), 1);
139 else if (c_new == tt_uncached)
140 ret = set_pages_uc(p, 1);
144 #else /* CONFIG_X86 */
145 static inline int ttm_tt_set_page_caching(struct page *p,
146 enum ttm_caching_state c_old,
147 enum ttm_caching_state c_new)
151 #endif /* CONFIG_X86 */
154 * Change caching policy for the linear kernel map
155 * for range of pages in a ttm.
158 static int ttm_tt_set_caching(struct ttm_tt *ttm,
159 enum ttm_caching_state c_state)
162 struct page *cur_page;
165 if (ttm->caching_state == c_state)
168 if (ttm->state == tt_unpopulated) {
169 /* Change caching but don't populate */
170 ttm->caching_state = c_state;
174 if (ttm->caching_state == tt_cached)
175 drm_clflush_pages(ttm->pages, ttm->num_pages);
177 for (i = 0; i < ttm->num_pages; ++i) {
178 cur_page = ttm->pages[i];
179 if (likely(cur_page != NULL)) {
180 ret = ttm_tt_set_page_caching(cur_page,
183 if (unlikely(ret != 0))
188 ttm->caching_state = c_state;
193 for (j = 0; j < i; ++j) {
194 cur_page = ttm->pages[j];
195 if (likely(cur_page != NULL)) {
196 (void)ttm_tt_set_page_caching(cur_page, c_state,
204 int ttm_tt_set_placement_caching(struct ttm_tt *ttm, uint32_t placement)
206 enum ttm_caching_state state;
208 if (placement & TTM_PL_FLAG_WC)
210 else if (placement & TTM_PL_FLAG_UNCACHED)
215 return ttm_tt_set_caching(ttm, state);
217 EXPORT_SYMBOL(ttm_tt_set_placement_caching);
219 void ttm_tt_destroy(struct ttm_tt *ttm)
226 if (ttm->state == tt_unbound)
227 ttm_tt_unpopulate(ttm);
229 if (!(ttm->page_flags & TTM_PAGE_FLAG_PERSISTENT_SWAP) &&
231 fput(ttm->swap_storage);
233 ttm->swap_storage = NULL;
234 ttm->func->destroy(ttm);
237 void ttm_tt_init_fields(struct ttm_tt *ttm, struct ttm_buffer_object *bo,
240 ttm->bdev = bo->bdev;
241 ttm->num_pages = bo->num_pages;
242 ttm->caching_state = tt_cached;
243 ttm->page_flags = page_flags;
244 ttm->state = tt_unpopulated;
245 ttm->swap_storage = NULL;
249 int ttm_tt_init(struct ttm_tt *ttm, struct ttm_buffer_object *bo,
252 ttm_tt_init_fields(ttm, bo, page_flags);
254 if (ttm_tt_alloc_page_directory(ttm)) {
256 pr_err("Failed allocating page table\n");
261 EXPORT_SYMBOL(ttm_tt_init);
263 void ttm_tt_fini(struct ttm_tt *ttm)
268 EXPORT_SYMBOL(ttm_tt_fini);
270 int ttm_dma_tt_init(struct ttm_dma_tt *ttm_dma, struct ttm_buffer_object *bo,
273 struct ttm_tt *ttm = &ttm_dma->ttm;
275 ttm_tt_init_fields(ttm, bo, page_flags);
277 INIT_LIST_HEAD(&ttm_dma->pages_list);
278 if (ttm_dma_tt_alloc_page_directory(ttm_dma)) {
280 pr_err("Failed allocating page table\n");
285 EXPORT_SYMBOL(ttm_dma_tt_init);
287 int ttm_sg_tt_init(struct ttm_dma_tt *ttm_dma, struct ttm_buffer_object *bo,
290 struct ttm_tt *ttm = &ttm_dma->ttm;
293 ttm_tt_init_fields(ttm, bo, page_flags);
295 INIT_LIST_HEAD(&ttm_dma->pages_list);
296 if (page_flags & TTM_PAGE_FLAG_SG)
297 ret = ttm_sg_tt_alloc_page_directory(ttm_dma);
299 ret = ttm_dma_tt_alloc_page_directory(ttm_dma);
302 pr_err("Failed allocating page table\n");
307 EXPORT_SYMBOL(ttm_sg_tt_init);
309 void ttm_dma_tt_fini(struct ttm_dma_tt *ttm_dma)
311 struct ttm_tt *ttm = &ttm_dma->ttm;
316 kvfree(ttm_dma->dma_address);
318 ttm_dma->dma_address = NULL;
320 EXPORT_SYMBOL(ttm_dma_tt_fini);
322 void ttm_tt_unbind(struct ttm_tt *ttm)
326 if (ttm->state == tt_bound) {
327 ret = ttm->func->unbind(ttm);
329 ttm->state = tt_unbound;
333 int ttm_tt_bind(struct ttm_tt *ttm, struct ttm_mem_reg *bo_mem,
334 struct ttm_operation_ctx *ctx)
341 if (ttm->state == tt_bound)
344 ret = ttm_tt_populate(ttm, ctx);
348 ret = ttm->func->bind(ttm, bo_mem);
349 if (unlikely(ret != 0))
352 ttm->state = tt_bound;
356 EXPORT_SYMBOL(ttm_tt_bind);
358 int ttm_tt_swapin(struct ttm_tt *ttm)
360 struct address_space *swap_space;
361 struct file *swap_storage;
362 struct page *from_page;
363 struct page *to_page;
367 swap_storage = ttm->swap_storage;
368 BUG_ON(swap_storage == NULL);
370 swap_space = swap_storage->f_mapping;
372 for (i = 0; i < ttm->num_pages; ++i) {
373 gfp_t gfp_mask = mapping_gfp_mask(swap_space);
375 gfp_mask |= (ttm->page_flags & TTM_PAGE_FLAG_NO_RETRY ? __GFP_RETRY_MAYFAIL : 0);
376 from_page = shmem_read_mapping_page_gfp(swap_space, i, gfp_mask);
378 if (IS_ERR(from_page)) {
379 ret = PTR_ERR(from_page);
382 to_page = ttm->pages[i];
383 if (unlikely(to_page == NULL))
386 copy_highpage(to_page, from_page);
390 if (!(ttm->page_flags & TTM_PAGE_FLAG_PERSISTENT_SWAP))
392 ttm->swap_storage = NULL;
393 ttm->page_flags &= ~TTM_PAGE_FLAG_SWAPPED;
400 int ttm_tt_swapout(struct ttm_tt *ttm, struct file *persistent_swap_storage)
402 struct address_space *swap_space;
403 struct file *swap_storage;
404 struct page *from_page;
405 struct page *to_page;
409 BUG_ON(ttm->state != tt_unbound && ttm->state != tt_unpopulated);
410 BUG_ON(ttm->caching_state != tt_cached);
412 if (!persistent_swap_storage) {
413 swap_storage = shmem_file_setup("ttm swap",
414 ttm->num_pages << PAGE_SHIFT,
416 if (IS_ERR(swap_storage)) {
417 pr_err("Failed allocating swap storage\n");
418 return PTR_ERR(swap_storage);
421 swap_storage = persistent_swap_storage;
424 swap_space = swap_storage->f_mapping;
426 for (i = 0; i < ttm->num_pages; ++i) {
427 gfp_t gfp_mask = mapping_gfp_mask(swap_space);
429 gfp_mask |= (ttm->page_flags & TTM_PAGE_FLAG_NO_RETRY ? __GFP_RETRY_MAYFAIL : 0);
431 from_page = ttm->pages[i];
432 if (unlikely(from_page == NULL))
435 to_page = shmem_read_mapping_page_gfp(swap_space, i, gfp_mask);
436 if (IS_ERR(to_page)) {
437 ret = PTR_ERR(to_page);
440 copy_highpage(to_page, from_page);
441 set_page_dirty(to_page);
442 mark_page_accessed(to_page);
446 ttm_tt_unpopulate(ttm);
447 ttm->swap_storage = swap_storage;
448 ttm->page_flags |= TTM_PAGE_FLAG_SWAPPED;
449 if (persistent_swap_storage)
450 ttm->page_flags |= TTM_PAGE_FLAG_PERSISTENT_SWAP;
454 if (!persistent_swap_storage)
460 static void ttm_tt_add_mapping(struct ttm_tt *ttm)
464 if (ttm->page_flags & TTM_PAGE_FLAG_SG)
467 for (i = 0; i < ttm->num_pages; ++i)
468 ttm->pages[i]->mapping = ttm->bdev->dev_mapping;
471 int ttm_tt_populate(struct ttm_tt *ttm, struct ttm_operation_ctx *ctx)
475 if (ttm->state != tt_unpopulated)
478 if (ttm->bdev->driver->ttm_tt_populate)
479 ret = ttm->bdev->driver->ttm_tt_populate(ttm, ctx);
481 ret = ttm_pool_populate(ttm, ctx);
483 ttm_tt_add_mapping(ttm);
487 static void ttm_tt_clear_mapping(struct ttm_tt *ttm)
490 struct page **page = ttm->pages;
492 if (ttm->page_flags & TTM_PAGE_FLAG_SG)
495 for (i = 0; i < ttm->num_pages; ++i) {
496 (*page)->mapping = NULL;
497 (*page++)->index = 0;
501 void ttm_tt_unpopulate(struct ttm_tt *ttm)
503 if (ttm->state == tt_unpopulated)
506 ttm_tt_clear_mapping(ttm);
507 if (ttm->bdev->driver->ttm_tt_unpopulate)
508 ttm->bdev->driver->ttm_tt_unpopulate(ttm);
510 ttm_pool_unpopulate(ttm);