blob: 77f0e6f79f30b5d1546b6922320259dee47a6482 [file] [log] [blame]
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001/**************************************************************************
2 *
3 * Copyright (c) 2006-2009 VMware, Inc., Palo Alto, CA., USA
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
22 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
23 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
24 * USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27/*
28 * Authors: Thomas Hellstrom <thellstrom-at-vmware-dot-com>
29 */
30
Thomas Hellstromba4e7d92009-06-10 15:20:19 +020031#include <linux/sched.h>
32#include <linux/highmem.h>
33#include <linux/pagemap.h>
Hugh Dickins3142b652011-06-27 16:18:17 -070034#include <linux/shmem_fs.h>
Thomas Hellstromba4e7d92009-06-10 15:20:19 +020035#include <linux/file.h>
36#include <linux/swap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Paul Gortmaker2d1a8a42011-08-30 18:16:33 -040038#include <linux/export.h>
Dave Airliec9c97b82009-08-27 09:53:47 +100039#include "drm_cache.h"
Dave Airlie72e942d2010-03-09 06:33:26 +000040#include "drm_mem_util.h"
Thomas Hellstromba4e7d92009-06-10 15:20:19 +020041#include "ttm/ttm_module.h"
42#include "ttm/ttm_bo_driver.h"
43#include "ttm/ttm_placement.h"
Pauli Nieminen1403b1a2010-04-01 12:44:57 +000044#include "ttm/ttm_page_alloc.h"
Thomas Hellstromba4e7d92009-06-10 15:20:19 +020045
Thomas Hellstromba4e7d92009-06-10 15:20:19 +020046/**
47 * Allocates storage for pointers to the pages that back the ttm.
Thomas Hellstromba4e7d92009-06-10 15:20:19 +020048 */
49static void ttm_tt_alloc_page_directory(struct ttm_tt *ttm)
50{
Dave Airlie72e942d2010-03-09 06:33:26 +000051 ttm->pages = drm_calloc_large(ttm->num_pages, sizeof(*ttm->pages));
Konrad Rzeszutek Wilkf9820a42010-11-29 13:52:18 -050052 ttm->dma_address = drm_calloc_large(ttm->num_pages,
53 sizeof(*ttm->dma_address));
Thomas Hellstromba4e7d92009-06-10 15:20:19 +020054}
55
56static void ttm_tt_free_page_directory(struct ttm_tt *ttm)
57{
Dave Airlie72e942d2010-03-09 06:33:26 +000058 drm_free_large(ttm->pages);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +020059 ttm->pages = NULL;
Konrad Rzeszutek Wilkf9820a42010-11-29 13:52:18 -050060 drm_free_large(ttm->dma_address);
61 ttm->dma_address = NULL;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +020062}
63
Thomas Hellstromba4e7d92009-06-10 15:20:19 +020064#ifdef CONFIG_X86
65static inline int ttm_tt_set_page_caching(struct page *p,
Francisco Jerezf0e2f382010-02-20 07:30:15 +100066 enum ttm_caching_state c_old,
67 enum ttm_caching_state c_new)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +020068{
Francisco Jerezdb78e272010-01-12 18:49:43 +010069 int ret = 0;
70
Thomas Hellstromba4e7d92009-06-10 15:20:19 +020071 if (PageHighMem(p))
72 return 0;
73
Francisco Jerezf0e2f382010-02-20 07:30:15 +100074 if (c_old != tt_cached) {
Francisco Jerezdb78e272010-01-12 18:49:43 +010075 /* p isn't in the default caching state, set it to
76 * writeback first to free its current memtype. */
77
78 ret = set_pages_wb(p, 1);
79 if (ret)
80 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +020081 }
Francisco Jerezdb78e272010-01-12 18:49:43 +010082
Francisco Jerezf0e2f382010-02-20 07:30:15 +100083 if (c_new == tt_wc)
Francisco Jerezdb78e272010-01-12 18:49:43 +010084 ret = set_memory_wc((unsigned long) page_address(p), 1);
Francisco Jerezf0e2f382010-02-20 07:30:15 +100085 else if (c_new == tt_uncached)
Francisco Jerezdb78e272010-01-12 18:49:43 +010086 ret = set_pages_uc(p, 1);
87
88 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +020089}
90#else /* CONFIG_X86 */
91static inline int ttm_tt_set_page_caching(struct page *p,
Francisco Jerezf0e2f382010-02-20 07:30:15 +100092 enum ttm_caching_state c_old,
93 enum ttm_caching_state c_new)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +020094{
95 return 0;
96}
97#endif /* CONFIG_X86 */
98
99/*
100 * Change caching policy for the linear kernel map
101 * for range of pages in a ttm.
102 */
103
104static int ttm_tt_set_caching(struct ttm_tt *ttm,
105 enum ttm_caching_state c_state)
106{
107 int i, j;
108 struct page *cur_page;
109 int ret;
110
111 if (ttm->caching_state == c_state)
112 return 0;
113
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000114 if (ttm->state == tt_unpopulated) {
115 /* Change caching but don't populate */
116 ttm->caching_state = c_state;
117 return 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200118 }
119
120 if (ttm->caching_state == tt_cached)
Dave Airliec9c97b82009-08-27 09:53:47 +1000121 drm_clflush_pages(ttm->pages, ttm->num_pages);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200122
123 for (i = 0; i < ttm->num_pages; ++i) {
124 cur_page = ttm->pages[i];
125 if (likely(cur_page != NULL)) {
Francisco Jerezf0e2f382010-02-20 07:30:15 +1000126 ret = ttm_tt_set_page_caching(cur_page,
127 ttm->caching_state,
128 c_state);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200129 if (unlikely(ret != 0))
130 goto out_err;
131 }
132 }
133
134 ttm->caching_state = c_state;
135
136 return 0;
137
138out_err:
139 for (j = 0; j < i; ++j) {
140 cur_page = ttm->pages[j];
141 if (likely(cur_page != NULL)) {
Francisco Jerezf0e2f382010-02-20 07:30:15 +1000142 (void)ttm_tt_set_page_caching(cur_page, c_state,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200143 ttm->caching_state);
144 }
145 }
146
147 return ret;
148}
149
150int ttm_tt_set_placement_caching(struct ttm_tt *ttm, uint32_t placement)
151{
152 enum ttm_caching_state state;
153
154 if (placement & TTM_PL_FLAG_WC)
155 state = tt_wc;
156 else if (placement & TTM_PL_FLAG_UNCACHED)
157 state = tt_uncached;
158 else
159 state = tt_cached;
160
161 return ttm_tt_set_caching(ttm, state);
162}
Dave Airliedf67bed2009-10-30 13:31:26 +1000163EXPORT_SYMBOL(ttm_tt_set_placement_caching);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200164
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200165void ttm_tt_destroy(struct ttm_tt *ttm)
166{
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200167 if (unlikely(ttm == NULL))
168 return;
169
Jerome Glisse649bf3c2011-11-01 20:46:13 -0400170 if (ttm->state == tt_bound) {
171 ttm_tt_unbind(ttm);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200172 }
173
174 if (likely(ttm->pages != NULL)) {
Jerome Glisseb1e5f172011-11-02 23:59:28 -0400175 ttm->bdev->driver->ttm_tt_unpopulate(ttm);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200176 ttm_tt_free_page_directory(ttm);
177 }
178
Jan Engelhardt5df23972011-04-04 01:25:18 +0200179 if (!(ttm->page_flags & TTM_PAGE_FLAG_PERSISTENT_SWAP) &&
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200180 ttm->swap_storage)
181 fput(ttm->swap_storage);
182
Jerome Glisse649bf3c2011-11-01 20:46:13 -0400183 ttm->swap_storage = NULL;
184 ttm->func->destroy(ttm);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200185}
186
Jerome Glisse649bf3c2011-11-01 20:46:13 -0400187int ttm_tt_init(struct ttm_tt *ttm, struct ttm_bo_device *bdev,
188 unsigned long size, uint32_t page_flags,
189 struct page *dummy_read_page)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200190{
Jerome Glisse649bf3c2011-11-01 20:46:13 -0400191 ttm->bdev = bdev;
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200192 ttm->glob = bdev->glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200193 ttm->num_pages = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200194 ttm->caching_state = tt_cached;
195 ttm->page_flags = page_flags;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200196 ttm->dummy_read_page = dummy_read_page;
Jerome Glisse649bf3c2011-11-01 20:46:13 -0400197 ttm->state = tt_unpopulated;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200198
199 ttm_tt_alloc_page_directory(ttm);
Jerome Glissef9517e62011-11-01 19:07:31 -0400200 if (!ttm->pages || !ttm->dma_address) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200201 ttm_tt_destroy(ttm);
202 printk(KERN_ERR TTM_PFX "Failed allocating page table\n");
Jerome Glisse649bf3c2011-11-01 20:46:13 -0400203 return -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200204 }
Jerome Glisse649bf3c2011-11-01 20:46:13 -0400205 return 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200206}
Jerome Glisse649bf3c2011-11-01 20:46:13 -0400207EXPORT_SYMBOL(ttm_tt_init);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200208
209void ttm_tt_unbind(struct ttm_tt *ttm)
210{
211 int ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200212
213 if (ttm->state == tt_bound) {
Jerome Glisse649bf3c2011-11-01 20:46:13 -0400214 ret = ttm->func->unbind(ttm);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200215 BUG_ON(ret);
216 ttm->state = tt_unbound;
217 }
218}
219
220int ttm_tt_bind(struct ttm_tt *ttm, struct ttm_mem_reg *bo_mem)
221{
222 int ret = 0;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200223
224 if (!ttm)
225 return -EINVAL;
226
227 if (ttm->state == tt_bound)
228 return 0;
229
Jerome Glisseb1e5f172011-11-02 23:59:28 -0400230 ret = ttm->bdev->driver->ttm_tt_populate(ttm);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200231 if (ret)
232 return ret;
233
Jerome Glisse649bf3c2011-11-01 20:46:13 -0400234 ret = ttm->func->bind(ttm, bo_mem);
Thomas Hellstrom7dcebb52010-10-29 10:46:49 +0200235 if (unlikely(ret != 0))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200236 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200237
238 ttm->state = tt_bound;
239
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200240 return 0;
241}
242EXPORT_SYMBOL(ttm_tt_bind);
243
Jerome Glisseb1e5f172011-11-02 23:59:28 -0400244int ttm_tt_swapin(struct ttm_tt *ttm)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200245{
246 struct address_space *swap_space;
247 struct file *swap_storage;
248 struct page *from_page;
249 struct page *to_page;
250 void *from_virtual;
251 void *to_virtual;
252 int i;
Maarten Maathuis290e55052010-02-20 03:22:21 +0100253 int ret = -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200254
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200255 swap_storage = ttm->swap_storage;
256 BUG_ON(swap_storage == NULL);
257
258 swap_space = swap_storage->f_path.dentry->d_inode->i_mapping;
259
260 for (i = 0; i < ttm->num_pages; ++i) {
Hugh Dickins3142b652011-06-27 16:18:17 -0700261 from_page = shmem_read_mapping_page(swap_space, i);
Maarten Maathuis290e55052010-02-20 03:22:21 +0100262 if (IS_ERR(from_page)) {
263 ret = PTR_ERR(from_page);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200264 goto out_err;
Maarten Maathuis290e55052010-02-20 03:22:21 +0100265 }
Jerome Glisseb1e5f172011-11-02 23:59:28 -0400266 to_page = ttm->pages[i];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200267 if (unlikely(to_page == NULL))
268 goto out_err;
269
270 preempt_disable();
271 from_virtual = kmap_atomic(from_page, KM_USER0);
272 to_virtual = kmap_atomic(to_page, KM_USER1);
273 memcpy(to_virtual, from_virtual, PAGE_SIZE);
274 kunmap_atomic(to_virtual, KM_USER1);
275 kunmap_atomic(from_virtual, KM_USER0);
276 preempt_enable();
277 page_cache_release(from_page);
278 }
279
Jan Engelhardt5df23972011-04-04 01:25:18 +0200280 if (!(ttm->page_flags & TTM_PAGE_FLAG_PERSISTENT_SWAP))
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200281 fput(swap_storage);
282 ttm->swap_storage = NULL;
283 ttm->page_flags &= ~TTM_PAGE_FLAG_SWAPPED;
284
285 return 0;
286out_err:
Maarten Maathuis290e55052010-02-20 03:22:21 +0100287 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200288}
289
Jan Engelhardt5df23972011-04-04 01:25:18 +0200290int ttm_tt_swapout(struct ttm_tt *ttm, struct file *persistent_swap_storage)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200291{
292 struct address_space *swap_space;
293 struct file *swap_storage;
294 struct page *from_page;
295 struct page *to_page;
296 void *from_virtual;
297 void *to_virtual;
298 int i;
Maarten Maathuis290e55052010-02-20 03:22:21 +0100299 int ret = -ENOMEM;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200300
301 BUG_ON(ttm->state != tt_unbound && ttm->state != tt_unpopulated);
302 BUG_ON(ttm->caching_state != tt_cached);
303
Jan Engelhardt5df23972011-04-04 01:25:18 +0200304 if (!persistent_swap_storage) {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200305 swap_storage = shmem_file_setup("ttm swap",
306 ttm->num_pages << PAGE_SHIFT,
307 0);
308 if (unlikely(IS_ERR(swap_storage))) {
309 printk(KERN_ERR "Failed allocating swap storage.\n");
Maarten Maathuis290e55052010-02-20 03:22:21 +0100310 return PTR_ERR(swap_storage);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200311 }
312 } else
Jan Engelhardt5df23972011-04-04 01:25:18 +0200313 swap_storage = persistent_swap_storage;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200314
315 swap_space = swap_storage->f_path.dentry->d_inode->i_mapping;
316
317 for (i = 0; i < ttm->num_pages; ++i) {
318 from_page = ttm->pages[i];
319 if (unlikely(from_page == NULL))
320 continue;
Hugh Dickins3142b652011-06-27 16:18:17 -0700321 to_page = shmem_read_mapping_page(swap_space, i);
Maarten Maathuis290e55052010-02-20 03:22:21 +0100322 if (unlikely(IS_ERR(to_page))) {
323 ret = PTR_ERR(to_page);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200324 goto out_err;
Maarten Maathuis290e55052010-02-20 03:22:21 +0100325 }
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200326 preempt_disable();
327 from_virtual = kmap_atomic(from_page, KM_USER0);
328 to_virtual = kmap_atomic(to_page, KM_USER1);
329 memcpy(to_virtual, from_virtual, PAGE_SIZE);
330 kunmap_atomic(to_virtual, KM_USER1);
331 kunmap_atomic(from_virtual, KM_USER0);
332 preempt_enable();
333 set_page_dirty(to_page);
334 mark_page_accessed(to_page);
335 page_cache_release(to_page);
336 }
337
Jerome Glisseb1e5f172011-11-02 23:59:28 -0400338 ttm->bdev->driver->ttm_tt_unpopulate(ttm);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200339 ttm->swap_storage = swap_storage;
340 ttm->page_flags |= TTM_PAGE_FLAG_SWAPPED;
Jan Engelhardt5df23972011-04-04 01:25:18 +0200341 if (persistent_swap_storage)
342 ttm->page_flags |= TTM_PAGE_FLAG_PERSISTENT_SWAP;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200343
344 return 0;
345out_err:
Jan Engelhardt5df23972011-04-04 01:25:18 +0200346 if (!persistent_swap_storage)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200347 fput(swap_storage);
348
Maarten Maathuis290e55052010-02-20 03:22:21 +0100349 return ret;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200350}