xref: /openbmc/linux/mm/dmapool.c (revision 67a540c60c39d052d9599aa9909023152200a707)
1b2139ce0SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
26182a094SMatthew Wilcox /*
36182a094SMatthew Wilcox  * DMA Pool allocator
46182a094SMatthew Wilcox  *
56182a094SMatthew Wilcox  * Copyright 2001 David Brownell
66182a094SMatthew Wilcox  * Copyright 2007 Intel Corporation
76182a094SMatthew Wilcox  *   Author: Matthew Wilcox <willy@linux.intel.com>
86182a094SMatthew Wilcox  *
96182a094SMatthew Wilcox  * This allocator returns small blocks of a given size which are DMA-able by
106182a094SMatthew Wilcox  * the given device.  It uses the dma_alloc_coherent page allocator to get
116182a094SMatthew Wilcox  * new pages, then splits them up into blocks of the required size.
126182a094SMatthew Wilcox  * Many older drivers still have their own code to do this.
136182a094SMatthew Wilcox  *
146182a094SMatthew Wilcox  * The current design of this allocator is fairly simple.  The pool is
156182a094SMatthew Wilcox  * represented by the 'struct dma_pool' which keeps a doubly-linked list of
166182a094SMatthew Wilcox  * allocated pages.  Each page in the page_list is split into blocks of at
17a35a3455SMatthew Wilcox  * least 'size' bytes.  Free blocks are tracked in an unsorted singly-linked
18a35a3455SMatthew Wilcox  * list of free blocks within the page.  Used blocks aren't tracked, but we
19a35a3455SMatthew Wilcox  * keep a count of how many are currently allocated from each page.
206182a094SMatthew Wilcox  */
21141e9d4bSMatthew Wilcox 
22141e9d4bSMatthew Wilcox #include <linux/device.h>
23141e9d4bSMatthew Wilcox #include <linux/dma-mapping.h>
24141e9d4bSMatthew Wilcox #include <linux/dmapool.h>
256182a094SMatthew Wilcox #include <linux/kernel.h>
266182a094SMatthew Wilcox #include <linux/list.h>
27b95f1b31SPaul Gortmaker #include <linux/export.h>
286182a094SMatthew Wilcox #include <linux/mutex.h>
29141e9d4bSMatthew Wilcox #include <linux/poison.h>
30141e9d4bSMatthew Wilcox #include <linux/sched.h>
310f2f89b6SDaniel Vetter #include <linux/sched/mm.h>
326182a094SMatthew Wilcox #include <linux/slab.h>
337c77509cSPaul Gortmaker #include <linux/stat.h>
346182a094SMatthew Wilcox #include <linux/spinlock.h>
356182a094SMatthew Wilcox #include <linux/string.h>
366182a094SMatthew Wilcox #include <linux/types.h>
376182a094SMatthew Wilcox #include <linux/wait.h>
38141e9d4bSMatthew Wilcox 
39b5ee5befSAndi Kleen #if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_SLUB_DEBUG_ON)
40b5ee5befSAndi Kleen #define DMAPOOL_DEBUG 1
41b5ee5befSAndi Kleen #endif
42b5ee5befSAndi Kleen 
43141e9d4bSMatthew Wilcox struct dma_pool {		/* the pool */
44141e9d4bSMatthew Wilcox 	struct list_head page_list;
45141e9d4bSMatthew Wilcox 	spinlock_t lock;
46141e9d4bSMatthew Wilcox 	size_t size;
47141e9d4bSMatthew Wilcox 	struct device *dev;
48141e9d4bSMatthew Wilcox 	size_t allocation;
49e34f44b3SMatthew Wilcox 	size_t boundary;
50141e9d4bSMatthew Wilcox 	char name[32];
51141e9d4bSMatthew Wilcox 	struct list_head pools;
52141e9d4bSMatthew Wilcox };
53141e9d4bSMatthew Wilcox 
54141e9d4bSMatthew Wilcox struct dma_page {		/* cacheable header for 'allocation' bytes */
55141e9d4bSMatthew Wilcox 	struct list_head page_list;
56141e9d4bSMatthew Wilcox 	void *vaddr;
57141e9d4bSMatthew Wilcox 	dma_addr_t dma;
58a35a3455SMatthew Wilcox 	unsigned int in_use;
59a35a3455SMatthew Wilcox 	unsigned int offset;
60141e9d4bSMatthew Wilcox };
61141e9d4bSMatthew Wilcox 
62141e9d4bSMatthew Wilcox static DEFINE_MUTEX(pools_lock);
6301c2965fSSebastian Andrzej Siewior static DEFINE_MUTEX(pools_reg_lock);
64141e9d4bSMatthew Wilcox 
65e8df2c70SYueHaibing static ssize_t pools_show(struct device *dev, struct device_attribute *attr, char *buf)
66141e9d4bSMatthew Wilcox {
67141e9d4bSMatthew Wilcox 	unsigned temp;
68141e9d4bSMatthew Wilcox 	unsigned size;
69141e9d4bSMatthew Wilcox 	char *next;
70141e9d4bSMatthew Wilcox 	struct dma_page *page;
71141e9d4bSMatthew Wilcox 	struct dma_pool *pool;
72141e9d4bSMatthew Wilcox 
73141e9d4bSMatthew Wilcox 	next = buf;
74141e9d4bSMatthew Wilcox 	size = PAGE_SIZE;
75141e9d4bSMatthew Wilcox 
76141e9d4bSMatthew Wilcox 	temp = scnprintf(next, size, "poolinfo - 0.1\n");
77141e9d4bSMatthew Wilcox 	size -= temp;
78141e9d4bSMatthew Wilcox 	next += temp;
79141e9d4bSMatthew Wilcox 
80141e9d4bSMatthew Wilcox 	mutex_lock(&pools_lock);
81141e9d4bSMatthew Wilcox 	list_for_each_entry(pool, &dev->dma_pools, pools) {
82141e9d4bSMatthew Wilcox 		unsigned pages = 0;
83141e9d4bSMatthew Wilcox 		unsigned blocks = 0;
84141e9d4bSMatthew Wilcox 
85c4956823SThomas Gleixner 		spin_lock_irq(&pool->lock);
86141e9d4bSMatthew Wilcox 		list_for_each_entry(page, &pool->page_list, page_list) {
87141e9d4bSMatthew Wilcox 			pages++;
88141e9d4bSMatthew Wilcox 			blocks += page->in_use;
89141e9d4bSMatthew Wilcox 		}
90c4956823SThomas Gleixner 		spin_unlock_irq(&pool->lock);
91141e9d4bSMatthew Wilcox 
92141e9d4bSMatthew Wilcox 		/* per-pool info, no real statistics yet */
935b5e0928SAlexey Dobriyan 		temp = scnprintf(next, size, "%-16s %4u %4zu %4zu %2u\n",
94a35a3455SMatthew Wilcox 				 pool->name, blocks,
95a35a3455SMatthew Wilcox 				 pages * (pool->allocation / pool->size),
96141e9d4bSMatthew Wilcox 				 pool->size, pages);
97141e9d4bSMatthew Wilcox 		size -= temp;
98141e9d4bSMatthew Wilcox 		next += temp;
99141e9d4bSMatthew Wilcox 	}
100141e9d4bSMatthew Wilcox 	mutex_unlock(&pools_lock);
101141e9d4bSMatthew Wilcox 
102141e9d4bSMatthew Wilcox 	return PAGE_SIZE - size;
103141e9d4bSMatthew Wilcox }
104e87aa773SMatthew Wilcox 
105e8df2c70SYueHaibing static DEVICE_ATTR_RO(pools);
106141e9d4bSMatthew Wilcox 
107141e9d4bSMatthew Wilcox /**
108141e9d4bSMatthew Wilcox  * dma_pool_create - Creates a pool of consistent memory blocks, for dma.
109141e9d4bSMatthew Wilcox  * @name: name of pool, for diagnostics
110141e9d4bSMatthew Wilcox  * @dev: device that will be doing the DMA
111141e9d4bSMatthew Wilcox  * @size: size of the blocks in this pool.
112141e9d4bSMatthew Wilcox  * @align: alignment requirement for blocks; must be a power of two
113e34f44b3SMatthew Wilcox  * @boundary: returned blocks won't cross this power of two boundary
114a862f68aSMike Rapoport  * Context: not in_interrupt()
115141e9d4bSMatthew Wilcox  *
116a862f68aSMike Rapoport  * Given one of these pools, dma_pool_alloc()
117141e9d4bSMatthew Wilcox  * may be used to allocate memory.  Such memory will all have "consistent"
118141e9d4bSMatthew Wilcox  * DMA mappings, accessible by the device and its driver without using
119141e9d4bSMatthew Wilcox  * cache flushing primitives.  The actual size of blocks allocated may be
120141e9d4bSMatthew Wilcox  * larger than requested because of alignment.
121141e9d4bSMatthew Wilcox  *
122e34f44b3SMatthew Wilcox  * If @boundary is nonzero, objects returned from dma_pool_alloc() won't
123141e9d4bSMatthew Wilcox  * cross that size boundary.  This is useful for devices which have
124141e9d4bSMatthew Wilcox  * addressing restrictions on individual DMA transfers, such as not crossing
125141e9d4bSMatthew Wilcox  * boundaries of 4KBytes.
126a862f68aSMike Rapoport  *
127a862f68aSMike Rapoport  * Return: a dma allocation pool with the requested characteristics, or
128a862f68aSMike Rapoport  * %NULL if one can't be created.
129141e9d4bSMatthew Wilcox  */
130e87aa773SMatthew Wilcox struct dma_pool *dma_pool_create(const char *name, struct device *dev,
131e34f44b3SMatthew Wilcox 				 size_t size, size_t align, size_t boundary)
132141e9d4bSMatthew Wilcox {
133141e9d4bSMatthew Wilcox 	struct dma_pool *retval;
134e34f44b3SMatthew Wilcox 	size_t allocation;
13501c2965fSSebastian Andrzej Siewior 	bool empty = false;
136141e9d4bSMatthew Wilcox 
137*67a540c6STony Battersby 	if (!dev)
138*67a540c6STony Battersby 		return NULL;
139*67a540c6STony Battersby 
140baa2ef83SPaul McQuade 	if (align == 0)
141141e9d4bSMatthew Wilcox 		align = 1;
142baa2ef83SPaul McQuade 	else if (align & (align - 1))
143399154beSMatthew Wilcox 		return NULL;
144399154beSMatthew Wilcox 
145baa2ef83SPaul McQuade 	if (size == 0)
146141e9d4bSMatthew Wilcox 		return NULL;
147baa2ef83SPaul McQuade 	else if (size < 4)
148a35a3455SMatthew Wilcox 		size = 4;
149399154beSMatthew Wilcox 
150399154beSMatthew Wilcox 	size = ALIGN(size, align);
151e34f44b3SMatthew Wilcox 	allocation = max_t(size_t, size, PAGE_SIZE);
152141e9d4bSMatthew Wilcox 
153baa2ef83SPaul McQuade 	if (!boundary)
154e34f44b3SMatthew Wilcox 		boundary = allocation;
155baa2ef83SPaul McQuade 	else if ((boundary < size) || (boundary & (boundary - 1)))
156e34f44b3SMatthew Wilcox 		return NULL;
157e34f44b3SMatthew Wilcox 
158cc6266f0SChristian König 	retval = kmalloc(sizeof(*retval), GFP_KERNEL);
159e34f44b3SMatthew Wilcox 	if (!retval)
160141e9d4bSMatthew Wilcox 		return retval;
161141e9d4bSMatthew Wilcox 
162943f229eSZhiyuan Dai 	strscpy(retval->name, name, sizeof(retval->name));
163141e9d4bSMatthew Wilcox 
164141e9d4bSMatthew Wilcox 	retval->dev = dev;
165141e9d4bSMatthew Wilcox 
166141e9d4bSMatthew Wilcox 	INIT_LIST_HEAD(&retval->page_list);
167141e9d4bSMatthew Wilcox 	spin_lock_init(&retval->lock);
168141e9d4bSMatthew Wilcox 	retval->size = size;
169e34f44b3SMatthew Wilcox 	retval->boundary = boundary;
170141e9d4bSMatthew Wilcox 	retval->allocation = allocation;
171141e9d4bSMatthew Wilcox 
172cc6b664aSDaeseok Youn 	INIT_LIST_HEAD(&retval->pools);
173141e9d4bSMatthew Wilcox 
17401c2965fSSebastian Andrzej Siewior 	/*
17501c2965fSSebastian Andrzej Siewior 	 * pools_lock ensures that the ->dma_pools list does not get corrupted.
17601c2965fSSebastian Andrzej Siewior 	 * pools_reg_lock ensures that there is not a race between
17701c2965fSSebastian Andrzej Siewior 	 * dma_pool_create() and dma_pool_destroy() or within dma_pool_create()
17801c2965fSSebastian Andrzej Siewior 	 * when the first invocation of dma_pool_create() failed on
17901c2965fSSebastian Andrzej Siewior 	 * device_create_file() and the second assumes that it has been done (I
18001c2965fSSebastian Andrzej Siewior 	 * know it is a short window).
18101c2965fSSebastian Andrzej Siewior 	 */
18201c2965fSSebastian Andrzej Siewior 	mutex_lock(&pools_reg_lock);
183141e9d4bSMatthew Wilcox 	mutex_lock(&pools_lock);
18401c2965fSSebastian Andrzej Siewior 	if (list_empty(&dev->dma_pools))
18501c2965fSSebastian Andrzej Siewior 		empty = true;
186cc6b664aSDaeseok Youn 	list_add(&retval->pools, &dev->dma_pools);
187cc6b664aSDaeseok Youn 	mutex_unlock(&pools_lock);
18801c2965fSSebastian Andrzej Siewior 	if (empty) {
18901c2965fSSebastian Andrzej Siewior 		int err;
190141e9d4bSMatthew Wilcox 
19101c2965fSSebastian Andrzej Siewior 		err = device_create_file(dev, &dev_attr_pools);
19201c2965fSSebastian Andrzej Siewior 		if (err) {
19301c2965fSSebastian Andrzej Siewior 			mutex_lock(&pools_lock);
19401c2965fSSebastian Andrzej Siewior 			list_del(&retval->pools);
19501c2965fSSebastian Andrzej Siewior 			mutex_unlock(&pools_lock);
19601c2965fSSebastian Andrzej Siewior 			mutex_unlock(&pools_reg_lock);
19701c2965fSSebastian Andrzej Siewior 			kfree(retval);
19801c2965fSSebastian Andrzej Siewior 			return NULL;
19901c2965fSSebastian Andrzej Siewior 		}
20001c2965fSSebastian Andrzej Siewior 	}
20101c2965fSSebastian Andrzej Siewior 	mutex_unlock(&pools_reg_lock);
202141e9d4bSMatthew Wilcox 	return retval;
203141e9d4bSMatthew Wilcox }
204e87aa773SMatthew Wilcox EXPORT_SYMBOL(dma_pool_create);
205141e9d4bSMatthew Wilcox 
206a35a3455SMatthew Wilcox static void pool_initialise_page(struct dma_pool *pool, struct dma_page *page)
207a35a3455SMatthew Wilcox {
208a35a3455SMatthew Wilcox 	unsigned int offset = 0;
209e34f44b3SMatthew Wilcox 	unsigned int next_boundary = pool->boundary;
210a35a3455SMatthew Wilcox 
211a35a3455SMatthew Wilcox 	do {
212a35a3455SMatthew Wilcox 		unsigned int next = offset + pool->size;
213e34f44b3SMatthew Wilcox 		if (unlikely((next + pool->size) >= next_boundary)) {
214e34f44b3SMatthew Wilcox 			next = next_boundary;
215e34f44b3SMatthew Wilcox 			next_boundary += pool->boundary;
216e34f44b3SMatthew Wilcox 		}
217a35a3455SMatthew Wilcox 		*(int *)(page->vaddr + offset) = next;
218a35a3455SMatthew Wilcox 		offset = next;
219a35a3455SMatthew Wilcox 	} while (offset < pool->allocation);
220a35a3455SMatthew Wilcox }
221a35a3455SMatthew Wilcox 
222e87aa773SMatthew Wilcox static struct dma_page *pool_alloc_page(struct dma_pool *pool, gfp_t mem_flags)
223141e9d4bSMatthew Wilcox {
224141e9d4bSMatthew Wilcox 	struct dma_page *page;
225141e9d4bSMatthew Wilcox 
226a35a3455SMatthew Wilcox 	page = kmalloc(sizeof(*page), mem_flags);
227141e9d4bSMatthew Wilcox 	if (!page)
228141e9d4bSMatthew Wilcox 		return NULL;
229a35a3455SMatthew Wilcox 	page->vaddr = dma_alloc_coherent(pool->dev, pool->allocation,
230e87aa773SMatthew Wilcox 					 &page->dma, mem_flags);
231141e9d4bSMatthew Wilcox 	if (page->vaddr) {
232b5ee5befSAndi Kleen #ifdef	DMAPOOL_DEBUG
233141e9d4bSMatthew Wilcox 		memset(page->vaddr, POOL_POISON_FREED, pool->allocation);
234141e9d4bSMatthew Wilcox #endif
235a35a3455SMatthew Wilcox 		pool_initialise_page(pool, page);
236141e9d4bSMatthew Wilcox 		page->in_use = 0;
237a35a3455SMatthew Wilcox 		page->offset = 0;
238141e9d4bSMatthew Wilcox 	} else {
239141e9d4bSMatthew Wilcox 		kfree(page);
240141e9d4bSMatthew Wilcox 		page = NULL;
241141e9d4bSMatthew Wilcox 	}
242141e9d4bSMatthew Wilcox 	return page;
243141e9d4bSMatthew Wilcox }
244141e9d4bSMatthew Wilcox 
245d9e7e37bSNicholas Krause static inline bool is_page_busy(struct dma_page *page)
246141e9d4bSMatthew Wilcox {
247a35a3455SMatthew Wilcox 	return page->in_use != 0;
248141e9d4bSMatthew Wilcox }
249141e9d4bSMatthew Wilcox 
250e87aa773SMatthew Wilcox static void pool_free_page(struct dma_pool *pool, struct dma_page *page)
251141e9d4bSMatthew Wilcox {
252141e9d4bSMatthew Wilcox 	dma_addr_t dma = page->dma;
253141e9d4bSMatthew Wilcox 
254b5ee5befSAndi Kleen #ifdef	DMAPOOL_DEBUG
255141e9d4bSMatthew Wilcox 	memset(page->vaddr, POOL_POISON_FREED, pool->allocation);
256141e9d4bSMatthew Wilcox #endif
257141e9d4bSMatthew Wilcox 	dma_free_coherent(pool->dev, pool->allocation, page->vaddr, dma);
258141e9d4bSMatthew Wilcox 	list_del(&page->page_list);
259141e9d4bSMatthew Wilcox 	kfree(page);
260141e9d4bSMatthew Wilcox }
261141e9d4bSMatthew Wilcox 
262141e9d4bSMatthew Wilcox /**
263141e9d4bSMatthew Wilcox  * dma_pool_destroy - destroys a pool of dma memory blocks.
264141e9d4bSMatthew Wilcox  * @pool: dma pool that will be destroyed
265141e9d4bSMatthew Wilcox  * Context: !in_interrupt()
266141e9d4bSMatthew Wilcox  *
267141e9d4bSMatthew Wilcox  * Caller guarantees that no more memory from the pool is in use,
268141e9d4bSMatthew Wilcox  * and that nothing will try to use the pool after this call.
269141e9d4bSMatthew Wilcox  */
270e87aa773SMatthew Wilcox void dma_pool_destroy(struct dma_pool *pool)
271141e9d4bSMatthew Wilcox {
27242286f83SAndy Shevchenko 	struct dma_page *page, *tmp;
27301c2965fSSebastian Andrzej Siewior 	bool empty = false;
27401c2965fSSebastian Andrzej Siewior 
27544d7175dSSergey Senozhatsky 	if (unlikely(!pool))
27644d7175dSSergey Senozhatsky 		return;
27744d7175dSSergey Senozhatsky 
27801c2965fSSebastian Andrzej Siewior 	mutex_lock(&pools_reg_lock);
279141e9d4bSMatthew Wilcox 	mutex_lock(&pools_lock);
280141e9d4bSMatthew Wilcox 	list_del(&pool->pools);
281*67a540c6STony Battersby 	if (list_empty(&pool->dev->dma_pools))
28201c2965fSSebastian Andrzej Siewior 		empty = true;
283141e9d4bSMatthew Wilcox 	mutex_unlock(&pools_lock);
28401c2965fSSebastian Andrzej Siewior 	if (empty)
28501c2965fSSebastian Andrzej Siewior 		device_remove_file(pool->dev, &dev_attr_pools);
28601c2965fSSebastian Andrzej Siewior 	mutex_unlock(&pools_reg_lock);
287141e9d4bSMatthew Wilcox 
28842286f83SAndy Shevchenko 	list_for_each_entry_safe(page, tmp, &pool->page_list, page_list) {
289a35a3455SMatthew Wilcox 		if (is_page_busy(page)) {
29041a04814SAndy Shevchenko 			dev_err(pool->dev, "%s %s, %p busy\n", __func__,
291141e9d4bSMatthew Wilcox 				pool->name, page->vaddr);
292141e9d4bSMatthew Wilcox 			/* leak the still-in-use consistent memory */
293141e9d4bSMatthew Wilcox 			list_del(&page->page_list);
294141e9d4bSMatthew Wilcox 			kfree(page);
295141e9d4bSMatthew Wilcox 		} else
296141e9d4bSMatthew Wilcox 			pool_free_page(pool, page);
297141e9d4bSMatthew Wilcox 	}
298141e9d4bSMatthew Wilcox 
299141e9d4bSMatthew Wilcox 	kfree(pool);
300141e9d4bSMatthew Wilcox }
301e87aa773SMatthew Wilcox EXPORT_SYMBOL(dma_pool_destroy);
302141e9d4bSMatthew Wilcox 
303141e9d4bSMatthew Wilcox /**
304141e9d4bSMatthew Wilcox  * dma_pool_alloc - get a block of consistent memory
305141e9d4bSMatthew Wilcox  * @pool: dma pool that will produce the block
306141e9d4bSMatthew Wilcox  * @mem_flags: GFP_* bitmask
307141e9d4bSMatthew Wilcox  * @handle: pointer to dma address of block
308141e9d4bSMatthew Wilcox  *
309a862f68aSMike Rapoport  * Return: the kernel virtual address of a currently unused block,
310141e9d4bSMatthew Wilcox  * and reports its dma address through the handle.
3116182a094SMatthew Wilcox  * If such a memory block can't be allocated, %NULL is returned.
312141e9d4bSMatthew Wilcox  */
313e87aa773SMatthew Wilcox void *dma_pool_alloc(struct dma_pool *pool, gfp_t mem_flags,
314e87aa773SMatthew Wilcox 		     dma_addr_t *handle)
315141e9d4bSMatthew Wilcox {
316141e9d4bSMatthew Wilcox 	unsigned long flags;
317141e9d4bSMatthew Wilcox 	struct dma_page *page;
318141e9d4bSMatthew Wilcox 	size_t offset;
319141e9d4bSMatthew Wilcox 	void *retval;
320141e9d4bSMatthew Wilcox 
3210f2f89b6SDaniel Vetter 	might_alloc(mem_flags);
322ea05c844SDima Zavin 
323141e9d4bSMatthew Wilcox 	spin_lock_irqsave(&pool->lock, flags);
324141e9d4bSMatthew Wilcox 	list_for_each_entry(page, &pool->page_list, page_list) {
325a35a3455SMatthew Wilcox 		if (page->offset < pool->allocation)
326141e9d4bSMatthew Wilcox 			goto ready;
327141e9d4bSMatthew Wilcox 	}
328141e9d4bSMatthew Wilcox 
329387870f2SMarek Szyprowski 	/* pool_alloc_page() might sleep, so temporarily drop &pool->lock */
330141e9d4bSMatthew Wilcox 	spin_unlock_irqrestore(&pool->lock, flags);
331141e9d4bSMatthew Wilcox 
332fa23f56dSSean O. Stalley 	page = pool_alloc_page(pool, mem_flags & (~__GFP_ZERO));
333387870f2SMarek Szyprowski 	if (!page)
334387870f2SMarek Szyprowski 		return NULL;
335141e9d4bSMatthew Wilcox 
3362cae367eSMatthew Wilcox 	spin_lock_irqsave(&pool->lock, flags);
337141e9d4bSMatthew Wilcox 
338387870f2SMarek Szyprowski 	list_add(&page->page_list, &pool->page_list);
339141e9d4bSMatthew Wilcox  ready:
340141e9d4bSMatthew Wilcox 	page->in_use++;
341a35a3455SMatthew Wilcox 	offset = page->offset;
342a35a3455SMatthew Wilcox 	page->offset = *(int *)(page->vaddr + offset);
343141e9d4bSMatthew Wilcox 	retval = offset + page->vaddr;
344141e9d4bSMatthew Wilcox 	*handle = offset + page->dma;
345b5ee5befSAndi Kleen #ifdef	DMAPOOL_DEBUG
3465de55b26SMatthieu CASTET 	{
3475de55b26SMatthieu CASTET 		int i;
3485de55b26SMatthieu CASTET 		u8 *data = retval;
3495de55b26SMatthieu CASTET 		/* page->offset is stored in first 4 bytes */
3505de55b26SMatthieu CASTET 		for (i = sizeof(page->offset); i < pool->size; i++) {
3515de55b26SMatthieu CASTET 			if (data[i] == POOL_POISON_FREED)
3525de55b26SMatthieu CASTET 				continue;
35341a04814SAndy Shevchenko 			dev_err(pool->dev, "%s %s, %p (corrupted)\n",
35441a04814SAndy Shevchenko 				__func__, pool->name, retval);
3555de55b26SMatthieu CASTET 
3565de55b26SMatthieu CASTET 			/*
3575de55b26SMatthieu CASTET 			 * Dump the first 4 bytes even if they are not
3585de55b26SMatthieu CASTET 			 * POOL_POISON_FREED
3595de55b26SMatthieu CASTET 			 */
3605de55b26SMatthieu CASTET 			print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 16, 1,
3615de55b26SMatthieu CASTET 					data, pool->size, 1);
3625de55b26SMatthieu CASTET 			break;
3635de55b26SMatthieu CASTET 		}
3645de55b26SMatthieu CASTET 	}
365fa23f56dSSean O. Stalley 	if (!(mem_flags & __GFP_ZERO))
366141e9d4bSMatthew Wilcox 		memset(retval, POOL_POISON_ALLOCATED, pool->size);
367141e9d4bSMatthew Wilcox #endif
368141e9d4bSMatthew Wilcox 	spin_unlock_irqrestore(&pool->lock, flags);
369fa23f56dSSean O. Stalley 
3706471384aSAlexander Potapenko 	if (want_init_on_alloc(mem_flags))
371fa23f56dSSean O. Stalley 		memset(retval, 0, pool->size);
372fa23f56dSSean O. Stalley 
373141e9d4bSMatthew Wilcox 	return retval;
374141e9d4bSMatthew Wilcox }
375e87aa773SMatthew Wilcox EXPORT_SYMBOL(dma_pool_alloc);
376141e9d4bSMatthew Wilcox 
377e87aa773SMatthew Wilcox static struct dma_page *pool_find_page(struct dma_pool *pool, dma_addr_t dma)
378141e9d4bSMatthew Wilcox {
379141e9d4bSMatthew Wilcox 	struct dma_page *page;
380141e9d4bSMatthew Wilcox 
381141e9d4bSMatthew Wilcox 	list_for_each_entry(page, &pool->page_list, page_list) {
382141e9d4bSMatthew Wilcox 		if (dma < page->dma)
383141e9d4bSMatthew Wilcox 			continue;
384676bd991SRobin Murphy 		if ((dma - page->dma) < pool->allocation)
385141e9d4bSMatthew Wilcox 			return page;
386141e9d4bSMatthew Wilcox 	}
38784bc227dSRolf Eike Beer 	return NULL;
38884bc227dSRolf Eike Beer }
389141e9d4bSMatthew Wilcox 
390141e9d4bSMatthew Wilcox /**
391141e9d4bSMatthew Wilcox  * dma_pool_free - put block back into dma pool
392141e9d4bSMatthew Wilcox  * @pool: the dma pool holding the block
393141e9d4bSMatthew Wilcox  * @vaddr: virtual address of block
394141e9d4bSMatthew Wilcox  * @dma: dma address of block
395141e9d4bSMatthew Wilcox  *
396141e9d4bSMatthew Wilcox  * Caller promises neither device nor driver will again touch this block
397141e9d4bSMatthew Wilcox  * unless it is first re-allocated.
398141e9d4bSMatthew Wilcox  */
399e87aa773SMatthew Wilcox void dma_pool_free(struct dma_pool *pool, void *vaddr, dma_addr_t dma)
400141e9d4bSMatthew Wilcox {
401141e9d4bSMatthew Wilcox 	struct dma_page *page;
402141e9d4bSMatthew Wilcox 	unsigned long flags;
403a35a3455SMatthew Wilcox 	unsigned int offset;
404141e9d4bSMatthew Wilcox 
40584bc227dSRolf Eike Beer 	spin_lock_irqsave(&pool->lock, flags);
406e87aa773SMatthew Wilcox 	page = pool_find_page(pool, dma);
407e87aa773SMatthew Wilcox 	if (!page) {
40884bc227dSRolf Eike Beer 		spin_unlock_irqrestore(&pool->lock, flags);
40941a04814SAndy Shevchenko 		dev_err(pool->dev, "%s %s, %p/%pad (bad dma)\n",
41041a04814SAndy Shevchenko 			__func__, pool->name, vaddr, &dma);
411141e9d4bSMatthew Wilcox 		return;
412141e9d4bSMatthew Wilcox 	}
413141e9d4bSMatthew Wilcox 
414a35a3455SMatthew Wilcox 	offset = vaddr - page->vaddr;
4156471384aSAlexander Potapenko 	if (want_init_on_free())
4166471384aSAlexander Potapenko 		memset(vaddr, 0, pool->size);
417b5ee5befSAndi Kleen #ifdef	DMAPOOL_DEBUG
418a35a3455SMatthew Wilcox 	if ((dma - page->dma) != offset) {
41984bc227dSRolf Eike Beer 		spin_unlock_irqrestore(&pool->lock, flags);
42041a04814SAndy Shevchenko 		dev_err(pool->dev, "%s %s, %p (bad vaddr)/%pad\n",
42141a04814SAndy Shevchenko 			__func__, pool->name, vaddr, &dma);
422141e9d4bSMatthew Wilcox 		return;
423141e9d4bSMatthew Wilcox 	}
424a35a3455SMatthew Wilcox 	{
425a35a3455SMatthew Wilcox 		unsigned int chain = page->offset;
426a35a3455SMatthew Wilcox 		while (chain < pool->allocation) {
427a35a3455SMatthew Wilcox 			if (chain != offset) {
428a35a3455SMatthew Wilcox 				chain = *(int *)(page->vaddr + chain);
429a35a3455SMatthew Wilcox 				continue;
430a35a3455SMatthew Wilcox 			}
43184bc227dSRolf Eike Beer 			spin_unlock_irqrestore(&pool->lock, flags);
43241a04814SAndy Shevchenko 			dev_err(pool->dev, "%s %s, dma %pad already free\n",
43341a04814SAndy Shevchenko 				__func__, pool->name, &dma);
434141e9d4bSMatthew Wilcox 			return;
435141e9d4bSMatthew Wilcox 		}
436a35a3455SMatthew Wilcox 	}
437141e9d4bSMatthew Wilcox 	memset(vaddr, POOL_POISON_FREED, pool->size);
438141e9d4bSMatthew Wilcox #endif
439141e9d4bSMatthew Wilcox 
440141e9d4bSMatthew Wilcox 	page->in_use--;
441a35a3455SMatthew Wilcox 	*(int *)vaddr = page->offset;
442a35a3455SMatthew Wilcox 	page->offset = offset;
443141e9d4bSMatthew Wilcox 	/*
444141e9d4bSMatthew Wilcox 	 * Resist a temptation to do
445a35a3455SMatthew Wilcox 	 *    if (!is_page_busy(page)) pool_free_page(pool, page);
446141e9d4bSMatthew Wilcox 	 * Better have a few empty pages hang around.
447141e9d4bSMatthew Wilcox 	 */
448141e9d4bSMatthew Wilcox 	spin_unlock_irqrestore(&pool->lock, flags);
449141e9d4bSMatthew Wilcox }
450e87aa773SMatthew Wilcox EXPORT_SYMBOL(dma_pool_free);
451141e9d4bSMatthew Wilcox 
452141e9d4bSMatthew Wilcox /*
453141e9d4bSMatthew Wilcox  * Managed DMA pool
454141e9d4bSMatthew Wilcox  */
455141e9d4bSMatthew Wilcox static void dmam_pool_release(struct device *dev, void *res)
456141e9d4bSMatthew Wilcox {
457141e9d4bSMatthew Wilcox 	struct dma_pool *pool = *(struct dma_pool **)res;
458141e9d4bSMatthew Wilcox 
459141e9d4bSMatthew Wilcox 	dma_pool_destroy(pool);
460141e9d4bSMatthew Wilcox }
461141e9d4bSMatthew Wilcox 
462141e9d4bSMatthew Wilcox static int dmam_pool_match(struct device *dev, void *res, void *match_data)
463141e9d4bSMatthew Wilcox {
464141e9d4bSMatthew Wilcox 	return *(struct dma_pool **)res == match_data;
465141e9d4bSMatthew Wilcox }
466141e9d4bSMatthew Wilcox 
467141e9d4bSMatthew Wilcox /**
468141e9d4bSMatthew Wilcox  * dmam_pool_create - Managed dma_pool_create()
469141e9d4bSMatthew Wilcox  * @name: name of pool, for diagnostics
470141e9d4bSMatthew Wilcox  * @dev: device that will be doing the DMA
471141e9d4bSMatthew Wilcox  * @size: size of the blocks in this pool.
472141e9d4bSMatthew Wilcox  * @align: alignment requirement for blocks; must be a power of two
473141e9d4bSMatthew Wilcox  * @allocation: returned blocks won't cross this boundary (or zero)
474141e9d4bSMatthew Wilcox  *
475141e9d4bSMatthew Wilcox  * Managed dma_pool_create().  DMA pool created with this function is
476141e9d4bSMatthew Wilcox  * automatically destroyed on driver detach.
477a862f68aSMike Rapoport  *
478a862f68aSMike Rapoport  * Return: a managed dma allocation pool with the requested
479a862f68aSMike Rapoport  * characteristics, or %NULL if one can't be created.
480141e9d4bSMatthew Wilcox  */
481141e9d4bSMatthew Wilcox struct dma_pool *dmam_pool_create(const char *name, struct device *dev,
482141e9d4bSMatthew Wilcox 				  size_t size, size_t align, size_t allocation)
483141e9d4bSMatthew Wilcox {
484141e9d4bSMatthew Wilcox 	struct dma_pool **ptr, *pool;
485141e9d4bSMatthew Wilcox 
486141e9d4bSMatthew Wilcox 	ptr = devres_alloc(dmam_pool_release, sizeof(*ptr), GFP_KERNEL);
487141e9d4bSMatthew Wilcox 	if (!ptr)
488141e9d4bSMatthew Wilcox 		return NULL;
489141e9d4bSMatthew Wilcox 
490141e9d4bSMatthew Wilcox 	pool = *ptr = dma_pool_create(name, dev, size, align, allocation);
491141e9d4bSMatthew Wilcox 	if (pool)
492141e9d4bSMatthew Wilcox 		devres_add(dev, ptr);
493141e9d4bSMatthew Wilcox 	else
494141e9d4bSMatthew Wilcox 		devres_free(ptr);
495141e9d4bSMatthew Wilcox 
496141e9d4bSMatthew Wilcox 	return pool;
497141e9d4bSMatthew Wilcox }
498e87aa773SMatthew Wilcox EXPORT_SYMBOL(dmam_pool_create);
499141e9d4bSMatthew Wilcox 
500141e9d4bSMatthew Wilcox /**
501141e9d4bSMatthew Wilcox  * dmam_pool_destroy - Managed dma_pool_destroy()
502141e9d4bSMatthew Wilcox  * @pool: dma pool that will be destroyed
503141e9d4bSMatthew Wilcox  *
504141e9d4bSMatthew Wilcox  * Managed dma_pool_destroy().
505141e9d4bSMatthew Wilcox  */
506141e9d4bSMatthew Wilcox void dmam_pool_destroy(struct dma_pool *pool)
507141e9d4bSMatthew Wilcox {
508141e9d4bSMatthew Wilcox 	struct device *dev = pool->dev;
509141e9d4bSMatthew Wilcox 
510172cb4b3SAndy Shevchenko 	WARN_ON(devres_release(dev, dmam_pool_release, dmam_pool_match, pool));
511141e9d4bSMatthew Wilcox }
512141e9d4bSMatthew Wilcox EXPORT_SYMBOL(dmam_pool_destroy);
513