blob: 06c94e3a5f1521b0759148ede50b85752183e6bc [file] [log] [blame]
Pauli Nieminen1403b1a2010-04-01 12:44:57 +00001/*
2 * Copyright (c) Red Hat Inc.
3
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, sub license,
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:
10 *
11 * The above copyright notice and this permission notice (including the
12 * next paragraph) shall be included in all copies or substantial portions
13 * of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 * Authors: Dave Airlie <airlied@redhat.com>
24 * Jerome Glisse <jglisse@redhat.com>
25 * Pauli Nieminen <suokkos@gmail.com>
26 */
27
28/* simple list based uncached page pool
29 * - Pool collects resently freed pages for reuse
30 * - Use page->lru to keep a free list
31 * - doesn't track currently in use pages
32 */
Joe Perches25d04792012-03-16 21:43:50 -070033
34#define pr_fmt(fmt) "[TTM] " fmt
35
Pauli Nieminen1403b1a2010-04-01 12:44:57 +000036#include <linux/list.h>
37#include <linux/spinlock.h>
38#include <linux/highmem.h>
39#include <linux/mm_types.h>
Pauli Nieminen07458662010-04-01 12:44:58 +000040#include <linux/module.h>
Pauli Nieminen1403b1a2010-04-01 12:44:57 +000041#include <linux/mm.h>
Matt Turner4cdc8402010-04-07 22:42:04 +000042#include <linux/seq_file.h> /* for seq_printf */
Stephen Rothwell2125b8a2010-04-08 13:42:03 +100043#include <linux/slab.h>
Konrad Rzeszutek Wilkf9820a42010-11-29 13:52:18 -050044#include <linux/dma-mapping.h>
Pauli Nieminen1403b1a2010-04-01 12:44:57 +000045
Arun Sharma600634972011-07-26 16:09:06 -070046#include <linux/atomic.h>
Pauli Nieminen1403b1a2010-04-01 12:44:57 +000047
David Howells760285e2012-10-02 18:01:07 +010048#include <drm/ttm/ttm_bo_driver.h>
49#include <drm/ttm/ttm_page_alloc.h>
Pauli Nieminen1403b1a2010-04-01 12:44:57 +000050
Daniel Vettere6bf6e52016-03-30 13:24:06 +020051#if IS_ENABLED(CONFIG_AGP)
Luck, Tonyd6678652010-07-21 10:15:39 -070052#include <asm/agp.h>
53#endif
Laura Abbotted3ba072017-05-08 15:58:17 -070054#ifdef CONFIG_X86
55#include <asm/set_memory.h>
56#endif
Pauli Nieminen1403b1a2010-04-01 12:44:57 +000057
58#define NUM_PAGES_TO_ALLOC (PAGE_SIZE/sizeof(struct page *))
59#define SMALL_ALLOCATION 16
60#define FREE_ALL_PAGES (~0U)
61/* times are in msecs */
62#define PAGE_FREE_INTERVAL 1000
63
64/**
65 * struct ttm_page_pool - Pool to reuse recently allocated uc/wc pages.
66 *
67 * @lock: Protects the shared pool from concurrnet access. Must be used with
68 * irqsave/irqrestore variants because pool allocator maybe called from
69 * delayed work.
70 * @fill_lock: Prevent concurrent calls to fill.
71 * @list: Pool of free uc/wc pages for fast reuse.
72 * @gfp_flags: Flags to pass for alloc_page.
73 * @npages: Number of pages in pool.
74 */
75struct ttm_page_pool {
76 spinlock_t lock;
77 bool fill_lock;
78 struct list_head list;
Daniel J Blueman0e57a3c2010-09-22 17:45:45 +010079 gfp_t gfp_flags;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +000080 unsigned npages;
Pauli Nieminen07458662010-04-01 12:44:58 +000081 char *name;
82 unsigned long nfrees;
83 unsigned long nrefills;
Roger He750a2502017-11-21 09:37:52 +080084 unsigned int order;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +000085};
86
Pauli Nieminenc96af792010-04-01 12:45:03 +000087/**
88 * Limits for the pool. They are handled without locks because only place where
89 * they may change is in sysfs store. They won't have immediate effect anyway
Thomas Hellstrom4abe4382010-05-26 16:21:04 +020090 * so forcing serialization to access them is pointless.
Pauli Nieminenc96af792010-04-01 12:45:03 +000091 */
92
Pauli Nieminen1403b1a2010-04-01 12:44:57 +000093struct ttm_pool_opts {
94 unsigned alloc_size;
95 unsigned max_size;
96 unsigned small;
97};
98
Christian König6ed4e2e2017-10-05 14:27:34 +020099#define NUM_POOLS 6
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000100
101/**
102 * struct ttm_pool_manager - Holds memory pools for fst allocation
103 *
104 * Manager is read only object for pool code so it doesn't need locking.
105 *
106 * @free_interval: minimum number of jiffies between freeing pages from pool.
107 * @page_alloc_inited: reference counting for pool allocation.
108 * @work: Work that is used to shrink the pool. Work is only run when there is
109 * some pages to free.
110 * @small_allocation: Limit in number of pages what is small allocation.
111 *
112 * @pools: All pool objects in use.
113 **/
114struct ttm_pool_manager {
Pauli Nieminenc96af792010-04-01 12:45:03 +0000115 struct kobject kobj;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000116 struct shrinker mm_shrink;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000117 struct ttm_pool_opts options;
118
119 union {
120 struct ttm_page_pool pools[NUM_POOLS];
121 struct {
122 struct ttm_page_pool wc_pool;
123 struct ttm_page_pool uc_pool;
124 struct ttm_page_pool wc_pool_dma32;
125 struct ttm_page_pool uc_pool_dma32;
Christian König6ed4e2e2017-10-05 14:27:34 +0200126 struct ttm_page_pool wc_pool_huge;
127 struct ttm_page_pool uc_pool_huge;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000128 } ;
129 };
130};
131
Pauli Nieminenc96af792010-04-01 12:45:03 +0000132static struct attribute ttm_page_pool_max = {
133 .name = "pool_max_size",
134 .mode = S_IRUGO | S_IWUSR
135};
136static struct attribute ttm_page_pool_small = {
137 .name = "pool_small_allocation",
138 .mode = S_IRUGO | S_IWUSR
139};
140static struct attribute ttm_page_pool_alloc_size = {
141 .name = "pool_allocation_size",
142 .mode = S_IRUGO | S_IWUSR
143};
144
145static struct attribute *ttm_pool_attrs[] = {
146 &ttm_page_pool_max,
147 &ttm_page_pool_small,
148 &ttm_page_pool_alloc_size,
149 NULL
150};
151
152static void ttm_pool_kobj_release(struct kobject *kobj)
153{
154 struct ttm_pool_manager *m =
155 container_of(kobj, struct ttm_pool_manager, kobj);
Francisco Jerez5870a4d2010-07-04 04:03:07 +0200156 kfree(m);
Pauli Nieminenc96af792010-04-01 12:45:03 +0000157}
158
159static ssize_t ttm_pool_store(struct kobject *kobj,
160 struct attribute *attr, const char *buffer, size_t size)
161{
162 struct ttm_pool_manager *m =
163 container_of(kobj, struct ttm_pool_manager, kobj);
164 int chars;
165 unsigned val;
166 chars = sscanf(buffer, "%u", &val);
167 if (chars == 0)
168 return size;
169
170 /* Convert kb to number of pages */
171 val = val / (PAGE_SIZE >> 10);
172
173 if (attr == &ttm_page_pool_max)
174 m->options.max_size = val;
175 else if (attr == &ttm_page_pool_small)
176 m->options.small = val;
177 else if (attr == &ttm_page_pool_alloc_size) {
178 if (val > NUM_PAGES_TO_ALLOC*8) {
Joe Perches25d04792012-03-16 21:43:50 -0700179 pr_err("Setting allocation size to %lu is not allowed. Recommended size is %lu\n",
Thomas Hellstrom4abe4382010-05-26 16:21:04 +0200180 NUM_PAGES_TO_ALLOC*(PAGE_SIZE >> 7),
181 NUM_PAGES_TO_ALLOC*(PAGE_SIZE >> 10));
Pauli Nieminenc96af792010-04-01 12:45:03 +0000182 return size;
183 } else if (val > NUM_PAGES_TO_ALLOC) {
Joe Perches25d04792012-03-16 21:43:50 -0700184 pr_warn("Setting allocation size to larger than %lu is not recommended\n",
185 NUM_PAGES_TO_ALLOC*(PAGE_SIZE >> 10));
Pauli Nieminenc96af792010-04-01 12:45:03 +0000186 }
187 m->options.alloc_size = val;
188 }
189
190 return size;
191}
192
193static ssize_t ttm_pool_show(struct kobject *kobj,
194 struct attribute *attr, char *buffer)
195{
196 struct ttm_pool_manager *m =
197 container_of(kobj, struct ttm_pool_manager, kobj);
198 unsigned val = 0;
199
200 if (attr == &ttm_page_pool_max)
201 val = m->options.max_size;
202 else if (attr == &ttm_page_pool_small)
203 val = m->options.small;
204 else if (attr == &ttm_page_pool_alloc_size)
205 val = m->options.alloc_size;
206
207 val = val * (PAGE_SIZE >> 10);
208
209 return snprintf(buffer, PAGE_SIZE, "%u\n", val);
210}
211
212static const struct sysfs_ops ttm_pool_sysfs_ops = {
213 .show = &ttm_pool_show,
214 .store = &ttm_pool_store,
215};
216
217static struct kobj_type ttm_pool_kobj_type = {
218 .release = &ttm_pool_kobj_release,
219 .sysfs_ops = &ttm_pool_sysfs_ops,
220 .default_attrs = ttm_pool_attrs,
221};
222
Francisco Jerez5870a4d2010-07-04 04:03:07 +0200223static struct ttm_pool_manager *_manager;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000224
Pauli Nieminen975efdb2010-04-01 12:45:02 +0000225#ifndef CONFIG_X86
Roger He154683d2017-11-22 15:09:33 +0800226static int set_pages_wb(struct page *page, int numpages)
227{
228#if IS_ENABLED(CONFIG_AGP)
229 int i;
230
231 for (i = 0; i < numpages; i++)
232 unmap_page_from_agp(page++);
233#endif
234 return 0;
235}
236
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000237static int set_pages_array_wb(struct page **pages, int addrinarray)
238{
Daniel Vettere6bf6e52016-03-30 13:24:06 +0200239#if IS_ENABLED(CONFIG_AGP)
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000240 int i;
241
242 for (i = 0; i < addrinarray; i++)
243 unmap_page_from_agp(pages[i]);
244#endif
245 return 0;
246}
247
248static int set_pages_array_wc(struct page **pages, int addrinarray)
249{
Daniel Vettere6bf6e52016-03-30 13:24:06 +0200250#if IS_ENABLED(CONFIG_AGP)
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000251 int i;
252
253 for (i = 0; i < addrinarray; i++)
254 map_page_into_agp(pages[i]);
255#endif
256 return 0;
257}
258
259static int set_pages_array_uc(struct page **pages, int addrinarray)
260{
Daniel Vettere6bf6e52016-03-30 13:24:06 +0200261#if IS_ENABLED(CONFIG_AGP)
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000262 int i;
263
264 for (i = 0; i < addrinarray; i++)
265 map_page_into_agp(pages[i]);
266#endif
267 return 0;
268}
269#endif
270
271/**
272 * Select the right pool or requested caching state and ttm flags. */
Christian König6ed4e2e2017-10-05 14:27:34 +0200273static struct ttm_page_pool *ttm_get_pool(int flags, bool huge,
274 enum ttm_caching_state cstate)
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000275{
276 int pool_index;
277
278 if (cstate == tt_cached)
279 return NULL;
280
281 if (cstate == tt_wc)
282 pool_index = 0x0;
283 else
284 pool_index = 0x1;
285
Christian König6ed4e2e2017-10-05 14:27:34 +0200286 if (flags & TTM_PAGE_FLAG_DMA32) {
287 if (huge)
288 return NULL;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000289 pool_index |= 0x2;
290
Christian König6ed4e2e2017-10-05 14:27:34 +0200291 } else if (huge) {
292 pool_index |= 0x4;
293 }
294
Francisco Jerez5870a4d2010-07-04 04:03:07 +0200295 return &_manager->pools[pool_index];
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000296}
297
298/* set memory back to wb and free the pages. */
Roger He444f8ef2017-11-21 14:24:48 +0800299static void ttm_pages_put(struct page *pages[], unsigned npages,
300 unsigned int order)
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000301{
Roger He444f8ef2017-11-21 14:24:48 +0800302 unsigned int i, pages_nr = (1 << order);
303
304 if (order == 0) {
305 if (set_pages_array_wb(pages, npages))
306 pr_err("Failed to set %d pages to wb!\n", npages);
307 }
308
309 for (i = 0; i < npages; ++i) {
310 if (order > 0) {
311 if (set_pages_wb(pages[i], pages_nr))
312 pr_err("Failed to set %d pages to wb!\n", pages_nr);
313 }
314 __free_pages(pages[i], order);
315 }
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000316}
317
318static void ttm_pool_update_free_locked(struct ttm_page_pool *pool,
319 unsigned freed_pages)
320{
321 pool->npages -= freed_pages;
Pauli Nieminen07458662010-04-01 12:44:58 +0000322 pool->nfrees += freed_pages;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000323}
324
325/**
326 * Free pages from pool.
327 *
328 * To prevent hogging the ttm_swap process we only free NUM_PAGES_TO_ALLOC
329 * number of pages in one go.
330 *
331 * @pool: to free the pages from
332 * @free_all: If set to true will free all pages in pool
Tetsuo Handa881fdaa2014-11-13 22:43:23 +0900333 * @use_static: Safe to use static buffer
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000334 **/
Tetsuo Handaa91576d2014-08-03 20:02:31 +0900335static int ttm_page_pool_free(struct ttm_page_pool *pool, unsigned nr_free,
Tetsuo Handa881fdaa2014-11-13 22:43:23 +0900336 bool use_static)
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000337{
Tetsuo Handa881fdaa2014-11-13 22:43:23 +0900338 static struct page *static_buf[NUM_PAGES_TO_ALLOC];
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000339 unsigned long irq_flags;
340 struct page *p;
341 struct page **pages_to_free;
342 unsigned freed_pages = 0,
343 npages_to_free = nr_free;
344
345 if (NUM_PAGES_TO_ALLOC < nr_free)
346 npages_to_free = NUM_PAGES_TO_ALLOC;
347
Tetsuo Handa881fdaa2014-11-13 22:43:23 +0900348 if (use_static)
349 pages_to_free = static_buf;
350 else
351 pages_to_free = kmalloc(npages_to_free * sizeof(struct page *),
352 GFP_KERNEL);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000353 if (!pages_to_free) {
Michel Dänzer767601d2017-11-03 16:00:35 +0100354 pr_debug("Failed to allocate memory for pool free operation\n");
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000355 return 0;
356 }
357
358restart:
359 spin_lock_irqsave(&pool->lock, irq_flags);
360
361 list_for_each_entry_reverse(p, &pool->list, lru) {
362 if (freed_pages >= npages_to_free)
363 break;
364
365 pages_to_free[freed_pages++] = p;
366 /* We can only remove NUM_PAGES_TO_ALLOC at a time. */
367 if (freed_pages >= NUM_PAGES_TO_ALLOC) {
368 /* remove range of pages from the pool */
369 __list_del(p->lru.prev, &pool->list);
370
371 ttm_pool_update_free_locked(pool, freed_pages);
372 /**
373 * Because changing page caching is costly
374 * we unlock the pool to prevent stalling.
375 */
376 spin_unlock_irqrestore(&pool->lock, irq_flags);
377
Roger He444f8ef2017-11-21 14:24:48 +0800378 ttm_pages_put(pages_to_free, freed_pages, pool->order);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000379 if (likely(nr_free != FREE_ALL_PAGES))
380 nr_free -= freed_pages;
381
382 if (NUM_PAGES_TO_ALLOC >= nr_free)
383 npages_to_free = nr_free;
384 else
385 npages_to_free = NUM_PAGES_TO_ALLOC;
386
387 freed_pages = 0;
388
389 /* free all so restart the processing */
390 if (nr_free)
391 goto restart;
392
Konrad Rzeszutek Wilk0d74f862011-06-08 17:06:15 +0000393 /* Not allowed to fall through or break because
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000394 * following context is inside spinlock while we are
395 * outside here.
396 */
397 goto out;
398
399 }
400 }
401
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000402 /* remove range of pages from the pool */
403 if (freed_pages) {
404 __list_del(&p->lru, &pool->list);
405
406 ttm_pool_update_free_locked(pool, freed_pages);
407 nr_free -= freed_pages;
408 }
409
410 spin_unlock_irqrestore(&pool->lock, irq_flags);
411
412 if (freed_pages)
Roger He444f8ef2017-11-21 14:24:48 +0800413 ttm_pages_put(pages_to_free, freed_pages, pool->order);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000414out:
Tetsuo Handa881fdaa2014-11-13 22:43:23 +0900415 if (pages_to_free != static_buf)
416 kfree(pages_to_free);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000417 return nr_free;
418}
419
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000420/**
Thomas Hellstrom4abe4382010-05-26 16:21:04 +0200421 * Callback for mm to request pool to reduce number of page held.
Dave Chinner7dc19d52013-08-28 10:18:11 +1000422 *
423 * XXX: (dchinner) Deadlock warning!
424 *
Dave Chinner7dc19d52013-08-28 10:18:11 +1000425 * This code is crying out for a shrinker per pool....
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000426 */
Dave Chinner7dc19d52013-08-28 10:18:11 +1000427static unsigned long
428ttm_pool_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000429{
Tetsuo Handa71336e012014-08-03 20:02:03 +0900430 static DEFINE_MUTEX(lock);
431 static unsigned start_pool;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000432 unsigned i;
Tetsuo Handa71336e012014-08-03 20:02:03 +0900433 unsigned pool_offset;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000434 struct ttm_page_pool *pool;
Ying Han1495f232011-05-24 17:12:27 -0700435 int shrink_pages = sc->nr_to_scan;
Dave Chinner7dc19d52013-08-28 10:18:11 +1000436 unsigned long freed = 0;
Roger He750a2502017-11-21 09:37:52 +0800437 unsigned int nr_free_pool;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000438
Tetsuo Handa71336e012014-08-03 20:02:03 +0900439 if (!mutex_trylock(&lock))
440 return SHRINK_STOP;
441 pool_offset = ++start_pool % NUM_POOLS;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000442 /* select start pool in round robin fashion */
443 for (i = 0; i < NUM_POOLS; ++i) {
444 unsigned nr_free = shrink_pages;
Roger He1bfcbad2017-11-21 16:47:16 +0800445 unsigned page_nr;
446
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000447 if (shrink_pages == 0)
448 break;
Roger He750a2502017-11-21 09:37:52 +0800449
Francisco Jerez5870a4d2010-07-04 04:03:07 +0200450 pool = &_manager->pools[(i + pool_offset)%NUM_POOLS];
Roger He1bfcbad2017-11-21 16:47:16 +0800451 page_nr = (1 << pool->order);
Tetsuo Handa881fdaa2014-11-13 22:43:23 +0900452 /* OK to use static buffer since global mutex is held. */
Roger He1bfcbad2017-11-21 16:47:16 +0800453 nr_free_pool = roundup(nr_free, page_nr) >> pool->order;
Roger He750a2502017-11-21 09:37:52 +0800454 shrink_pages = ttm_page_pool_free(pool, nr_free_pool, true);
Roger He1bfcbad2017-11-21 16:47:16 +0800455 freed += (nr_free_pool - shrink_pages) << pool->order;
456 if (freed >= sc->nr_to_scan)
457 break;
Monk Liu0aaa59f2017-12-01 18:21:34 +0800458 shrink_pages <<= pool->order;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000459 }
Tetsuo Handa71336e012014-08-03 20:02:03 +0900460 mutex_unlock(&lock);
Dave Chinner7dc19d52013-08-28 10:18:11 +1000461 return freed;
462}
463
464
465static unsigned long
466ttm_pool_shrink_count(struct shrinker *shrink, struct shrink_control *sc)
467{
468 unsigned i;
469 unsigned long count = 0;
Roger He750a2502017-11-21 09:37:52 +0800470 struct ttm_page_pool *pool;
Dave Chinner7dc19d52013-08-28 10:18:11 +1000471
Roger He750a2502017-11-21 09:37:52 +0800472 for (i = 0; i < NUM_POOLS; ++i) {
473 pool = &_manager->pools[i];
474 count += (pool->npages << pool->order);
475 }
Dave Chinner7dc19d52013-08-28 10:18:11 +1000476
477 return count;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000478}
479
Roger Hee2721592018-01-11 12:57:58 +0800480static int ttm_pool_mm_shrink_init(struct ttm_pool_manager *manager)
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000481{
Dave Chinner7dc19d52013-08-28 10:18:11 +1000482 manager->mm_shrink.count_objects = ttm_pool_shrink_count;
483 manager->mm_shrink.scan_objects = ttm_pool_shrink_scan;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000484 manager->mm_shrink.seeks = 1;
Roger Hee2721592018-01-11 12:57:58 +0800485 return register_shrinker(&manager->mm_shrink);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000486}
487
488static void ttm_pool_mm_shrink_fini(struct ttm_pool_manager *manager)
489{
490 unregister_shrinker(&manager->mm_shrink);
491}
492
493static int ttm_set_pages_caching(struct page **pages,
494 enum ttm_caching_state cstate, unsigned cpages)
495{
496 int r = 0;
497 /* Set page caching */
498 switch (cstate) {
499 case tt_uncached:
500 r = set_pages_array_uc(pages, cpages);
501 if (r)
Joe Perches25d04792012-03-16 21:43:50 -0700502 pr_err("Failed to set %d pages to uc!\n", cpages);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000503 break;
504 case tt_wc:
505 r = set_pages_array_wc(pages, cpages);
506 if (r)
Joe Perches25d04792012-03-16 21:43:50 -0700507 pr_err("Failed to set %d pages to wc!\n", cpages);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000508 break;
509 default:
510 break;
511 }
512 return r;
513}
514
515/**
516 * Free pages the pages that failed to change the caching state. If there is
517 * any pages that have changed their caching state already put them to the
518 * pool.
519 */
520static void ttm_handle_caching_state_failure(struct list_head *pages,
521 int ttm_flags, enum ttm_caching_state cstate,
522 struct page **failed_pages, unsigned cpages)
523{
524 unsigned i;
Thomas Hellstrom4abe4382010-05-26 16:21:04 +0200525 /* Failed pages have to be freed */
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000526 for (i = 0; i < cpages; ++i) {
527 list_del(&failed_pages[i]->lru);
528 __free_page(failed_pages[i]);
529 }
530}
531
532/**
533 * Allocate new pages with correct caching.
534 *
535 * This function is reentrant if caller updates count depending on number of
536 * pages returned in pages array.
537 */
Daniel J Blueman0e57a3c2010-09-22 17:45:45 +0100538static int ttm_alloc_new_pages(struct list_head *pages, gfp_t gfp_flags,
Christian König6ed4e2e2017-10-05 14:27:34 +0200539 int ttm_flags, enum ttm_caching_state cstate,
540 unsigned count, unsigned order)
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000541{
542 struct page **caching_array;
543 struct page *p;
544 int r = 0;
Christian König6ed4e2e2017-10-05 14:27:34 +0200545 unsigned i, j, cpages;
546 unsigned npages = 1 << order;
Monk Liua8d25a862017-12-01 18:23:56 +0800547 unsigned max_cpages = min(count << order, (unsigned)NUM_PAGES_TO_ALLOC);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000548
549 /* allocate array for page caching change */
550 caching_array = kmalloc(max_cpages*sizeof(struct page *), GFP_KERNEL);
551
552 if (!caching_array) {
Michel Dänzer767601d2017-11-03 16:00:35 +0100553 pr_debug("Unable to allocate table for new pages\n");
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000554 return -ENOMEM;
555 }
556
557 for (i = 0, cpages = 0; i < count; ++i) {
Christian König6ed4e2e2017-10-05 14:27:34 +0200558 p = alloc_pages(gfp_flags, order);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000559
560 if (!p) {
Michel Dänzer767601d2017-11-03 16:00:35 +0100561 pr_debug("Unable to get page %u\n", i);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000562
563 /* store already allocated pages in the pool after
564 * setting the caching state */
565 if (cpages) {
Thomas Hellstrom4abe4382010-05-26 16:21:04 +0200566 r = ttm_set_pages_caching(caching_array,
567 cstate, cpages);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000568 if (r)
569 ttm_handle_caching_state_failure(pages,
570 ttm_flags, cstate,
571 caching_array, cpages);
572 }
573 r = -ENOMEM;
574 goto out;
575 }
576
Christian König6ed4e2e2017-10-05 14:27:34 +0200577 list_add(&p->lru, pages);
578
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000579#ifdef CONFIG_HIGHMEM
580 /* gfp flags of highmem page should never be dma32 so we
581 * we should be fine in such case
582 */
Christian König6ed4e2e2017-10-05 14:27:34 +0200583 if (PageHighMem(p))
584 continue;
585
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000586#endif
Christian König6ed4e2e2017-10-05 14:27:34 +0200587 for (j = 0; j < npages; ++j) {
588 caching_array[cpages++] = p++;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000589 if (cpages == max_cpages) {
590
591 r = ttm_set_pages_caching(caching_array,
592 cstate, cpages);
593 if (r) {
594 ttm_handle_caching_state_failure(pages,
595 ttm_flags, cstate,
596 caching_array, cpages);
597 goto out;
598 }
599 cpages = 0;
600 }
601 }
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000602 }
603
604 if (cpages) {
605 r = ttm_set_pages_caching(caching_array, cstate, cpages);
606 if (r)
607 ttm_handle_caching_state_failure(pages,
608 ttm_flags, cstate,
609 caching_array, cpages);
610 }
611out:
612 kfree(caching_array);
613
614 return r;
615}
616
617/**
Konrad Rzeszutek Wilk0d74f862011-06-08 17:06:15 +0000618 * Fill the given pool if there aren't enough pages and the requested number of
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000619 * pages is small.
620 */
Christian König6ed4e2e2017-10-05 14:27:34 +0200621static void ttm_page_pool_fill_locked(struct ttm_page_pool *pool, int ttm_flags,
622 enum ttm_caching_state cstate,
623 unsigned count, unsigned long *irq_flags)
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000624{
625 struct page *p;
626 int r;
627 unsigned cpages = 0;
628 /**
629 * Only allow one pool fill operation at a time.
630 * If pool doesn't have enough pages for the allocation new pages are
631 * allocated from outside of pool.
632 */
633 if (pool->fill_lock)
634 return;
635
636 pool->fill_lock = true;
637
Konrad Rzeszutek Wilk0d74f862011-06-08 17:06:15 +0000638 /* If allocation request is small and there are not enough
639 * pages in a pool we fill the pool up first. */
Francisco Jerez5870a4d2010-07-04 04:03:07 +0200640 if (count < _manager->options.small
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000641 && count > pool->npages) {
642 struct list_head new_pages;
Francisco Jerez5870a4d2010-07-04 04:03:07 +0200643 unsigned alloc_size = _manager->options.alloc_size;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000644
645 /**
646 * Can't change page caching if in irqsave context. We have to
647 * drop the pool->lock.
648 */
649 spin_unlock_irqrestore(&pool->lock, *irq_flags);
650
651 INIT_LIST_HEAD(&new_pages);
652 r = ttm_alloc_new_pages(&new_pages, pool->gfp_flags, ttm_flags,
Christian König6ed4e2e2017-10-05 14:27:34 +0200653 cstate, alloc_size, 0);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000654 spin_lock_irqsave(&pool->lock, *irq_flags);
655
656 if (!r) {
657 list_splice(&new_pages, &pool->list);
Pauli Nieminen07458662010-04-01 12:44:58 +0000658 ++pool->nrefills;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000659 pool->npages += alloc_size;
660 } else {
Michel Dänzer767601d2017-11-03 16:00:35 +0100661 pr_debug("Failed to fill pool (%p)\n", pool);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000662 /* If we have any pages left put them to the pool. */
Xiangliang.Yu9afae272017-08-16 14:25:51 +0800663 list_for_each_entry(p, &new_pages, lru) {
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000664 ++cpages;
665 }
666 list_splice(&new_pages, &pool->list);
667 pool->npages += cpages;
668 }
669
670 }
671 pool->fill_lock = false;
672}
673
674/**
Christian König8593e9b2017-09-21 11:28:25 +0200675 * Allocate pages from the pool and put them on the return list.
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000676 *
Christian König8593e9b2017-09-21 11:28:25 +0200677 * @return zero for success or negative error code.
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000678 */
Christian König8593e9b2017-09-21 11:28:25 +0200679static int ttm_page_pool_get_pages(struct ttm_page_pool *pool,
680 struct list_head *pages,
681 int ttm_flags,
682 enum ttm_caching_state cstate,
Christian König6ed4e2e2017-10-05 14:27:34 +0200683 unsigned count, unsigned order)
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000684{
685 unsigned long irq_flags;
686 struct list_head *p;
687 unsigned i;
Christian König8593e9b2017-09-21 11:28:25 +0200688 int r = 0;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000689
690 spin_lock_irqsave(&pool->lock, irq_flags);
Christian König6ed4e2e2017-10-05 14:27:34 +0200691 if (!order)
692 ttm_page_pool_fill_locked(pool, ttm_flags, cstate, count,
693 &irq_flags);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000694
695 if (count >= pool->npages) {
696 /* take all pages from the pool */
697 list_splice_init(&pool->list, pages);
698 count -= pool->npages;
699 pool->npages = 0;
700 goto out;
701 }
702 /* find the last pages to include for requested number of pages. Split
Konrad Rzeszutek Wilk0d74f862011-06-08 17:06:15 +0000703 * pool to begin and halve it to reduce search space. */
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000704 if (count <= pool->npages/2) {
705 i = 0;
706 list_for_each(p, &pool->list) {
707 if (++i == count)
708 break;
709 }
710 } else {
711 i = pool->npages + 1;
712 list_for_each_prev(p, &pool->list) {
713 if (--i == count)
714 break;
715 }
716 }
Konrad Rzeszutek Wilk0d74f862011-06-08 17:06:15 +0000717 /* Cut 'count' number of pages from the pool */
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000718 list_cut_position(pages, &pool->list, p);
719 pool->npages -= count;
720 count = 0;
721out:
722 spin_unlock_irqrestore(&pool->lock, irq_flags);
Christian König8593e9b2017-09-21 11:28:25 +0200723
724 /* clear the pages coming from the pool if requested */
725 if (ttm_flags & TTM_PAGE_FLAG_ZERO_ALLOC) {
726 struct page *page;
727
728 list_for_each_entry(page, pages, lru) {
729 if (PageHighMem(page))
730 clear_highpage(page);
731 else
732 clear_page(page_address(page));
733 }
734 }
735
736 /* If pool didn't have enough pages allocate new one. */
737 if (count) {
738 gfp_t gfp_flags = pool->gfp_flags;
739
740 /* set zero flag for page allocation if required */
741 if (ttm_flags & TTM_PAGE_FLAG_ZERO_ALLOC)
742 gfp_flags |= __GFP_ZERO;
743
Andrey Grodzovskycb5f1a52017-12-22 08:12:40 -0500744 if (ttm_flags & TTM_PAGE_FLAG_NO_RETRY)
745 gfp_flags |= __GFP_RETRY_MAYFAIL;
746
Christian König8593e9b2017-09-21 11:28:25 +0200747 /* ttm_alloc_new_pages doesn't reference pool so we can run
748 * multiple requests in parallel.
749 **/
750 r = ttm_alloc_new_pages(pages, gfp_flags, ttm_flags, cstate,
Christian König6ed4e2e2017-10-05 14:27:34 +0200751 count, order);
Christian König8593e9b2017-09-21 11:28:25 +0200752 }
753
754 return r;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000755}
756
Jerome Glisse8e7e7052011-11-09 17:15:26 -0500757/* Put all pages in pages list to correct pool to wait for reuse */
758static void ttm_put_pages(struct page **pages, unsigned npages, int flags,
759 enum ttm_caching_state cstate)
760{
Christian König6ed4e2e2017-10-05 14:27:34 +0200761 struct ttm_page_pool *pool = ttm_get_pool(flags, false, cstate);
Tom St Denis7d0a4282017-10-12 07:25:08 -0400762#ifdef CONFIG_TRANSPARENT_HUGEPAGE
Christian König6ed4e2e2017-10-05 14:27:34 +0200763 struct ttm_page_pool *huge = ttm_get_pool(flags, true, cstate);
Tom St Denis7d0a4282017-10-12 07:25:08 -0400764#endif
Jerome Glisse8e7e7052011-11-09 17:15:26 -0500765 unsigned long irq_flags;
Jerome Glisse8e7e7052011-11-09 17:15:26 -0500766 unsigned i;
767
768 if (pool == NULL) {
769 /* No pool for this memory type so free the pages */
Christian König0284f1e2017-09-20 15:06:12 +0200770 i = 0;
771 while (i < npages) {
Christian König5c42c642017-10-12 19:28:42 +0200772#ifdef CONFIG_TRANSPARENT_HUGEPAGE
773 struct page *p = pages[i];
774#endif
775 unsigned order = 0, j;
Christian König0284f1e2017-09-20 15:06:12 +0200776
777 if (!pages[i]) {
778 ++i;
779 continue;
780 }
781
Christian König5c42c642017-10-12 19:28:42 +0200782#ifdef CONFIG_TRANSPARENT_HUGEPAGE
Dave Airlie33d22c22017-11-23 12:12:17 +1000783 if (!(flags & TTM_PAGE_FLAG_DMA32)) {
784 for (j = 0; j < HPAGE_PMD_NR; ++j)
785 if (p++ != pages[i + j])
786 break;
Christian König5c42c642017-10-12 19:28:42 +0200787
Dave Airlie33d22c22017-11-23 12:12:17 +1000788 if (j == HPAGE_PMD_NR)
789 order = HPAGE_PMD_ORDER;
790 }
Christian König5c42c642017-10-12 19:28:42 +0200791#endif
792
Christian König0284f1e2017-09-20 15:06:12 +0200793 if (page_count(pages[i]) != 1)
794 pr_err("Erroneous page count. Leaking pages.\n");
Christian König0284f1e2017-09-20 15:06:12 +0200795 __free_pages(pages[i], order);
796
Christian König5c42c642017-10-12 19:28:42 +0200797 j = 1 << order;
798 while (j) {
Christian König0284f1e2017-09-20 15:06:12 +0200799 pages[i++] = NULL;
Christian König5c42c642017-10-12 19:28:42 +0200800 --j;
Jerome Glisse8e7e7052011-11-09 17:15:26 -0500801 }
802 }
803 return;
804 }
805
Christian König6ed4e2e2017-10-05 14:27:34 +0200806 i = 0;
807#ifdef CONFIG_TRANSPARENT_HUGEPAGE
808 if (huge) {
809 unsigned max_size, n2free;
810
811 spin_lock_irqsave(&huge->lock, irq_flags);
812 while (i < npages) {
813 struct page *p = pages[i];
814 unsigned j;
815
816 if (!p)
817 break;
818
819 for (j = 0; j < HPAGE_PMD_NR; ++j)
820 if (p++ != pages[i + j])
821 break;
822
823 if (j != HPAGE_PMD_NR)
824 break;
825
826 list_add_tail(&pages[i]->lru, &huge->list);
827
828 for (j = 0; j < HPAGE_PMD_NR; ++j)
829 pages[i++] = NULL;
830 huge->npages++;
831 }
832
833 /* Check that we don't go over the pool limit */
834 max_size = _manager->options.max_size;
835 max_size /= HPAGE_PMD_NR;
836 if (huge->npages > max_size)
837 n2free = huge->npages - max_size;
838 else
839 n2free = 0;
840 spin_unlock_irqrestore(&huge->lock, irq_flags);
841 if (n2free)
842 ttm_page_pool_free(huge, n2free, false);
843 }
844#endif
845
Jerome Glisse8e7e7052011-11-09 17:15:26 -0500846 spin_lock_irqsave(&pool->lock, irq_flags);
Christian König6ed4e2e2017-10-05 14:27:34 +0200847 while (i < npages) {
Jerome Glisse8e7e7052011-11-09 17:15:26 -0500848 if (pages[i]) {
849 if (page_count(pages[i]) != 1)
Joe Perches25d04792012-03-16 21:43:50 -0700850 pr_err("Erroneous page count. Leaking pages.\n");
Jerome Glisse8e7e7052011-11-09 17:15:26 -0500851 list_add_tail(&pages[i]->lru, &pool->list);
852 pages[i] = NULL;
853 pool->npages++;
854 }
Christian König6ed4e2e2017-10-05 14:27:34 +0200855 ++i;
Jerome Glisse8e7e7052011-11-09 17:15:26 -0500856 }
857 /* Check that we don't go over the pool limit */
858 npages = 0;
859 if (pool->npages > _manager->options.max_size) {
860 npages = pool->npages - _manager->options.max_size;
861 /* free at least NUM_PAGES_TO_ALLOC number of pages
862 * to reduce calls to set_memory_wb */
863 if (npages < NUM_PAGES_TO_ALLOC)
864 npages = NUM_PAGES_TO_ALLOC;
865 }
866 spin_unlock_irqrestore(&pool->lock, irq_flags);
867 if (npages)
Tetsuo Handa881fdaa2014-11-13 22:43:23 +0900868 ttm_page_pool_free(pool, npages, false);
Jerome Glisse8e7e7052011-11-09 17:15:26 -0500869}
870
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000871/*
872 * On success pages list will hold count number of correctly
873 * cached pages.
874 */
Jerome Glisse8e7e7052011-11-09 17:15:26 -0500875static int ttm_get_pages(struct page **pages, unsigned npages, int flags,
876 enum ttm_caching_state cstate)
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000877{
Christian König6ed4e2e2017-10-05 14:27:34 +0200878 struct ttm_page_pool *pool = ttm_get_pool(flags, false, cstate);
Tom St Denis7d0a4282017-10-12 07:25:08 -0400879#ifdef CONFIG_TRANSPARENT_HUGEPAGE
Christian König6ed4e2e2017-10-05 14:27:34 +0200880 struct ttm_page_pool *huge = ttm_get_pool(flags, true, cstate);
Tom St Denis7d0a4282017-10-12 07:25:08 -0400881#endif
Jerome Glisse822c4d92011-11-10 18:24:09 -0500882 struct list_head plist;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000883 struct page *p = NULL;
Christian Königfdb1a222017-12-04 11:17:54 +0100884 unsigned count, first;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000885 int r;
886
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000887 /* No pool for cached pages */
888 if (pool == NULL) {
Christian König8593e9b2017-09-21 11:28:25 +0200889 gfp_t gfp_flags = GFP_USER;
Tom St Denis7d0a4282017-10-12 07:25:08 -0400890 unsigned i;
891#ifdef CONFIG_TRANSPARENT_HUGEPAGE
892 unsigned j;
893#endif
Christian König0284f1e2017-09-20 15:06:12 +0200894
Christian König8593e9b2017-09-21 11:28:25 +0200895 /* set zero flag for page allocation if required */
896 if (flags & TTM_PAGE_FLAG_ZERO_ALLOC)
897 gfp_flags |= __GFP_ZERO;
898
Andrey Grodzovskycb5f1a52017-12-22 08:12:40 -0500899 if (flags & TTM_PAGE_FLAG_NO_RETRY)
900 gfp_flags |= __GFP_RETRY_MAYFAIL;
901
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000902 if (flags & TTM_PAGE_FLAG_DMA32)
903 gfp_flags |= GFP_DMA32;
904 else
Thomas Hellstrome8613c02010-05-26 16:21:03 +0200905 gfp_flags |= GFP_HIGHUSER;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000906
Christian König0284f1e2017-09-20 15:06:12 +0200907 i = 0;
908#ifdef CONFIG_TRANSPARENT_HUGEPAGE
Dave Airlie33d22c22017-11-23 12:12:17 +1000909 if (!(gfp_flags & GFP_DMA32)) {
910 while (npages >= HPAGE_PMD_NR) {
911 gfp_t huge_flags = gfp_flags;
Christian König0284f1e2017-09-20 15:06:12 +0200912
Michel Dänzerda291322018-04-25 17:32:10 +0200913 huge_flags |= GFP_TRANSHUGE_LIGHT | __GFP_NORETRY |
914 __GFP_KSWAPD_RECLAIM;
Dave Airlie33d22c22017-11-23 12:12:17 +1000915 huge_flags &= ~__GFP_MOVABLE;
916 huge_flags &= ~__GFP_COMP;
917 p = alloc_pages(huge_flags, HPAGE_PMD_ORDER);
918 if (!p)
919 break;
Christian König0284f1e2017-09-20 15:06:12 +0200920
Dave Airlie33d22c22017-11-23 12:12:17 +1000921 for (j = 0; j < HPAGE_PMD_NR; ++j)
922 pages[i++] = p++;
Christian König0284f1e2017-09-20 15:06:12 +0200923
Dave Airlie33d22c22017-11-23 12:12:17 +1000924 npages -= HPAGE_PMD_NR;
925 }
Christian König0284f1e2017-09-20 15:06:12 +0200926 }
927#endif
928
Christian Königfdb1a222017-12-04 11:17:54 +0100929 first = i;
Christian König0284f1e2017-09-20 15:06:12 +0200930 while (npages) {
Dave Airlied87dfdb2011-04-13 09:15:09 +1000931 p = alloc_page(gfp_flags);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000932 if (!p) {
Michel Dänzer767601d2017-11-03 16:00:35 +0100933 pr_debug("Unable to allocate page\n");
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000934 return -ENOMEM;
935 }
Dave Airlied87dfdb2011-04-13 09:15:09 +1000936
Christian Königfdb1a222017-12-04 11:17:54 +0100937 /* Swap the pages if we detect consecutive order */
938 if (i > first && pages[i - 1] == p - 1)
939 swap(p, pages[i - 1]);
940
Christian König0284f1e2017-09-20 15:06:12 +0200941 pages[i++] = p;
942 --npages;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000943 }
944 return 0;
945 }
946
Jerome Glisse822c4d92011-11-10 18:24:09 -0500947 count = 0;
Christian König6ed4e2e2017-10-05 14:27:34 +0200948
949#ifdef CONFIG_TRANSPARENT_HUGEPAGE
950 if (huge && npages >= HPAGE_PMD_NR) {
951 INIT_LIST_HEAD(&plist);
952 ttm_page_pool_get_pages(huge, &plist, flags, cstate,
953 npages / HPAGE_PMD_NR,
954 HPAGE_PMD_ORDER);
955
956 list_for_each_entry(p, &plist, lru) {
957 unsigned j;
958
959 for (j = 0; j < HPAGE_PMD_NR; ++j)
960 pages[count++] = &p[j];
961 }
962 }
963#endif
964
965 INIT_LIST_HEAD(&plist);
966 r = ttm_page_pool_get_pages(pool, &plist, flags, cstate,
967 npages - count, 0);
968
Christian Königae937fe2017-12-04 11:26:14 +0100969 first = count;
970 list_for_each_entry(p, &plist, lru) {
971 struct page *tmp = p;
972
973 /* Swap the pages if we detect consecutive order */
974 if (count > first && pages[count - 1] == tmp - 1)
975 swap(tmp, pages[count - 1]);
976 pages[count++] = tmp;
977 }
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000978
Christian König8593e9b2017-09-21 11:28:25 +0200979 if (r) {
980 /* If there is any pages in the list put them back to
981 * the pool.
982 */
Michel Dänzer767601d2017-11-03 16:00:35 +0100983 pr_debug("Failed to allocate extra pages for large request\n");
Christian König8593e9b2017-09-21 11:28:25 +0200984 ttm_put_pages(pages, count, flags, cstate);
985 return r;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000986 }
987
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000988 return 0;
989}
990
Dave Airlie3b9c2142014-07-22 12:55:39 +1000991static void ttm_page_pool_init_locked(struct ttm_page_pool *pool, gfp_t flags,
Roger He750a2502017-11-21 09:37:52 +0800992 char *name, unsigned int order)
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000993{
994 spin_lock_init(&pool->lock);
995 pool->fill_lock = false;
996 INIT_LIST_HEAD(&pool->list);
Pauli Nieminen07458662010-04-01 12:44:58 +0000997 pool->npages = pool->nfrees = 0;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000998 pool->gfp_flags = flags;
Pauli Nieminen07458662010-04-01 12:44:58 +0000999 pool->name = name;
Roger He750a2502017-11-21 09:37:52 +08001000 pool->order = order;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +00001001}
1002
Pauli Nieminenc96af792010-04-01 12:45:03 +00001003int ttm_page_alloc_init(struct ttm_mem_global *glob, unsigned max_pages)
Pauli Nieminen1403b1a2010-04-01 12:44:57 +00001004{
Pauli Nieminenc96af792010-04-01 12:45:03 +00001005 int ret;
Roger He750a2502017-11-21 09:37:52 +08001006#ifdef CONFIG_TRANSPARENT_HUGEPAGE
1007 unsigned order = HPAGE_PMD_ORDER;
1008#else
1009 unsigned order = 0;
1010#endif
Francisco Jerez5870a4d2010-07-04 04:03:07 +02001011
1012 WARN_ON(_manager);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +00001013
Joe Perches25d04792012-03-16 21:43:50 -07001014 pr_info("Initializing pool allocator\n");
Pauli Nieminen1403b1a2010-04-01 12:44:57 +00001015
Francisco Jerez5870a4d2010-07-04 04:03:07 +02001016 _manager = kzalloc(sizeof(*_manager), GFP_KERNEL);
Xiongwei Song19d859a2018-01-02 21:24:55 +08001017 if (!_manager)
1018 return -ENOMEM;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +00001019
Roger He750a2502017-11-21 09:37:52 +08001020 ttm_page_pool_init_locked(&_manager->wc_pool, GFP_HIGHUSER, "wc", 0);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +00001021
Roger He750a2502017-11-21 09:37:52 +08001022 ttm_page_pool_init_locked(&_manager->uc_pool, GFP_HIGHUSER, "uc", 0);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +00001023
Francisco Jerez5870a4d2010-07-04 04:03:07 +02001024 ttm_page_pool_init_locked(&_manager->wc_pool_dma32,
Roger He750a2502017-11-21 09:37:52 +08001025 GFP_USER | GFP_DMA32, "wc dma", 0);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +00001026
Francisco Jerez5870a4d2010-07-04 04:03:07 +02001027 ttm_page_pool_init_locked(&_manager->uc_pool_dma32,
Roger He750a2502017-11-21 09:37:52 +08001028 GFP_USER | GFP_DMA32, "uc dma", 0);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +00001029
Christian König6ed4e2e2017-10-05 14:27:34 +02001030 ttm_page_pool_init_locked(&_manager->wc_pool_huge,
Michel Dänzerda291322018-04-25 17:32:10 +02001031 (GFP_TRANSHUGE_LIGHT | __GFP_NORETRY |
1032 __GFP_KSWAPD_RECLAIM) &
1033 ~(__GFP_MOVABLE | __GFP_COMP),
Roger He750a2502017-11-21 09:37:52 +08001034 "wc huge", order);
Christian König6ed4e2e2017-10-05 14:27:34 +02001035
1036 ttm_page_pool_init_locked(&_manager->uc_pool_huge,
Michel Dänzerda291322018-04-25 17:32:10 +02001037 (GFP_TRANSHUGE_LIGHT | __GFP_NORETRY |
1038 __GFP_KSWAPD_RECLAIM) &
1039 ~(__GFP_MOVABLE | __GFP_COMP)
Roger He750a2502017-11-21 09:37:52 +08001040 , "uc huge", order);
Christian König6ed4e2e2017-10-05 14:27:34 +02001041
Francisco Jerez5870a4d2010-07-04 04:03:07 +02001042 _manager->options.max_size = max_pages;
1043 _manager->options.small = SMALL_ALLOCATION;
1044 _manager->options.alloc_size = NUM_PAGES_TO_ALLOC;
1045
1046 ret = kobject_init_and_add(&_manager->kobj, &ttm_pool_kobj_type,
1047 &glob->kobj, "pool");
Roger Hee2721592018-01-11 12:57:58 +08001048 if (unlikely(ret != 0))
1049 goto error;
Pauli Nieminenc96af792010-04-01 12:45:03 +00001050
Roger Hee2721592018-01-11 12:57:58 +08001051 ret = ttm_pool_mm_shrink_init(_manager);
1052 if (unlikely(ret != 0))
1053 goto error;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +00001054 return 0;
Roger Hee2721592018-01-11 12:57:58 +08001055
1056error:
1057 kobject_put(&_manager->kobj);
1058 _manager = NULL;
1059 return ret;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +00001060}
1061
Daniel J Blueman0e57a3c2010-09-22 17:45:45 +01001062void ttm_page_alloc_fini(void)
Pauli Nieminen1403b1a2010-04-01 12:44:57 +00001063{
1064 int i;
1065
Joe Perches25d04792012-03-16 21:43:50 -07001066 pr_info("Finalizing pool allocator\n");
Francisco Jerez5870a4d2010-07-04 04:03:07 +02001067 ttm_pool_mm_shrink_fini(_manager);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +00001068
Tetsuo Handa881fdaa2014-11-13 22:43:23 +09001069 /* OK to use static buffer since global mutex is no longer used. */
Pauli Nieminen1403b1a2010-04-01 12:44:57 +00001070 for (i = 0; i < NUM_POOLS; ++i)
Tetsuo Handa881fdaa2014-11-13 22:43:23 +09001071 ttm_page_pool_free(&_manager->pools[i], FREE_ALL_PAGES, true);
Pauli Nieminenc96af792010-04-01 12:45:03 +00001072
Francisco Jerez5870a4d2010-07-04 04:03:07 +02001073 kobject_put(&_manager->kobj);
1074 _manager = NULL;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +00001075}
Pauli Nieminen07458662010-04-01 12:44:58 +00001076
Roger He4d869f22018-01-19 15:17:27 +08001077static void
1078ttm_pool_unpopulate_helper(struct ttm_tt *ttm, unsigned mem_count_update)
1079{
Christian König3231a762018-02-21 19:02:06 +01001080 struct ttm_mem_global *mem_glob = ttm->bdev->glob->mem_glob;
Roger He4d869f22018-01-19 15:17:27 +08001081 unsigned i;
1082
1083 if (mem_count_update == 0)
1084 goto put_pages;
1085
1086 for (i = 0; i < mem_count_update; ++i) {
1087 if (!ttm->pages[i])
1088 continue;
1089
Christian König3231a762018-02-21 19:02:06 +01001090 ttm_mem_global_free_page(mem_glob, ttm->pages[i], PAGE_SIZE);
Roger He4d869f22018-01-19 15:17:27 +08001091 }
1092
1093put_pages:
1094 ttm_put_pages(ttm->pages, ttm->num_pages, ttm->page_flags,
1095 ttm->caching_state);
1096 ttm->state = tt_unpopulated;
1097}
1098
Roger Hed0cef9f2017-12-21 17:42:50 +08001099int ttm_pool_populate(struct ttm_tt *ttm, struct ttm_operation_ctx *ctx)
Jerome Glisseb1e5f172011-11-02 23:59:28 -04001100{
Christian König3231a762018-02-21 19:02:06 +01001101 struct ttm_mem_global *mem_glob = ttm->bdev->glob->mem_glob;
Jerome Glisseb1e5f172011-11-02 23:59:28 -04001102 unsigned i;
1103 int ret;
1104
1105 if (ttm->state != tt_unpopulated)
1106 return 0;
1107
Roger Heec3fe392018-02-05 17:57:07 +08001108 if (ttm_check_under_lowerlimit(mem_glob, ttm->num_pages, ctx))
1109 return -ENOMEM;
1110
Christian Königc6e839a2017-09-19 15:20:42 +02001111 ret = ttm_get_pages(ttm->pages, ttm->num_pages, ttm->page_flags,
1112 ttm->caching_state);
1113 if (unlikely(ret != 0)) {
Roger He4d869f22018-01-19 15:17:27 +08001114 ttm_pool_unpopulate_helper(ttm, 0);
Christian Königc6e839a2017-09-19 15:20:42 +02001115 return ret;
1116 }
Jerome Glisseb1e5f172011-11-02 23:59:28 -04001117
Christian Königc6e839a2017-09-19 15:20:42 +02001118 for (i = 0; i < ttm->num_pages; ++i) {
Christian Königd188bfa2017-07-04 16:56:24 +02001119 ret = ttm_mem_global_alloc_page(mem_glob, ttm->pages[i],
Roger Hed0cef9f2017-12-21 17:42:50 +08001120 PAGE_SIZE, ctx);
Jerome Glisseb1e5f172011-11-02 23:59:28 -04001121 if (unlikely(ret != 0)) {
Roger He4d869f22018-01-19 15:17:27 +08001122 ttm_pool_unpopulate_helper(ttm, i);
Jerome Glisseb1e5f172011-11-02 23:59:28 -04001123 return -ENOMEM;
1124 }
1125 }
1126
1127 if (unlikely(ttm->page_flags & TTM_PAGE_FLAG_SWAPPED)) {
1128 ret = ttm_tt_swapin(ttm);
1129 if (unlikely(ret != 0)) {
1130 ttm_pool_unpopulate(ttm);
1131 return ret;
1132 }
1133 }
1134
1135 ttm->state = tt_unbound;
1136 return 0;
1137}
1138EXPORT_SYMBOL(ttm_pool_populate);
1139
1140void ttm_pool_unpopulate(struct ttm_tt *ttm)
1141{
Roger He4d869f22018-01-19 15:17:27 +08001142 ttm_pool_unpopulate_helper(ttm, ttm->num_pages);
Jerome Glisseb1e5f172011-11-02 23:59:28 -04001143}
1144EXPORT_SYMBOL(ttm_pool_unpopulate);
1145
Roger Hed0cef9f2017-12-21 17:42:50 +08001146int ttm_populate_and_map_pages(struct device *dev, struct ttm_dma_tt *tt,
1147 struct ttm_operation_ctx *ctx)
Tom St Denisa4dec812017-08-18 10:04:57 -04001148{
Christian König6056a1a2017-09-20 14:07:02 +02001149 unsigned i, j;
Tom St Denisa4dec812017-08-18 10:04:57 -04001150 int r;
1151
Roger Hed0cef9f2017-12-21 17:42:50 +08001152 r = ttm_pool_populate(&tt->ttm, ctx);
Tom St Denisa4dec812017-08-18 10:04:57 -04001153 if (r)
1154 return r;
1155
Christian König6056a1a2017-09-20 14:07:02 +02001156 for (i = 0; i < tt->ttm.num_pages; ++i) {
1157 struct page *p = tt->ttm.pages[i];
1158 size_t num_pages = 1;
1159
1160 for (j = i + 1; j < tt->ttm.num_pages; ++j) {
1161 if (++p != tt->ttm.pages[j])
1162 break;
1163
1164 ++num_pages;
1165 }
1166
Tom St Denisa4dec812017-08-18 10:04:57 -04001167 tt->dma_address[i] = dma_map_page(dev, tt->ttm.pages[i],
Christian König6056a1a2017-09-20 14:07:02 +02001168 0, num_pages * PAGE_SIZE,
Tom St Denisa4dec812017-08-18 10:04:57 -04001169 DMA_BIDIRECTIONAL);
1170 if (dma_mapping_error(dev, tt->dma_address[i])) {
1171 while (i--) {
1172 dma_unmap_page(dev, tt->dma_address[i],
1173 PAGE_SIZE, DMA_BIDIRECTIONAL);
1174 tt->dma_address[i] = 0;
1175 }
1176 ttm_pool_unpopulate(&tt->ttm);
1177 return -EFAULT;
1178 }
Christian König6056a1a2017-09-20 14:07:02 +02001179
1180 for (j = 1; j < num_pages; ++j) {
1181 tt->dma_address[i + 1] = tt->dma_address[i] + PAGE_SIZE;
1182 ++i;
1183 }
Tom St Denisa4dec812017-08-18 10:04:57 -04001184 }
1185 return 0;
1186}
1187EXPORT_SYMBOL(ttm_populate_and_map_pages);
1188
1189void ttm_unmap_and_unpopulate_pages(struct device *dev, struct ttm_dma_tt *tt)
1190{
Christian König6056a1a2017-09-20 14:07:02 +02001191 unsigned i, j;
1192
1193 for (i = 0; i < tt->ttm.num_pages;) {
1194 struct page *p = tt->ttm.pages[i];
1195 size_t num_pages = 1;
1196
1197 if (!tt->dma_address[i] || !tt->ttm.pages[i]) {
1198 ++i;
1199 continue;
Tom St Denisa4dec812017-08-18 10:04:57 -04001200 }
Christian König6056a1a2017-09-20 14:07:02 +02001201
1202 for (j = i + 1; j < tt->ttm.num_pages; ++j) {
1203 if (++p != tt->ttm.pages[j])
1204 break;
1205
1206 ++num_pages;
1207 }
1208
1209 dma_unmap_page(dev, tt->dma_address[i], num_pages * PAGE_SIZE,
1210 DMA_BIDIRECTIONAL);
1211
1212 i += num_pages;
Tom St Denisa4dec812017-08-18 10:04:57 -04001213 }
1214 ttm_pool_unpopulate(&tt->ttm);
1215}
1216EXPORT_SYMBOL(ttm_unmap_and_unpopulate_pages);
1217
Pauli Nieminen07458662010-04-01 12:44:58 +00001218int ttm_page_alloc_debugfs(struct seq_file *m, void *data)
1219{
1220 struct ttm_page_pool *p;
1221 unsigned i;
1222 char *h[] = {"pool", "refills", "pages freed", "size"};
Francisco Jerez5870a4d2010-07-04 04:03:07 +02001223 if (!_manager) {
Pauli Nieminen07458662010-04-01 12:44:58 +00001224 seq_printf(m, "No pool allocator running.\n");
1225 return 0;
1226 }
Christian König6ed4e2e2017-10-05 14:27:34 +02001227 seq_printf(m, "%7s %12s %13s %8s\n",
Pauli Nieminen07458662010-04-01 12:44:58 +00001228 h[0], h[1], h[2], h[3]);
1229 for (i = 0; i < NUM_POOLS; ++i) {
Francisco Jerez5870a4d2010-07-04 04:03:07 +02001230 p = &_manager->pools[i];
Pauli Nieminen07458662010-04-01 12:44:58 +00001231
Christian König6ed4e2e2017-10-05 14:27:34 +02001232 seq_printf(m, "%7s %12ld %13ld %8d\n",
Pauli Nieminen07458662010-04-01 12:44:58 +00001233 p->name, p->nrefills,
1234 p->nfrees, p->npages);
1235 }
1236 return 0;
1237}
1238EXPORT_SYMBOL(ttm_page_alloc_debugfs);