blob: 025c429050c06c4079f5b471128e499463abc753 [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
Luck, Tonyd6678652010-07-21 10:15:39 -070051#ifdef TTM_HAS_AGP
52#include <asm/agp.h>
53#endif
Pauli Nieminen1403b1a2010-04-01 12:44:57 +000054
55#define NUM_PAGES_TO_ALLOC (PAGE_SIZE/sizeof(struct page *))
56#define SMALL_ALLOCATION 16
57#define FREE_ALL_PAGES (~0U)
58/* times are in msecs */
59#define PAGE_FREE_INTERVAL 1000
60
61/**
62 * struct ttm_page_pool - Pool to reuse recently allocated uc/wc pages.
63 *
64 * @lock: Protects the shared pool from concurrnet access. Must be used with
65 * irqsave/irqrestore variants because pool allocator maybe called from
66 * delayed work.
67 * @fill_lock: Prevent concurrent calls to fill.
68 * @list: Pool of free uc/wc pages for fast reuse.
69 * @gfp_flags: Flags to pass for alloc_page.
70 * @npages: Number of pages in pool.
71 */
72struct ttm_page_pool {
73 spinlock_t lock;
74 bool fill_lock;
75 struct list_head list;
Daniel J Blueman0e57a3c2010-09-22 17:45:45 +010076 gfp_t gfp_flags;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +000077 unsigned npages;
Pauli Nieminen07458662010-04-01 12:44:58 +000078 char *name;
79 unsigned long nfrees;
80 unsigned long nrefills;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +000081};
82
Pauli Nieminenc96af792010-04-01 12:45:03 +000083/**
84 * Limits for the pool. They are handled without locks because only place where
85 * they may change is in sysfs store. They won't have immediate effect anyway
Thomas Hellstrom4abe4382010-05-26 16:21:04 +020086 * so forcing serialization to access them is pointless.
Pauli Nieminenc96af792010-04-01 12:45:03 +000087 */
88
Pauli Nieminen1403b1a2010-04-01 12:44:57 +000089struct ttm_pool_opts {
90 unsigned alloc_size;
91 unsigned max_size;
92 unsigned small;
93};
94
95#define NUM_POOLS 4
96
97/**
98 * struct ttm_pool_manager - Holds memory pools for fst allocation
99 *
100 * Manager is read only object for pool code so it doesn't need locking.
101 *
102 * @free_interval: minimum number of jiffies between freeing pages from pool.
103 * @page_alloc_inited: reference counting for pool allocation.
104 * @work: Work that is used to shrink the pool. Work is only run when there is
105 * some pages to free.
106 * @small_allocation: Limit in number of pages what is small allocation.
107 *
108 * @pools: All pool objects in use.
109 **/
110struct ttm_pool_manager {
Pauli Nieminenc96af792010-04-01 12:45:03 +0000111 struct kobject kobj;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000112 struct shrinker mm_shrink;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000113 struct ttm_pool_opts options;
114
115 union {
116 struct ttm_page_pool pools[NUM_POOLS];
117 struct {
118 struct ttm_page_pool wc_pool;
119 struct ttm_page_pool uc_pool;
120 struct ttm_page_pool wc_pool_dma32;
121 struct ttm_page_pool uc_pool_dma32;
122 } ;
123 };
124};
125
Pauli Nieminenc96af792010-04-01 12:45:03 +0000126static struct attribute ttm_page_pool_max = {
127 .name = "pool_max_size",
128 .mode = S_IRUGO | S_IWUSR
129};
130static struct attribute ttm_page_pool_small = {
131 .name = "pool_small_allocation",
132 .mode = S_IRUGO | S_IWUSR
133};
134static struct attribute ttm_page_pool_alloc_size = {
135 .name = "pool_allocation_size",
136 .mode = S_IRUGO | S_IWUSR
137};
138
139static struct attribute *ttm_pool_attrs[] = {
140 &ttm_page_pool_max,
141 &ttm_page_pool_small,
142 &ttm_page_pool_alloc_size,
143 NULL
144};
145
146static void ttm_pool_kobj_release(struct kobject *kobj)
147{
148 struct ttm_pool_manager *m =
149 container_of(kobj, struct ttm_pool_manager, kobj);
Francisco Jerez5870a4d2010-07-04 04:03:07 +0200150 kfree(m);
Pauli Nieminenc96af792010-04-01 12:45:03 +0000151}
152
153static ssize_t ttm_pool_store(struct kobject *kobj,
154 struct attribute *attr, const char *buffer, size_t size)
155{
156 struct ttm_pool_manager *m =
157 container_of(kobj, struct ttm_pool_manager, kobj);
158 int chars;
159 unsigned val;
160 chars = sscanf(buffer, "%u", &val);
161 if (chars == 0)
162 return size;
163
164 /* Convert kb to number of pages */
165 val = val / (PAGE_SIZE >> 10);
166
167 if (attr == &ttm_page_pool_max)
168 m->options.max_size = val;
169 else if (attr == &ttm_page_pool_small)
170 m->options.small = val;
171 else if (attr == &ttm_page_pool_alloc_size) {
172 if (val > NUM_PAGES_TO_ALLOC*8) {
Joe Perches25d04792012-03-16 21:43:50 -0700173 pr_err("Setting allocation size to %lu is not allowed. Recommended size is %lu\n",
Thomas Hellstrom4abe4382010-05-26 16:21:04 +0200174 NUM_PAGES_TO_ALLOC*(PAGE_SIZE >> 7),
175 NUM_PAGES_TO_ALLOC*(PAGE_SIZE >> 10));
Pauli Nieminenc96af792010-04-01 12:45:03 +0000176 return size;
177 } else if (val > NUM_PAGES_TO_ALLOC) {
Joe Perches25d04792012-03-16 21:43:50 -0700178 pr_warn("Setting allocation size to larger than %lu is not recommended\n",
179 NUM_PAGES_TO_ALLOC*(PAGE_SIZE >> 10));
Pauli Nieminenc96af792010-04-01 12:45:03 +0000180 }
181 m->options.alloc_size = val;
182 }
183
184 return size;
185}
186
187static ssize_t ttm_pool_show(struct kobject *kobj,
188 struct attribute *attr, char *buffer)
189{
190 struct ttm_pool_manager *m =
191 container_of(kobj, struct ttm_pool_manager, kobj);
192 unsigned val = 0;
193
194 if (attr == &ttm_page_pool_max)
195 val = m->options.max_size;
196 else if (attr == &ttm_page_pool_small)
197 val = m->options.small;
198 else if (attr == &ttm_page_pool_alloc_size)
199 val = m->options.alloc_size;
200
201 val = val * (PAGE_SIZE >> 10);
202
203 return snprintf(buffer, PAGE_SIZE, "%u\n", val);
204}
205
206static const struct sysfs_ops ttm_pool_sysfs_ops = {
207 .show = &ttm_pool_show,
208 .store = &ttm_pool_store,
209};
210
211static struct kobj_type ttm_pool_kobj_type = {
212 .release = &ttm_pool_kobj_release,
213 .sysfs_ops = &ttm_pool_sysfs_ops,
214 .default_attrs = ttm_pool_attrs,
215};
216
Francisco Jerez5870a4d2010-07-04 04:03:07 +0200217static struct ttm_pool_manager *_manager;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000218
Pauli Nieminen975efdb2010-04-01 12:45:02 +0000219#ifndef CONFIG_X86
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000220static int set_pages_array_wb(struct page **pages, int addrinarray)
221{
222#ifdef TTM_HAS_AGP
223 int i;
224
225 for (i = 0; i < addrinarray; i++)
226 unmap_page_from_agp(pages[i]);
227#endif
228 return 0;
229}
230
231static int set_pages_array_wc(struct page **pages, int addrinarray)
232{
233#ifdef TTM_HAS_AGP
234 int i;
235
236 for (i = 0; i < addrinarray; i++)
237 map_page_into_agp(pages[i]);
238#endif
239 return 0;
240}
241
242static int set_pages_array_uc(struct page **pages, int addrinarray)
243{
244#ifdef TTM_HAS_AGP
245 int i;
246
247 for (i = 0; i < addrinarray; i++)
248 map_page_into_agp(pages[i]);
249#endif
250 return 0;
251}
252#endif
253
254/**
255 * Select the right pool or requested caching state and ttm flags. */
256static struct ttm_page_pool *ttm_get_pool(int flags,
257 enum ttm_caching_state cstate)
258{
259 int pool_index;
260
261 if (cstate == tt_cached)
262 return NULL;
263
264 if (cstate == tt_wc)
265 pool_index = 0x0;
266 else
267 pool_index = 0x1;
268
269 if (flags & TTM_PAGE_FLAG_DMA32)
270 pool_index |= 0x2;
271
Francisco Jerez5870a4d2010-07-04 04:03:07 +0200272 return &_manager->pools[pool_index];
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000273}
274
275/* set memory back to wb and free the pages. */
276static void ttm_pages_put(struct page *pages[], unsigned npages)
277{
278 unsigned i;
279 if (set_pages_array_wb(pages, npages))
Joe Perches25d04792012-03-16 21:43:50 -0700280 pr_err("Failed to set %d pages to wb!\n", npages);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000281 for (i = 0; i < npages; ++i)
282 __free_page(pages[i]);
283}
284
285static void ttm_pool_update_free_locked(struct ttm_page_pool *pool,
286 unsigned freed_pages)
287{
288 pool->npages -= freed_pages;
Pauli Nieminen07458662010-04-01 12:44:58 +0000289 pool->nfrees += freed_pages;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000290}
291
292/**
293 * Free pages from pool.
294 *
295 * To prevent hogging the ttm_swap process we only free NUM_PAGES_TO_ALLOC
296 * number of pages in one go.
297 *
298 * @pool: to free the pages from
299 * @free_all: If set to true will free all pages in pool
Tetsuo Handa881fdaa2014-11-13 22:43:23 +0900300 * @use_static: Safe to use static buffer
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000301 **/
Tetsuo Handaa91576d2014-08-03 20:02:31 +0900302static int ttm_page_pool_free(struct ttm_page_pool *pool, unsigned nr_free,
Tetsuo Handa881fdaa2014-11-13 22:43:23 +0900303 bool use_static)
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000304{
Tetsuo Handa881fdaa2014-11-13 22:43:23 +0900305 static struct page *static_buf[NUM_PAGES_TO_ALLOC];
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000306 unsigned long irq_flags;
307 struct page *p;
308 struct page **pages_to_free;
309 unsigned freed_pages = 0,
310 npages_to_free = nr_free;
311
312 if (NUM_PAGES_TO_ALLOC < nr_free)
313 npages_to_free = NUM_PAGES_TO_ALLOC;
314
Tetsuo Handa881fdaa2014-11-13 22:43:23 +0900315 if (use_static)
316 pages_to_free = static_buf;
317 else
318 pages_to_free = kmalloc(npages_to_free * sizeof(struct page *),
319 GFP_KERNEL);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000320 if (!pages_to_free) {
Joe Perches25d04792012-03-16 21:43:50 -0700321 pr_err("Failed to allocate memory for pool free operation\n");
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000322 return 0;
323 }
324
325restart:
326 spin_lock_irqsave(&pool->lock, irq_flags);
327
328 list_for_each_entry_reverse(p, &pool->list, lru) {
329 if (freed_pages >= npages_to_free)
330 break;
331
332 pages_to_free[freed_pages++] = p;
333 /* We can only remove NUM_PAGES_TO_ALLOC at a time. */
334 if (freed_pages >= NUM_PAGES_TO_ALLOC) {
335 /* remove range of pages from the pool */
336 __list_del(p->lru.prev, &pool->list);
337
338 ttm_pool_update_free_locked(pool, freed_pages);
339 /**
340 * Because changing page caching is costly
341 * we unlock the pool to prevent stalling.
342 */
343 spin_unlock_irqrestore(&pool->lock, irq_flags);
344
345 ttm_pages_put(pages_to_free, freed_pages);
346 if (likely(nr_free != FREE_ALL_PAGES))
347 nr_free -= freed_pages;
348
349 if (NUM_PAGES_TO_ALLOC >= nr_free)
350 npages_to_free = nr_free;
351 else
352 npages_to_free = NUM_PAGES_TO_ALLOC;
353
354 freed_pages = 0;
355
356 /* free all so restart the processing */
357 if (nr_free)
358 goto restart;
359
Konrad Rzeszutek Wilk0d74f862011-06-08 17:06:15 +0000360 /* Not allowed to fall through or break because
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000361 * following context is inside spinlock while we are
362 * outside here.
363 */
364 goto out;
365
366 }
367 }
368
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000369 /* remove range of pages from the pool */
370 if (freed_pages) {
371 __list_del(&p->lru, &pool->list);
372
373 ttm_pool_update_free_locked(pool, freed_pages);
374 nr_free -= freed_pages;
375 }
376
377 spin_unlock_irqrestore(&pool->lock, irq_flags);
378
379 if (freed_pages)
380 ttm_pages_put(pages_to_free, freed_pages);
381out:
Tetsuo Handa881fdaa2014-11-13 22:43:23 +0900382 if (pages_to_free != static_buf)
383 kfree(pages_to_free);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000384 return nr_free;
385}
386
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000387/**
Thomas Hellstrom4abe4382010-05-26 16:21:04 +0200388 * Callback for mm to request pool to reduce number of page held.
Dave Chinner7dc19d52013-08-28 10:18:11 +1000389 *
390 * XXX: (dchinner) Deadlock warning!
391 *
Dave Chinner7dc19d52013-08-28 10:18:11 +1000392 * This code is crying out for a shrinker per pool....
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000393 */
Dave Chinner7dc19d52013-08-28 10:18:11 +1000394static unsigned long
395ttm_pool_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000396{
Tetsuo Handa71336e02014-08-03 20:02:03 +0900397 static DEFINE_MUTEX(lock);
398 static unsigned start_pool;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000399 unsigned i;
Tetsuo Handa71336e02014-08-03 20:02:03 +0900400 unsigned pool_offset;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000401 struct ttm_page_pool *pool;
Ying Han1495f232011-05-24 17:12:27 -0700402 int shrink_pages = sc->nr_to_scan;
Dave Chinner7dc19d52013-08-28 10:18:11 +1000403 unsigned long freed = 0;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000404
Tetsuo Handa71336e02014-08-03 20:02:03 +0900405 if (!mutex_trylock(&lock))
406 return SHRINK_STOP;
407 pool_offset = ++start_pool % NUM_POOLS;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000408 /* select start pool in round robin fashion */
409 for (i = 0; i < NUM_POOLS; ++i) {
410 unsigned nr_free = shrink_pages;
411 if (shrink_pages == 0)
412 break;
Francisco Jerez5870a4d2010-07-04 04:03:07 +0200413 pool = &_manager->pools[(i + pool_offset)%NUM_POOLS];
Tetsuo Handa881fdaa2014-11-13 22:43:23 +0900414 /* OK to use static buffer since global mutex is held. */
415 shrink_pages = ttm_page_pool_free(pool, nr_free, true);
Dave Chinner7dc19d52013-08-28 10:18:11 +1000416 freed += nr_free - shrink_pages;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000417 }
Tetsuo Handa71336e02014-08-03 20:02:03 +0900418 mutex_unlock(&lock);
Dave Chinner7dc19d52013-08-28 10:18:11 +1000419 return freed;
420}
421
422
423static unsigned long
424ttm_pool_shrink_count(struct shrinker *shrink, struct shrink_control *sc)
425{
426 unsigned i;
427 unsigned long count = 0;
428
429 for (i = 0; i < NUM_POOLS; ++i)
430 count += _manager->pools[i].npages;
431
432 return count;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000433}
434
435static void ttm_pool_mm_shrink_init(struct ttm_pool_manager *manager)
436{
Dave Chinner7dc19d52013-08-28 10:18:11 +1000437 manager->mm_shrink.count_objects = ttm_pool_shrink_count;
438 manager->mm_shrink.scan_objects = ttm_pool_shrink_scan;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000439 manager->mm_shrink.seeks = 1;
440 register_shrinker(&manager->mm_shrink);
441}
442
443static void ttm_pool_mm_shrink_fini(struct ttm_pool_manager *manager)
444{
445 unregister_shrinker(&manager->mm_shrink);
446}
447
448static int ttm_set_pages_caching(struct page **pages,
449 enum ttm_caching_state cstate, unsigned cpages)
450{
451 int r = 0;
452 /* Set page caching */
453 switch (cstate) {
454 case tt_uncached:
455 r = set_pages_array_uc(pages, cpages);
456 if (r)
Joe Perches25d04792012-03-16 21:43:50 -0700457 pr_err("Failed to set %d pages to uc!\n", cpages);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000458 break;
459 case tt_wc:
460 r = set_pages_array_wc(pages, cpages);
461 if (r)
Joe Perches25d04792012-03-16 21:43:50 -0700462 pr_err("Failed to set %d pages to wc!\n", cpages);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000463 break;
464 default:
465 break;
466 }
467 return r;
468}
469
470/**
471 * Free pages the pages that failed to change the caching state. If there is
472 * any pages that have changed their caching state already put them to the
473 * pool.
474 */
475static void ttm_handle_caching_state_failure(struct list_head *pages,
476 int ttm_flags, enum ttm_caching_state cstate,
477 struct page **failed_pages, unsigned cpages)
478{
479 unsigned i;
Thomas Hellstrom4abe4382010-05-26 16:21:04 +0200480 /* Failed pages have to be freed */
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000481 for (i = 0; i < cpages; ++i) {
482 list_del(&failed_pages[i]->lru);
483 __free_page(failed_pages[i]);
484 }
485}
486
487/**
488 * Allocate new pages with correct caching.
489 *
490 * This function is reentrant if caller updates count depending on number of
491 * pages returned in pages array.
492 */
Daniel J Blueman0e57a3c2010-09-22 17:45:45 +0100493static int ttm_alloc_new_pages(struct list_head *pages, gfp_t gfp_flags,
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000494 int ttm_flags, enum ttm_caching_state cstate, unsigned count)
495{
496 struct page **caching_array;
497 struct page *p;
498 int r = 0;
499 unsigned i, cpages;
500 unsigned max_cpages = min(count,
501 (unsigned)(PAGE_SIZE/sizeof(struct page *)));
502
503 /* allocate array for page caching change */
504 caching_array = kmalloc(max_cpages*sizeof(struct page *), GFP_KERNEL);
505
506 if (!caching_array) {
Joe Perches25d04792012-03-16 21:43:50 -0700507 pr_err("Unable to allocate table for new pages\n");
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000508 return -ENOMEM;
509 }
510
511 for (i = 0, cpages = 0; i < count; ++i) {
512 p = alloc_page(gfp_flags);
513
514 if (!p) {
Joe Perches25d04792012-03-16 21:43:50 -0700515 pr_err("Unable to get page %u\n", i);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000516
517 /* store already allocated pages in the pool after
518 * setting the caching state */
519 if (cpages) {
Thomas Hellstrom4abe4382010-05-26 16:21:04 +0200520 r = ttm_set_pages_caching(caching_array,
521 cstate, cpages);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000522 if (r)
523 ttm_handle_caching_state_failure(pages,
524 ttm_flags, cstate,
525 caching_array, cpages);
526 }
527 r = -ENOMEM;
528 goto out;
529 }
530
531#ifdef CONFIG_HIGHMEM
532 /* gfp flags of highmem page should never be dma32 so we
533 * we should be fine in such case
534 */
535 if (!PageHighMem(p))
536#endif
537 {
538 caching_array[cpages++] = p;
539 if (cpages == max_cpages) {
540
541 r = ttm_set_pages_caching(caching_array,
542 cstate, cpages);
543 if (r) {
544 ttm_handle_caching_state_failure(pages,
545 ttm_flags, cstate,
546 caching_array, cpages);
547 goto out;
548 }
549 cpages = 0;
550 }
551 }
552
553 list_add(&p->lru, pages);
554 }
555
556 if (cpages) {
557 r = ttm_set_pages_caching(caching_array, cstate, cpages);
558 if (r)
559 ttm_handle_caching_state_failure(pages,
560 ttm_flags, cstate,
561 caching_array, cpages);
562 }
563out:
564 kfree(caching_array);
565
566 return r;
567}
568
569/**
Konrad Rzeszutek Wilk0d74f862011-06-08 17:06:15 +0000570 * Fill the given pool if there aren't enough pages and the requested number of
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000571 * pages is small.
572 */
573static void ttm_page_pool_fill_locked(struct ttm_page_pool *pool,
574 int ttm_flags, enum ttm_caching_state cstate, unsigned count,
575 unsigned long *irq_flags)
576{
577 struct page *p;
578 int r;
579 unsigned cpages = 0;
580 /**
581 * Only allow one pool fill operation at a time.
582 * If pool doesn't have enough pages for the allocation new pages are
583 * allocated from outside of pool.
584 */
585 if (pool->fill_lock)
586 return;
587
588 pool->fill_lock = true;
589
Konrad Rzeszutek Wilk0d74f862011-06-08 17:06:15 +0000590 /* If allocation request is small and there are not enough
591 * pages in a pool we fill the pool up first. */
Francisco Jerez5870a4d2010-07-04 04:03:07 +0200592 if (count < _manager->options.small
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000593 && count > pool->npages) {
594 struct list_head new_pages;
Francisco Jerez5870a4d2010-07-04 04:03:07 +0200595 unsigned alloc_size = _manager->options.alloc_size;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000596
597 /**
598 * Can't change page caching if in irqsave context. We have to
599 * drop the pool->lock.
600 */
601 spin_unlock_irqrestore(&pool->lock, *irq_flags);
602
603 INIT_LIST_HEAD(&new_pages);
604 r = ttm_alloc_new_pages(&new_pages, pool->gfp_flags, ttm_flags,
605 cstate, alloc_size);
606 spin_lock_irqsave(&pool->lock, *irq_flags);
607
608 if (!r) {
609 list_splice(&new_pages, &pool->list);
Pauli Nieminen07458662010-04-01 12:44:58 +0000610 ++pool->nrefills;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000611 pool->npages += alloc_size;
612 } else {
Joe Perches25d04792012-03-16 21:43:50 -0700613 pr_err("Failed to fill pool (%p)\n", pool);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000614 /* If we have any pages left put them to the pool. */
615 list_for_each_entry(p, &pool->list, lru) {
616 ++cpages;
617 }
618 list_splice(&new_pages, &pool->list);
619 pool->npages += cpages;
620 }
621
622 }
623 pool->fill_lock = false;
624}
625
626/**
Konrad Rzeszutek Wilk0d74f862011-06-08 17:06:15 +0000627 * Cut 'count' number of pages from the pool and put them on the return list.
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000628 *
Konrad Rzeszutek Wilk0d74f862011-06-08 17:06:15 +0000629 * @return count of pages still required to fulfill the request.
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000630 */
631static unsigned ttm_page_pool_get_pages(struct ttm_page_pool *pool,
Jerome Glisse822c4d92011-11-10 18:24:09 -0500632 struct list_head *pages,
633 int ttm_flags,
634 enum ttm_caching_state cstate,
635 unsigned count)
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000636{
637 unsigned long irq_flags;
638 struct list_head *p;
639 unsigned i;
640
641 spin_lock_irqsave(&pool->lock, irq_flags);
642 ttm_page_pool_fill_locked(pool, ttm_flags, cstate, count, &irq_flags);
643
644 if (count >= pool->npages) {
645 /* take all pages from the pool */
646 list_splice_init(&pool->list, pages);
647 count -= pool->npages;
648 pool->npages = 0;
649 goto out;
650 }
651 /* find the last pages to include for requested number of pages. Split
Konrad Rzeszutek Wilk0d74f862011-06-08 17:06:15 +0000652 * pool to begin and halve it to reduce search space. */
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000653 if (count <= pool->npages/2) {
654 i = 0;
655 list_for_each(p, &pool->list) {
656 if (++i == count)
657 break;
658 }
659 } else {
660 i = pool->npages + 1;
661 list_for_each_prev(p, &pool->list) {
662 if (--i == count)
663 break;
664 }
665 }
Konrad Rzeszutek Wilk0d74f862011-06-08 17:06:15 +0000666 /* Cut 'count' number of pages from the pool */
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000667 list_cut_position(pages, &pool->list, p);
668 pool->npages -= count;
669 count = 0;
670out:
671 spin_unlock_irqrestore(&pool->lock, irq_flags);
672 return count;
673}
674
Jerome Glisse8e7e7052011-11-09 17:15:26 -0500675/* Put all pages in pages list to correct pool to wait for reuse */
676static void ttm_put_pages(struct page **pages, unsigned npages, int flags,
677 enum ttm_caching_state cstate)
678{
679 unsigned long irq_flags;
680 struct ttm_page_pool *pool = ttm_get_pool(flags, cstate);
681 unsigned i;
682
683 if (pool == NULL) {
684 /* No pool for this memory type so free the pages */
685 for (i = 0; i < npages; i++) {
686 if (pages[i]) {
687 if (page_count(pages[i]) != 1)
Joe Perches25d04792012-03-16 21:43:50 -0700688 pr_err("Erroneous page count. Leaking pages.\n");
Jerome Glisse8e7e7052011-11-09 17:15:26 -0500689 __free_page(pages[i]);
690 pages[i] = NULL;
691 }
692 }
693 return;
694 }
695
696 spin_lock_irqsave(&pool->lock, irq_flags);
697 for (i = 0; i < npages; i++) {
698 if (pages[i]) {
699 if (page_count(pages[i]) != 1)
Joe Perches25d04792012-03-16 21:43:50 -0700700 pr_err("Erroneous page count. Leaking pages.\n");
Jerome Glisse8e7e7052011-11-09 17:15:26 -0500701 list_add_tail(&pages[i]->lru, &pool->list);
702 pages[i] = NULL;
703 pool->npages++;
704 }
705 }
706 /* Check that we don't go over the pool limit */
707 npages = 0;
708 if (pool->npages > _manager->options.max_size) {
709 npages = pool->npages - _manager->options.max_size;
710 /* free at least NUM_PAGES_TO_ALLOC number of pages
711 * to reduce calls to set_memory_wb */
712 if (npages < NUM_PAGES_TO_ALLOC)
713 npages = NUM_PAGES_TO_ALLOC;
714 }
715 spin_unlock_irqrestore(&pool->lock, irq_flags);
716 if (npages)
Tetsuo Handa881fdaa2014-11-13 22:43:23 +0900717 ttm_page_pool_free(pool, npages, false);
Jerome Glisse8e7e7052011-11-09 17:15:26 -0500718}
719
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000720/*
721 * On success pages list will hold count number of correctly
722 * cached pages.
723 */
Jerome Glisse8e7e7052011-11-09 17:15:26 -0500724static int ttm_get_pages(struct page **pages, unsigned npages, int flags,
725 enum ttm_caching_state cstate)
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000726{
727 struct ttm_page_pool *pool = ttm_get_pool(flags, cstate);
Jerome Glisse822c4d92011-11-10 18:24:09 -0500728 struct list_head plist;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000729 struct page *p = NULL;
Daniel J Blueman0e57a3c2010-09-22 17:45:45 +0100730 gfp_t gfp_flags = GFP_USER;
Jerome Glisse822c4d92011-11-10 18:24:09 -0500731 unsigned count;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000732 int r;
733
734 /* set zero flag for page allocation if required */
735 if (flags & TTM_PAGE_FLAG_ZERO_ALLOC)
736 gfp_flags |= __GFP_ZERO;
737
738 /* No pool for cached pages */
739 if (pool == NULL) {
740 if (flags & TTM_PAGE_FLAG_DMA32)
741 gfp_flags |= GFP_DMA32;
742 else
Thomas Hellstrome8613c02010-05-26 16:21:03 +0200743 gfp_flags |= GFP_HIGHUSER;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000744
Jerome Glisse822c4d92011-11-10 18:24:09 -0500745 for (r = 0; r < npages; ++r) {
Dave Airlied87dfdb2011-04-13 09:15:09 +1000746 p = alloc_page(gfp_flags);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000747 if (!p) {
748
Joe Perches25d04792012-03-16 21:43:50 -0700749 pr_err("Unable to allocate page\n");
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000750 return -ENOMEM;
751 }
Dave Airlied87dfdb2011-04-13 09:15:09 +1000752
Jerome Glisse822c4d92011-11-10 18:24:09 -0500753 pages[r] = p;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000754 }
755 return 0;
756 }
757
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000758 /* combine zero flag to pool flags */
759 gfp_flags |= pool->gfp_flags;
760
761 /* First we take pages from the pool */
Jerome Glisse822c4d92011-11-10 18:24:09 -0500762 INIT_LIST_HEAD(&plist);
763 npages = ttm_page_pool_get_pages(pool, &plist, flags, cstate, npages);
764 count = 0;
765 list_for_each_entry(p, &plist, lru) {
766 pages[count++] = p;
767 }
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000768
769 /* clear the pages coming from the pool if requested */
770 if (flags & TTM_PAGE_FLAG_ZERO_ALLOC) {
Jerome Glisse822c4d92011-11-10 18:24:09 -0500771 list_for_each_entry(p, &plist, lru) {
Zhao Yakuiac207ed2012-11-13 18:31:55 +0000772 if (PageHighMem(p))
773 clear_highpage(p);
774 else
775 clear_page(page_address(p));
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000776 }
777 }
778
779 /* If pool didn't have enough pages allocate new one. */
Jerome Glisse822c4d92011-11-10 18:24:09 -0500780 if (npages > 0) {
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000781 /* ttm_alloc_new_pages doesn't reference pool so we can run
782 * multiple requests in parallel.
783 **/
Jerome Glisse822c4d92011-11-10 18:24:09 -0500784 INIT_LIST_HEAD(&plist);
785 r = ttm_alloc_new_pages(&plist, gfp_flags, flags, cstate, npages);
786 list_for_each_entry(p, &plist, lru) {
787 pages[count++] = p;
788 }
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000789 if (r) {
790 /* If there is any pages in the list put them back to
791 * the pool. */
Joe Perches25d04792012-03-16 21:43:50 -0700792 pr_err("Failed to allocate extra pages for large request\n");
Jerome Glisse8e7e7052011-11-09 17:15:26 -0500793 ttm_put_pages(pages, count, flags, cstate);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000794 return r;
795 }
796 }
797
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000798 return 0;
799}
800
Dave Airlie3b9c2142014-07-22 12:55:39 +1000801static void ttm_page_pool_init_locked(struct ttm_page_pool *pool, gfp_t flags,
Pauli Nieminen07458662010-04-01 12:44:58 +0000802 char *name)
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000803{
804 spin_lock_init(&pool->lock);
805 pool->fill_lock = false;
806 INIT_LIST_HEAD(&pool->list);
Pauli Nieminen07458662010-04-01 12:44:58 +0000807 pool->npages = pool->nfrees = 0;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000808 pool->gfp_flags = flags;
Pauli Nieminen07458662010-04-01 12:44:58 +0000809 pool->name = name;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000810}
811
Pauli Nieminenc96af792010-04-01 12:45:03 +0000812int ttm_page_alloc_init(struct ttm_mem_global *glob, unsigned max_pages)
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000813{
Pauli Nieminenc96af792010-04-01 12:45:03 +0000814 int ret;
Francisco Jerez5870a4d2010-07-04 04:03:07 +0200815
816 WARN_ON(_manager);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000817
Joe Perches25d04792012-03-16 21:43:50 -0700818 pr_info("Initializing pool allocator\n");
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000819
Francisco Jerez5870a4d2010-07-04 04:03:07 +0200820 _manager = kzalloc(sizeof(*_manager), GFP_KERNEL);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000821
Francisco Jerez5870a4d2010-07-04 04:03:07 +0200822 ttm_page_pool_init_locked(&_manager->wc_pool, GFP_HIGHUSER, "wc");
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000823
Francisco Jerez5870a4d2010-07-04 04:03:07 +0200824 ttm_page_pool_init_locked(&_manager->uc_pool, GFP_HIGHUSER, "uc");
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000825
Francisco Jerez5870a4d2010-07-04 04:03:07 +0200826 ttm_page_pool_init_locked(&_manager->wc_pool_dma32,
827 GFP_USER | GFP_DMA32, "wc dma");
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000828
Francisco Jerez5870a4d2010-07-04 04:03:07 +0200829 ttm_page_pool_init_locked(&_manager->uc_pool_dma32,
830 GFP_USER | GFP_DMA32, "uc dma");
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000831
Francisco Jerez5870a4d2010-07-04 04:03:07 +0200832 _manager->options.max_size = max_pages;
833 _manager->options.small = SMALL_ALLOCATION;
834 _manager->options.alloc_size = NUM_PAGES_TO_ALLOC;
835
836 ret = kobject_init_and_add(&_manager->kobj, &ttm_pool_kobj_type,
837 &glob->kobj, "pool");
Pauli Nieminenc96af792010-04-01 12:45:03 +0000838 if (unlikely(ret != 0)) {
Francisco Jerez5870a4d2010-07-04 04:03:07 +0200839 kobject_put(&_manager->kobj);
840 _manager = NULL;
Pauli Nieminenc96af792010-04-01 12:45:03 +0000841 return ret;
842 }
843
Francisco Jerez5870a4d2010-07-04 04:03:07 +0200844 ttm_pool_mm_shrink_init(_manager);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000845
846 return 0;
847}
848
Daniel J Blueman0e57a3c2010-09-22 17:45:45 +0100849void ttm_page_alloc_fini(void)
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000850{
851 int i;
852
Joe Perches25d04792012-03-16 21:43:50 -0700853 pr_info("Finalizing pool allocator\n");
Francisco Jerez5870a4d2010-07-04 04:03:07 +0200854 ttm_pool_mm_shrink_fini(_manager);
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000855
Tetsuo Handa881fdaa2014-11-13 22:43:23 +0900856 /* OK to use static buffer since global mutex is no longer used. */
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000857 for (i = 0; i < NUM_POOLS; ++i)
Tetsuo Handa881fdaa2014-11-13 22:43:23 +0900858 ttm_page_pool_free(&_manager->pools[i], FREE_ALL_PAGES, true);
Pauli Nieminenc96af792010-04-01 12:45:03 +0000859
Francisco Jerez5870a4d2010-07-04 04:03:07 +0200860 kobject_put(&_manager->kobj);
861 _manager = NULL;
Pauli Nieminen1403b1a2010-04-01 12:44:57 +0000862}
Pauli Nieminen07458662010-04-01 12:44:58 +0000863
Jerome Glisseb1e5f172011-11-02 23:59:28 -0400864int ttm_pool_populate(struct ttm_tt *ttm)
865{
866 struct ttm_mem_global *mem_glob = ttm->glob->mem_glob;
867 unsigned i;
868 int ret;
869
870 if (ttm->state != tt_unpopulated)
871 return 0;
872
873 for (i = 0; i < ttm->num_pages; ++i) {
Jerome Glisse8e7e7052011-11-09 17:15:26 -0500874 ret = ttm_get_pages(&ttm->pages[i], 1,
875 ttm->page_flags,
876 ttm->caching_state);
Jerome Glisseb1e5f172011-11-02 23:59:28 -0400877 if (ret != 0) {
878 ttm_pool_unpopulate(ttm);
879 return -ENOMEM;
880 }
881
882 ret = ttm_mem_global_alloc_page(mem_glob, ttm->pages[i],
883 false, false);
884 if (unlikely(ret != 0)) {
885 ttm_pool_unpopulate(ttm);
886 return -ENOMEM;
887 }
888 }
889
890 if (unlikely(ttm->page_flags & TTM_PAGE_FLAG_SWAPPED)) {
891 ret = ttm_tt_swapin(ttm);
892 if (unlikely(ret != 0)) {
893 ttm_pool_unpopulate(ttm);
894 return ret;
895 }
896 }
897
898 ttm->state = tt_unbound;
899 return 0;
900}
901EXPORT_SYMBOL(ttm_pool_populate);
902
903void ttm_pool_unpopulate(struct ttm_tt *ttm)
904{
905 unsigned i;
906
907 for (i = 0; i < ttm->num_pages; ++i) {
908 if (ttm->pages[i]) {
909 ttm_mem_global_free_page(ttm->glob->mem_glob,
910 ttm->pages[i]);
911 ttm_put_pages(&ttm->pages[i], 1,
912 ttm->page_flags,
Jerome Glisse8e7e7052011-11-09 17:15:26 -0500913 ttm->caching_state);
Jerome Glisseb1e5f172011-11-02 23:59:28 -0400914 }
915 }
916 ttm->state = tt_unpopulated;
917}
918EXPORT_SYMBOL(ttm_pool_unpopulate);
919
Pauli Nieminen07458662010-04-01 12:44:58 +0000920int ttm_page_alloc_debugfs(struct seq_file *m, void *data)
921{
922 struct ttm_page_pool *p;
923 unsigned i;
924 char *h[] = {"pool", "refills", "pages freed", "size"};
Francisco Jerez5870a4d2010-07-04 04:03:07 +0200925 if (!_manager) {
Pauli Nieminen07458662010-04-01 12:44:58 +0000926 seq_printf(m, "No pool allocator running.\n");
927 return 0;
928 }
929 seq_printf(m, "%6s %12s %13s %8s\n",
930 h[0], h[1], h[2], h[3]);
931 for (i = 0; i < NUM_POOLS; ++i) {
Francisco Jerez5870a4d2010-07-04 04:03:07 +0200932 p = &_manager->pools[i];
Pauli Nieminen07458662010-04-01 12:44:58 +0000933
934 seq_printf(m, "%6s %12ld %13ld %8d\n",
935 p->name, p->nrefills,
936 p->nfrees, p->npages);
937 }
938 return 0;
939}
940EXPORT_SYMBOL(ttm_page_alloc_debugfs);