• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * DMA BUF page pool system
4  *
5  * Copyright (C) 2020 Linaro Ltd.
6  *
7  * Based on the ION page pool code
8  * Copyright (C) 2011 Google, Inc.
9  */
10 
11 #include <linux/freezer.h>
12 #include <linux/list.h>
13 #include <linux/slab.h>
14 #include <linux/spinlock.h>
15 #include <linux/swap.h>
16 #include <linux/sched/signal.h>
17 #include "page_pool.h"
18 
19 struct dmabuf_page_pool_with_spinlock {
20 	struct dmabuf_page_pool pool;
21 	struct spinlock spinlock;
22 };
23 
24 static LIST_HEAD(pool_list);
25 static DEFINE_MUTEX(pool_list_lock);
26 
27 static inline
dmabuf_page_pool_alloc_pages(struct dmabuf_page_pool * pool)28 struct page *dmabuf_page_pool_alloc_pages(struct dmabuf_page_pool *pool)
29 {
30 	if (fatal_signal_pending(current))
31 		return NULL;
32 	return alloc_pages(pool->gfp_mask, pool->order);
33 }
34 
dmabuf_page_pool_free_pages(struct dmabuf_page_pool * pool,struct page * page)35 static inline void dmabuf_page_pool_free_pages(struct dmabuf_page_pool *pool,
36 					       struct page *page)
37 {
38 	__free_pages(page, pool->order);
39 }
40 
dmabuf_page_pool_add(struct dmabuf_page_pool * pool,struct page * page)41 static void dmabuf_page_pool_add(struct dmabuf_page_pool *pool, struct page *page)
42 {
43 	int index;
44 	struct dmabuf_page_pool_with_spinlock *container_pool =
45 		container_of(pool, struct dmabuf_page_pool_with_spinlock, pool);
46 
47 	if (PageHighMem(page))
48 		index = POOL_HIGHPAGE;
49 	else
50 		index = POOL_LOWPAGE;
51 
52 	spin_lock(&container_pool->spinlock);
53 	list_add_tail(&page->lru, &pool->items[index]);
54 	pool->count[index]++;
55 	spin_unlock(&container_pool->spinlock);
56 	mod_node_page_state(page_pgdat(page), NR_KERNEL_MISC_RECLAIMABLE,
57 			    1 << pool->order);
58 }
59 
dmabuf_page_pool_remove(struct dmabuf_page_pool * pool,int index)60 static struct page *dmabuf_page_pool_remove(struct dmabuf_page_pool *pool, int index)
61 {
62 	struct page *page;
63 	struct dmabuf_page_pool_with_spinlock *container_pool =
64 		container_of(pool, struct dmabuf_page_pool_with_spinlock, pool);
65 
66 	spin_lock(&container_pool->spinlock);
67 	page = list_first_entry_or_null(&pool->items[index], struct page, lru);
68 	if (page) {
69 		pool->count[index]--;
70 		list_del(&page->lru);
71 		spin_unlock(&container_pool->spinlock);
72 		mod_node_page_state(page_pgdat(page), NR_KERNEL_MISC_RECLAIMABLE,
73 				    -(1 << pool->order));
74 		goto out;
75 	}
76 	spin_unlock(&container_pool->spinlock);
77 
78 out:
79 	return page;
80 }
81 
dmabuf_page_pool_fetch(struct dmabuf_page_pool * pool)82 static struct page *dmabuf_page_pool_fetch(struct dmabuf_page_pool *pool)
83 {
84 	struct page *page = NULL;
85 
86 	page = dmabuf_page_pool_remove(pool, POOL_HIGHPAGE);
87 	if (!page)
88 		page = dmabuf_page_pool_remove(pool, POOL_LOWPAGE);
89 
90 	return page;
91 }
92 
dmabuf_page_pool_alloc(struct dmabuf_page_pool * pool)93 struct page *dmabuf_page_pool_alloc(struct dmabuf_page_pool *pool)
94 {
95 	struct page *page = NULL;
96 
97 	if (WARN_ON(!pool))
98 		return NULL;
99 
100 	page = dmabuf_page_pool_fetch(pool);
101 
102 	if (!page)
103 		page = dmabuf_page_pool_alloc_pages(pool);
104 	return page;
105 }
106 EXPORT_SYMBOL_GPL(dmabuf_page_pool_alloc);
107 
dmabuf_page_pool_free(struct dmabuf_page_pool * pool,struct page * page)108 void dmabuf_page_pool_free(struct dmabuf_page_pool *pool, struct page *page)
109 {
110 	if (WARN_ON(pool->order != compound_order(page)))
111 		return;
112 
113 	dmabuf_page_pool_add(pool, page);
114 }
115 EXPORT_SYMBOL_GPL(dmabuf_page_pool_free);
116 
dmabuf_page_pool_total(struct dmabuf_page_pool * pool,bool high)117 static int dmabuf_page_pool_total(struct dmabuf_page_pool *pool, bool high)
118 {
119 	int count = pool->count[POOL_LOWPAGE];
120 
121 	if (high)
122 		count += pool->count[POOL_HIGHPAGE];
123 
124 	return count << pool->order;
125 }
126 
dmabuf_page_pool_create(gfp_t gfp_mask,unsigned int order)127 struct dmabuf_page_pool *dmabuf_page_pool_create(gfp_t gfp_mask, unsigned int order)
128 {
129 	struct dmabuf_page_pool *pool;
130 	struct dmabuf_page_pool_with_spinlock *container_pool =
131 		kmalloc(sizeof(*container_pool), GFP_KERNEL);
132 	int i;
133 
134 	if (!container_pool)
135 		return NULL;
136 
137 	spin_lock_init(&container_pool->spinlock);
138 	pool = &container_pool->pool;
139 
140 	for (i = 0; i < POOL_TYPE_SIZE; i++) {
141 		pool->count[i] = 0;
142 		INIT_LIST_HEAD(&pool->items[i]);
143 	}
144 	pool->gfp_mask = gfp_mask | __GFP_COMP;
145 	pool->order = order;
146 	mutex_init(&pool->mutex); /* No longer used! */
147 
148 	mutex_lock(&pool_list_lock);
149 	list_add(&pool->list, &pool_list);
150 	mutex_unlock(&pool_list_lock);
151 
152 	return pool;
153 }
154 EXPORT_SYMBOL_GPL(dmabuf_page_pool_create);
155 
dmabuf_page_pool_destroy(struct dmabuf_page_pool * pool)156 void dmabuf_page_pool_destroy(struct dmabuf_page_pool *pool)
157 {
158 	struct page *page;
159 	struct dmabuf_page_pool_with_spinlock *container_pool;
160 	int i;
161 
162 	/* Remove us from the pool list */
163 	mutex_lock(&pool_list_lock);
164 	list_del(&pool->list);
165 	mutex_unlock(&pool_list_lock);
166 
167 	/* Free any remaining pages in the pool */
168 	for (i = 0; i < POOL_TYPE_SIZE; i++) {
169 		while ((page = dmabuf_page_pool_remove(pool, i)))
170 			dmabuf_page_pool_free_pages(pool, page);
171 	}
172 
173 	container_pool = container_of(pool, struct dmabuf_page_pool_with_spinlock, pool);
174 	kfree(container_pool);
175 }
176 EXPORT_SYMBOL_GPL(dmabuf_page_pool_destroy);
177 
dmabuf_page_pool_do_shrink(struct dmabuf_page_pool * pool,gfp_t gfp_mask,int nr_to_scan)178 static int dmabuf_page_pool_do_shrink(struct dmabuf_page_pool *pool, gfp_t gfp_mask,
179 				      int nr_to_scan)
180 {
181 	int freed = 0;
182 	bool high;
183 
184 	if (current_is_kswapd())
185 		high = true;
186 	else
187 		high = !!(gfp_mask & __GFP_HIGHMEM);
188 
189 	if (nr_to_scan == 0)
190 		return dmabuf_page_pool_total(pool, high);
191 
192 	while (freed < nr_to_scan) {
193 		struct page *page;
194 
195 		/* Try to free low pages first */
196 		page = dmabuf_page_pool_remove(pool, POOL_LOWPAGE);
197 		if (!page)
198 			page = dmabuf_page_pool_remove(pool, POOL_HIGHPAGE);
199 
200 		if (!page)
201 			break;
202 
203 		dmabuf_page_pool_free_pages(pool, page);
204 		freed += (1 << pool->order);
205 	}
206 
207 	return freed;
208 }
209 
dmabuf_page_pool_shrink(gfp_t gfp_mask,int nr_to_scan)210 static int dmabuf_page_pool_shrink(gfp_t gfp_mask, int nr_to_scan)
211 {
212 	struct dmabuf_page_pool *pool;
213 	int nr_total = 0;
214 	int nr_freed;
215 	int only_scan = 0;
216 
217 	if (!nr_to_scan)
218 		only_scan = 1;
219 
220 	mutex_lock(&pool_list_lock);
221 	list_for_each_entry(pool, &pool_list, list) {
222 		if (only_scan) {
223 			nr_total += dmabuf_page_pool_do_shrink(pool,
224 							       gfp_mask,
225 							       nr_to_scan);
226 		} else {
227 			nr_freed = dmabuf_page_pool_do_shrink(pool,
228 							      gfp_mask,
229 							      nr_to_scan);
230 			nr_to_scan -= nr_freed;
231 			nr_total += nr_freed;
232 			if (nr_to_scan <= 0)
233 				break;
234 		}
235 	}
236 	mutex_unlock(&pool_list_lock);
237 
238 	return nr_total;
239 }
240 
dmabuf_page_pool_shrink_count(struct shrinker * shrinker,struct shrink_control * sc)241 static unsigned long dmabuf_page_pool_shrink_count(struct shrinker *shrinker,
242 						   struct shrink_control *sc)
243 {
244 	return dmabuf_page_pool_shrink(sc->gfp_mask, 0);
245 }
246 
dmabuf_page_pool_shrink_scan(struct shrinker * shrinker,struct shrink_control * sc)247 static unsigned long dmabuf_page_pool_shrink_scan(struct shrinker *shrinker,
248 						  struct shrink_control *sc)
249 {
250 	if (sc->nr_to_scan == 0)
251 		return 0;
252 	return dmabuf_page_pool_shrink(sc->gfp_mask, sc->nr_to_scan);
253 }
254 
255 struct shrinker pool_shrinker = {
256 	.count_objects = dmabuf_page_pool_shrink_count,
257 	.scan_objects = dmabuf_page_pool_shrink_scan,
258 	.seeks = DEFAULT_SEEKS,
259 	.batch = 0,
260 };
261 
dmabuf_page_pool_init_shrinker(void)262 static int dmabuf_page_pool_init_shrinker(void)
263 {
264 	return register_shrinker(&pool_shrinker);
265 }
266 module_init(dmabuf_page_pool_init_shrinker);
267 MODULE_LICENSE("GPL v2");
268