xref: /openbmc/linux/mm/dmapool.c (revision 01c2965f0723a25209d5cf4cac630ed0f6d0edf4)
16182a094SMatthew Wilcox /*
26182a094SMatthew Wilcox  * DMA Pool allocator
36182a094SMatthew Wilcox  *
46182a094SMatthew Wilcox  * Copyright 2001 David Brownell
56182a094SMatthew Wilcox  * Copyright 2007 Intel Corporation
66182a094SMatthew Wilcox  *   Author: Matthew Wilcox <willy@linux.intel.com>
76182a094SMatthew Wilcox  *
86182a094SMatthew Wilcox  * This software may be redistributed and/or modified under the terms of
96182a094SMatthew Wilcox  * the GNU General Public License ("GPL") version 2 as published by the
106182a094SMatthew Wilcox  * Free Software Foundation.
116182a094SMatthew Wilcox  *
126182a094SMatthew Wilcox  * This allocator returns small blocks of a given size which are DMA-able by
136182a094SMatthew Wilcox  * the given device.  It uses the dma_alloc_coherent page allocator to get
146182a094SMatthew Wilcox  * new pages, then splits them up into blocks of the required size.
156182a094SMatthew Wilcox  * Many older drivers still have their own code to do this.
166182a094SMatthew Wilcox  *
176182a094SMatthew Wilcox  * The current design of this allocator is fairly simple.  The pool is
186182a094SMatthew Wilcox  * represented by the 'struct dma_pool' which keeps a doubly-linked list of
196182a094SMatthew Wilcox  * allocated pages.  Each page in the page_list is split into blocks of at
20a35a3455SMatthew Wilcox  * least 'size' bytes.  Free blocks are tracked in an unsorted singly-linked
21a35a3455SMatthew Wilcox  * list of free blocks within the page.  Used blocks aren't tracked, but we
22a35a3455SMatthew Wilcox  * keep a count of how many are currently allocated from each page.
236182a094SMatthew Wilcox  */
24141e9d4bSMatthew Wilcox 
25141e9d4bSMatthew Wilcox #include <linux/device.h>
26141e9d4bSMatthew Wilcox #include <linux/dma-mapping.h>
27141e9d4bSMatthew Wilcox #include <linux/dmapool.h>
286182a094SMatthew Wilcox #include <linux/kernel.h>
296182a094SMatthew Wilcox #include <linux/list.h>
30b95f1b31SPaul Gortmaker #include <linux/export.h>
316182a094SMatthew Wilcox #include <linux/mutex.h>
32141e9d4bSMatthew Wilcox #include <linux/poison.h>
33141e9d4bSMatthew Wilcox #include <linux/sched.h>
346182a094SMatthew Wilcox #include <linux/slab.h>
357c77509cSPaul Gortmaker #include <linux/stat.h>
366182a094SMatthew Wilcox #include <linux/spinlock.h>
376182a094SMatthew Wilcox #include <linux/string.h>
386182a094SMatthew Wilcox #include <linux/types.h>
396182a094SMatthew Wilcox #include <linux/wait.h>
40141e9d4bSMatthew Wilcox 
41b5ee5befSAndi Kleen #if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_SLUB_DEBUG_ON)
42b5ee5befSAndi Kleen #define DMAPOOL_DEBUG 1
43b5ee5befSAndi Kleen #endif
44b5ee5befSAndi Kleen 
45141e9d4bSMatthew Wilcox struct dma_pool {		/* the pool */
46141e9d4bSMatthew Wilcox 	struct list_head page_list;
47141e9d4bSMatthew Wilcox 	spinlock_t lock;
48141e9d4bSMatthew Wilcox 	size_t size;
49141e9d4bSMatthew Wilcox 	struct device *dev;
50141e9d4bSMatthew Wilcox 	size_t allocation;
51e34f44b3SMatthew Wilcox 	size_t boundary;
52141e9d4bSMatthew Wilcox 	char name[32];
53141e9d4bSMatthew Wilcox 	struct list_head pools;
54141e9d4bSMatthew Wilcox };
55141e9d4bSMatthew Wilcox 
56141e9d4bSMatthew Wilcox struct dma_page {		/* cacheable header for 'allocation' bytes */
57141e9d4bSMatthew Wilcox 	struct list_head page_list;
58141e9d4bSMatthew Wilcox 	void *vaddr;
59141e9d4bSMatthew Wilcox 	dma_addr_t dma;
60a35a3455SMatthew Wilcox 	unsigned int in_use;
61a35a3455SMatthew Wilcox 	unsigned int offset;
62141e9d4bSMatthew Wilcox };
63141e9d4bSMatthew Wilcox 
64141e9d4bSMatthew Wilcox static DEFINE_MUTEX(pools_lock);
65*01c2965fSSebastian Andrzej Siewior static DEFINE_MUTEX(pools_reg_lock);
66141e9d4bSMatthew Wilcox 
67141e9d4bSMatthew Wilcox static ssize_t
68141e9d4bSMatthew Wilcox show_pools(struct device *dev, struct device_attribute *attr, char *buf)
69141e9d4bSMatthew Wilcox {
70141e9d4bSMatthew Wilcox 	unsigned temp;
71141e9d4bSMatthew Wilcox 	unsigned size;
72141e9d4bSMatthew Wilcox 	char *next;
73141e9d4bSMatthew Wilcox 	struct dma_page *page;
74141e9d4bSMatthew Wilcox 	struct dma_pool *pool;
75141e9d4bSMatthew Wilcox 
76141e9d4bSMatthew Wilcox 	next = buf;
77141e9d4bSMatthew Wilcox 	size = PAGE_SIZE;
78141e9d4bSMatthew Wilcox 
79141e9d4bSMatthew Wilcox 	temp = scnprintf(next, size, "poolinfo - 0.1\n");
80141e9d4bSMatthew Wilcox 	size -= temp;
81141e9d4bSMatthew Wilcox 	next += temp;
82141e9d4bSMatthew Wilcox 
83141e9d4bSMatthew Wilcox 	mutex_lock(&pools_lock);
84141e9d4bSMatthew Wilcox 	list_for_each_entry(pool, &dev->dma_pools, pools) {
85141e9d4bSMatthew Wilcox 		unsigned pages = 0;
86141e9d4bSMatthew Wilcox 		unsigned blocks = 0;
87141e9d4bSMatthew Wilcox 
88c4956823SThomas Gleixner 		spin_lock_irq(&pool->lock);
89141e9d4bSMatthew Wilcox 		list_for_each_entry(page, &pool->page_list, page_list) {
90141e9d4bSMatthew Wilcox 			pages++;
91141e9d4bSMatthew Wilcox 			blocks += page->in_use;
92141e9d4bSMatthew Wilcox 		}
93c4956823SThomas Gleixner 		spin_unlock_irq(&pool->lock);
94141e9d4bSMatthew Wilcox 
95141e9d4bSMatthew Wilcox 		/* per-pool info, no real statistics yet */
96141e9d4bSMatthew Wilcox 		temp = scnprintf(next, size, "%-16s %4u %4Zu %4Zu %2u\n",
97a35a3455SMatthew Wilcox 				 pool->name, blocks,
98a35a3455SMatthew Wilcox 				 pages * (pool->allocation / pool->size),
99141e9d4bSMatthew Wilcox 				 pool->size, pages);
100141e9d4bSMatthew Wilcox 		size -= temp;
101141e9d4bSMatthew Wilcox 		next += temp;
102141e9d4bSMatthew Wilcox 	}
103141e9d4bSMatthew Wilcox 	mutex_unlock(&pools_lock);
104141e9d4bSMatthew Wilcox 
105141e9d4bSMatthew Wilcox 	return PAGE_SIZE - size;
106141e9d4bSMatthew Wilcox }
107e87aa773SMatthew Wilcox 
108141e9d4bSMatthew Wilcox static DEVICE_ATTR(pools, S_IRUGO, show_pools, NULL);
109141e9d4bSMatthew Wilcox 
110141e9d4bSMatthew Wilcox /**
111141e9d4bSMatthew Wilcox  * dma_pool_create - Creates a pool of consistent memory blocks, for dma.
112141e9d4bSMatthew Wilcox  * @name: name of pool, for diagnostics
113141e9d4bSMatthew Wilcox  * @dev: device that will be doing the DMA
114141e9d4bSMatthew Wilcox  * @size: size of the blocks in this pool.
115141e9d4bSMatthew Wilcox  * @align: alignment requirement for blocks; must be a power of two
116e34f44b3SMatthew Wilcox  * @boundary: returned blocks won't cross this power of two boundary
117141e9d4bSMatthew Wilcox  * Context: !in_interrupt()
118141e9d4bSMatthew Wilcox  *
119141e9d4bSMatthew Wilcox  * Returns a dma allocation pool with the requested characteristics, or
120141e9d4bSMatthew Wilcox  * null if one can't be created.  Given one of these pools, dma_pool_alloc()
121141e9d4bSMatthew Wilcox  * may be used to allocate memory.  Such memory will all have "consistent"
122141e9d4bSMatthew Wilcox  * DMA mappings, accessible by the device and its driver without using
123141e9d4bSMatthew Wilcox  * cache flushing primitives.  The actual size of blocks allocated may be
124141e9d4bSMatthew Wilcox  * larger than requested because of alignment.
125141e9d4bSMatthew Wilcox  *
126e34f44b3SMatthew Wilcox  * If @boundary is nonzero, objects returned from dma_pool_alloc() won't
127141e9d4bSMatthew Wilcox  * cross that size boundary.  This is useful for devices which have
128141e9d4bSMatthew Wilcox  * addressing restrictions on individual DMA transfers, such as not crossing
129141e9d4bSMatthew Wilcox  * boundaries of 4KBytes.
130141e9d4bSMatthew Wilcox  */
131e87aa773SMatthew Wilcox struct dma_pool *dma_pool_create(const char *name, struct device *dev,
132e34f44b3SMatthew Wilcox 				 size_t size, size_t align, size_t boundary)
133141e9d4bSMatthew Wilcox {
134141e9d4bSMatthew Wilcox 	struct dma_pool *retval;
135e34f44b3SMatthew Wilcox 	size_t allocation;
136*01c2965fSSebastian Andrzej Siewior 	bool empty = false;
137141e9d4bSMatthew Wilcox 
138399154beSMatthew Wilcox 	if (align == 0) {
139141e9d4bSMatthew Wilcox 		align = 1;
140399154beSMatthew Wilcox 	} else if (align & (align - 1)) {
141399154beSMatthew Wilcox 		return NULL;
142399154beSMatthew Wilcox 	}
143399154beSMatthew Wilcox 
144a35a3455SMatthew Wilcox 	if (size == 0) {
145141e9d4bSMatthew Wilcox 		return NULL;
146a35a3455SMatthew Wilcox 	} else if (size < 4) {
147a35a3455SMatthew Wilcox 		size = 4;
148a35a3455SMatthew Wilcox 	}
149399154beSMatthew Wilcox 
150399154beSMatthew Wilcox 	if ((size % align) != 0)
151399154beSMatthew Wilcox 		size = ALIGN(size, align);
152141e9d4bSMatthew Wilcox 
153e34f44b3SMatthew Wilcox 	allocation = max_t(size_t, size, PAGE_SIZE);
154141e9d4bSMatthew Wilcox 
155e34f44b3SMatthew Wilcox 	if (!boundary) {
156e34f44b3SMatthew Wilcox 		boundary = allocation;
157e34f44b3SMatthew Wilcox 	} else if ((boundary < size) || (boundary & (boundary - 1))) {
158e34f44b3SMatthew Wilcox 		return NULL;
159e34f44b3SMatthew Wilcox 	}
160e34f44b3SMatthew Wilcox 
161e34f44b3SMatthew Wilcox 	retval = kmalloc_node(sizeof(*retval), GFP_KERNEL, dev_to_node(dev));
162e34f44b3SMatthew Wilcox 	if (!retval)
163141e9d4bSMatthew Wilcox 		return retval;
164141e9d4bSMatthew Wilcox 
165e34f44b3SMatthew Wilcox 	strlcpy(retval->name, name, sizeof(retval->name));
166141e9d4bSMatthew Wilcox 
167141e9d4bSMatthew Wilcox 	retval->dev = dev;
168141e9d4bSMatthew Wilcox 
169141e9d4bSMatthew Wilcox 	INIT_LIST_HEAD(&retval->page_list);
170141e9d4bSMatthew Wilcox 	spin_lock_init(&retval->lock);
171141e9d4bSMatthew Wilcox 	retval->size = size;
172e34f44b3SMatthew Wilcox 	retval->boundary = boundary;
173141e9d4bSMatthew Wilcox 	retval->allocation = allocation;
174141e9d4bSMatthew Wilcox 
175cc6b664aSDaeseok Youn 	INIT_LIST_HEAD(&retval->pools);
176141e9d4bSMatthew Wilcox 
177*01c2965fSSebastian Andrzej Siewior 	/*
178*01c2965fSSebastian Andrzej Siewior 	 * pools_lock ensures that the ->dma_pools list does not get corrupted.
179*01c2965fSSebastian Andrzej Siewior 	 * pools_reg_lock ensures that there is not a race between
180*01c2965fSSebastian Andrzej Siewior 	 * dma_pool_create() and dma_pool_destroy() or within dma_pool_create()
181*01c2965fSSebastian Andrzej Siewior 	 * when the first invocation of dma_pool_create() failed on
182*01c2965fSSebastian Andrzej Siewior 	 * device_create_file() and the second assumes that it has been done (I
183*01c2965fSSebastian Andrzej Siewior 	 * know it is a short window).
184*01c2965fSSebastian Andrzej Siewior 	 */
185*01c2965fSSebastian Andrzej Siewior 	mutex_lock(&pools_reg_lock);
186141e9d4bSMatthew Wilcox 	mutex_lock(&pools_lock);
187*01c2965fSSebastian Andrzej Siewior 	if (list_empty(&dev->dma_pools))
188*01c2965fSSebastian Andrzej Siewior 		empty = true;
189cc6b664aSDaeseok Youn 	list_add(&retval->pools, &dev->dma_pools);
190cc6b664aSDaeseok Youn 	mutex_unlock(&pools_lock);
191*01c2965fSSebastian Andrzej Siewior 	if (empty) {
192*01c2965fSSebastian Andrzej Siewior 		int err;
193141e9d4bSMatthew Wilcox 
194*01c2965fSSebastian Andrzej Siewior 		err = device_create_file(dev, &dev_attr_pools);
195*01c2965fSSebastian Andrzej Siewior 		if (err) {
196*01c2965fSSebastian Andrzej Siewior 			mutex_lock(&pools_lock);
197*01c2965fSSebastian Andrzej Siewior 			list_del(&retval->pools);
198*01c2965fSSebastian Andrzej Siewior 			mutex_unlock(&pools_lock);
199*01c2965fSSebastian Andrzej Siewior 			mutex_unlock(&pools_reg_lock);
200*01c2965fSSebastian Andrzej Siewior 			kfree(retval);
201*01c2965fSSebastian Andrzej Siewior 			return NULL;
202*01c2965fSSebastian Andrzej Siewior 		}
203*01c2965fSSebastian Andrzej Siewior 	}
204*01c2965fSSebastian Andrzej Siewior 	mutex_unlock(&pools_reg_lock);
205141e9d4bSMatthew Wilcox 	return retval;
206141e9d4bSMatthew Wilcox }
207e87aa773SMatthew Wilcox EXPORT_SYMBOL(dma_pool_create);
208141e9d4bSMatthew Wilcox 
209a35a3455SMatthew Wilcox static void pool_initialise_page(struct dma_pool *pool, struct dma_page *page)
210a35a3455SMatthew Wilcox {
211a35a3455SMatthew Wilcox 	unsigned int offset = 0;
212e34f44b3SMatthew Wilcox 	unsigned int next_boundary = pool->boundary;
213a35a3455SMatthew Wilcox 
214a35a3455SMatthew Wilcox 	do {
215a35a3455SMatthew Wilcox 		unsigned int next = offset + pool->size;
216e34f44b3SMatthew Wilcox 		if (unlikely((next + pool->size) >= next_boundary)) {
217e34f44b3SMatthew Wilcox 			next = next_boundary;
218e34f44b3SMatthew Wilcox 			next_boundary += pool->boundary;
219e34f44b3SMatthew Wilcox 		}
220a35a3455SMatthew Wilcox 		*(int *)(page->vaddr + offset) = next;
221a35a3455SMatthew Wilcox 		offset = next;
222a35a3455SMatthew Wilcox 	} while (offset < pool->allocation);
223a35a3455SMatthew Wilcox }
224a35a3455SMatthew Wilcox 
225e87aa773SMatthew Wilcox static struct dma_page *pool_alloc_page(struct dma_pool *pool, gfp_t mem_flags)
226141e9d4bSMatthew Wilcox {
227141e9d4bSMatthew Wilcox 	struct dma_page *page;
228141e9d4bSMatthew Wilcox 
229a35a3455SMatthew Wilcox 	page = kmalloc(sizeof(*page), mem_flags);
230141e9d4bSMatthew Wilcox 	if (!page)
231141e9d4bSMatthew Wilcox 		return NULL;
232a35a3455SMatthew Wilcox 	page->vaddr = dma_alloc_coherent(pool->dev, pool->allocation,
233e87aa773SMatthew Wilcox 					 &page->dma, mem_flags);
234141e9d4bSMatthew Wilcox 	if (page->vaddr) {
235b5ee5befSAndi Kleen #ifdef	DMAPOOL_DEBUG
236141e9d4bSMatthew Wilcox 		memset(page->vaddr, POOL_POISON_FREED, pool->allocation);
237141e9d4bSMatthew Wilcox #endif
238a35a3455SMatthew Wilcox 		pool_initialise_page(pool, page);
239141e9d4bSMatthew Wilcox 		page->in_use = 0;
240a35a3455SMatthew Wilcox 		page->offset = 0;
241141e9d4bSMatthew Wilcox 	} else {
242141e9d4bSMatthew Wilcox 		kfree(page);
243141e9d4bSMatthew Wilcox 		page = NULL;
244141e9d4bSMatthew Wilcox 	}
245141e9d4bSMatthew Wilcox 	return page;
246141e9d4bSMatthew Wilcox }
247141e9d4bSMatthew Wilcox 
248a35a3455SMatthew Wilcox static inline int is_page_busy(struct dma_page *page)
249141e9d4bSMatthew Wilcox {
250a35a3455SMatthew Wilcox 	return page->in_use != 0;
251141e9d4bSMatthew Wilcox }
252141e9d4bSMatthew Wilcox 
253e87aa773SMatthew Wilcox static void pool_free_page(struct dma_pool *pool, struct dma_page *page)
254141e9d4bSMatthew Wilcox {
255141e9d4bSMatthew Wilcox 	dma_addr_t dma = page->dma;
256141e9d4bSMatthew Wilcox 
257b5ee5befSAndi Kleen #ifdef	DMAPOOL_DEBUG
258141e9d4bSMatthew Wilcox 	memset(page->vaddr, POOL_POISON_FREED, pool->allocation);
259141e9d4bSMatthew Wilcox #endif
260141e9d4bSMatthew Wilcox 	dma_free_coherent(pool->dev, pool->allocation, page->vaddr, dma);
261141e9d4bSMatthew Wilcox 	list_del(&page->page_list);
262141e9d4bSMatthew Wilcox 	kfree(page);
263141e9d4bSMatthew Wilcox }
264141e9d4bSMatthew Wilcox 
265141e9d4bSMatthew Wilcox /**
266141e9d4bSMatthew Wilcox  * dma_pool_destroy - destroys a pool of dma memory blocks.
267141e9d4bSMatthew Wilcox  * @pool: dma pool that will be destroyed
268141e9d4bSMatthew Wilcox  * Context: !in_interrupt()
269141e9d4bSMatthew Wilcox  *
270141e9d4bSMatthew Wilcox  * Caller guarantees that no more memory from the pool is in use,
271141e9d4bSMatthew Wilcox  * and that nothing will try to use the pool after this call.
272141e9d4bSMatthew Wilcox  */
273e87aa773SMatthew Wilcox void dma_pool_destroy(struct dma_pool *pool)
274141e9d4bSMatthew Wilcox {
275*01c2965fSSebastian Andrzej Siewior 	bool empty = false;
276*01c2965fSSebastian Andrzej Siewior 
277*01c2965fSSebastian Andrzej Siewior 	mutex_lock(&pools_reg_lock);
278141e9d4bSMatthew Wilcox 	mutex_lock(&pools_lock);
279141e9d4bSMatthew Wilcox 	list_del(&pool->pools);
280141e9d4bSMatthew Wilcox 	if (pool->dev && list_empty(&pool->dev->dma_pools))
281*01c2965fSSebastian Andrzej Siewior 		empty = true;
282141e9d4bSMatthew Wilcox 	mutex_unlock(&pools_lock);
283*01c2965fSSebastian Andrzej Siewior 	if (empty)
284*01c2965fSSebastian Andrzej Siewior 		device_remove_file(pool->dev, &dev_attr_pools);
285*01c2965fSSebastian Andrzej Siewior 	mutex_unlock(&pools_reg_lock);
286141e9d4bSMatthew Wilcox 
287141e9d4bSMatthew Wilcox 	while (!list_empty(&pool->page_list)) {
288141e9d4bSMatthew Wilcox 		struct dma_page *page;
289141e9d4bSMatthew Wilcox 		page = list_entry(pool->page_list.next,
290141e9d4bSMatthew Wilcox 				  struct dma_page, page_list);
291a35a3455SMatthew Wilcox 		if (is_page_busy(page)) {
292141e9d4bSMatthew Wilcox 			if (pool->dev)
293e87aa773SMatthew Wilcox 				dev_err(pool->dev,
294e87aa773SMatthew Wilcox 					"dma_pool_destroy %s, %p busy\n",
295141e9d4bSMatthew Wilcox 					pool->name, page->vaddr);
296141e9d4bSMatthew Wilcox 			else
297e87aa773SMatthew Wilcox 				printk(KERN_ERR
298e87aa773SMatthew Wilcox 				       "dma_pool_destroy %s, %p busy\n",
299141e9d4bSMatthew Wilcox 				       pool->name, page->vaddr);
300141e9d4bSMatthew Wilcox 			/* leak the still-in-use consistent memory */
301141e9d4bSMatthew Wilcox 			list_del(&page->page_list);
302141e9d4bSMatthew Wilcox 			kfree(page);
303141e9d4bSMatthew Wilcox 		} else
304141e9d4bSMatthew Wilcox 			pool_free_page(pool, page);
305141e9d4bSMatthew Wilcox 	}
306141e9d4bSMatthew Wilcox 
307141e9d4bSMatthew Wilcox 	kfree(pool);
308141e9d4bSMatthew Wilcox }
309e87aa773SMatthew Wilcox EXPORT_SYMBOL(dma_pool_destroy);
310141e9d4bSMatthew Wilcox 
311141e9d4bSMatthew Wilcox /**
312141e9d4bSMatthew Wilcox  * dma_pool_alloc - get a block of consistent memory
313141e9d4bSMatthew Wilcox  * @pool: dma pool that will produce the block
314141e9d4bSMatthew Wilcox  * @mem_flags: GFP_* bitmask
315141e9d4bSMatthew Wilcox  * @handle: pointer to dma address of block
316141e9d4bSMatthew Wilcox  *
317141e9d4bSMatthew Wilcox  * This returns the kernel virtual address of a currently unused block,
318141e9d4bSMatthew Wilcox  * and reports its dma address through the handle.
3196182a094SMatthew Wilcox  * If such a memory block can't be allocated, %NULL is returned.
320141e9d4bSMatthew Wilcox  */
321e87aa773SMatthew Wilcox void *dma_pool_alloc(struct dma_pool *pool, gfp_t mem_flags,
322e87aa773SMatthew Wilcox 		     dma_addr_t *handle)
323141e9d4bSMatthew Wilcox {
324141e9d4bSMatthew Wilcox 	unsigned long flags;
325141e9d4bSMatthew Wilcox 	struct dma_page *page;
326141e9d4bSMatthew Wilcox 	size_t offset;
327141e9d4bSMatthew Wilcox 	void *retval;
328141e9d4bSMatthew Wilcox 
329ea05c844SDima Zavin 	might_sleep_if(mem_flags & __GFP_WAIT);
330ea05c844SDima Zavin 
331141e9d4bSMatthew Wilcox 	spin_lock_irqsave(&pool->lock, flags);
332141e9d4bSMatthew Wilcox 	list_for_each_entry(page, &pool->page_list, page_list) {
333a35a3455SMatthew Wilcox 		if (page->offset < pool->allocation)
334141e9d4bSMatthew Wilcox 			goto ready;
335141e9d4bSMatthew Wilcox 	}
336141e9d4bSMatthew Wilcox 
337387870f2SMarek Szyprowski 	/* pool_alloc_page() might sleep, so temporarily drop &pool->lock */
338141e9d4bSMatthew Wilcox 	spin_unlock_irqrestore(&pool->lock, flags);
339141e9d4bSMatthew Wilcox 
340387870f2SMarek Szyprowski 	page = pool_alloc_page(pool, mem_flags);
341387870f2SMarek Szyprowski 	if (!page)
342387870f2SMarek Szyprowski 		return NULL;
343141e9d4bSMatthew Wilcox 
3442cae367eSMatthew Wilcox 	spin_lock_irqsave(&pool->lock, flags);
345141e9d4bSMatthew Wilcox 
346387870f2SMarek Szyprowski 	list_add(&page->page_list, &pool->page_list);
347141e9d4bSMatthew Wilcox  ready:
348141e9d4bSMatthew Wilcox 	page->in_use++;
349a35a3455SMatthew Wilcox 	offset = page->offset;
350a35a3455SMatthew Wilcox 	page->offset = *(int *)(page->vaddr + offset);
351141e9d4bSMatthew Wilcox 	retval = offset + page->vaddr;
352141e9d4bSMatthew Wilcox 	*handle = offset + page->dma;
353b5ee5befSAndi Kleen #ifdef	DMAPOOL_DEBUG
3545de55b26SMatthieu CASTET 	{
3555de55b26SMatthieu CASTET 		int i;
3565de55b26SMatthieu CASTET 		u8 *data = retval;
3575de55b26SMatthieu CASTET 		/* page->offset is stored in first 4 bytes */
3585de55b26SMatthieu CASTET 		for (i = sizeof(page->offset); i < pool->size; i++) {
3595de55b26SMatthieu CASTET 			if (data[i] == POOL_POISON_FREED)
3605de55b26SMatthieu CASTET 				continue;
3615de55b26SMatthieu CASTET 			if (pool->dev)
3625de55b26SMatthieu CASTET 				dev_err(pool->dev,
3635835f251SHiroshige Sato 					"dma_pool_alloc %s, %p (corrupted)\n",
3645de55b26SMatthieu CASTET 					pool->name, retval);
3655de55b26SMatthieu CASTET 			else
3665835f251SHiroshige Sato 				pr_err("dma_pool_alloc %s, %p (corrupted)\n",
3675de55b26SMatthieu CASTET 					pool->name, retval);
3685de55b26SMatthieu CASTET 
3695de55b26SMatthieu CASTET 			/*
3705de55b26SMatthieu CASTET 			 * Dump the first 4 bytes even if they are not
3715de55b26SMatthieu CASTET 			 * POOL_POISON_FREED
3725de55b26SMatthieu CASTET 			 */
3735de55b26SMatthieu CASTET 			print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 16, 1,
3745de55b26SMatthieu CASTET 					data, pool->size, 1);
3755de55b26SMatthieu CASTET 			break;
3765de55b26SMatthieu CASTET 		}
3775de55b26SMatthieu CASTET 	}
378141e9d4bSMatthew Wilcox 	memset(retval, POOL_POISON_ALLOCATED, pool->size);
379141e9d4bSMatthew Wilcox #endif
380141e9d4bSMatthew Wilcox 	spin_unlock_irqrestore(&pool->lock, flags);
381141e9d4bSMatthew Wilcox 	return retval;
382141e9d4bSMatthew Wilcox }
383e87aa773SMatthew Wilcox EXPORT_SYMBOL(dma_pool_alloc);
384141e9d4bSMatthew Wilcox 
385e87aa773SMatthew Wilcox static struct dma_page *pool_find_page(struct dma_pool *pool, dma_addr_t dma)
386141e9d4bSMatthew Wilcox {
387141e9d4bSMatthew Wilcox 	struct dma_page *page;
388141e9d4bSMatthew Wilcox 
389141e9d4bSMatthew Wilcox 	list_for_each_entry(page, &pool->page_list, page_list) {
390141e9d4bSMatthew Wilcox 		if (dma < page->dma)
391141e9d4bSMatthew Wilcox 			continue;
392141e9d4bSMatthew Wilcox 		if (dma < (page->dma + pool->allocation))
393141e9d4bSMatthew Wilcox 			return page;
394141e9d4bSMatthew Wilcox 	}
39584bc227dSRolf Eike Beer 	return NULL;
39684bc227dSRolf Eike Beer }
397141e9d4bSMatthew Wilcox 
398141e9d4bSMatthew Wilcox /**
399141e9d4bSMatthew Wilcox  * dma_pool_free - put block back into dma pool
400141e9d4bSMatthew Wilcox  * @pool: the dma pool holding the block
401141e9d4bSMatthew Wilcox  * @vaddr: virtual address of block
402141e9d4bSMatthew Wilcox  * @dma: dma address of block
403141e9d4bSMatthew Wilcox  *
404141e9d4bSMatthew Wilcox  * Caller promises neither device nor driver will again touch this block
405141e9d4bSMatthew Wilcox  * unless it is first re-allocated.
406141e9d4bSMatthew Wilcox  */
407e87aa773SMatthew Wilcox void dma_pool_free(struct dma_pool *pool, void *vaddr, dma_addr_t dma)
408141e9d4bSMatthew Wilcox {
409141e9d4bSMatthew Wilcox 	struct dma_page *page;
410141e9d4bSMatthew Wilcox 	unsigned long flags;
411a35a3455SMatthew Wilcox 	unsigned int offset;
412141e9d4bSMatthew Wilcox 
41384bc227dSRolf Eike Beer 	spin_lock_irqsave(&pool->lock, flags);
414e87aa773SMatthew Wilcox 	page = pool_find_page(pool, dma);
415e87aa773SMatthew Wilcox 	if (!page) {
41684bc227dSRolf Eike Beer 		spin_unlock_irqrestore(&pool->lock, flags);
417141e9d4bSMatthew Wilcox 		if (pool->dev)
418e87aa773SMatthew Wilcox 			dev_err(pool->dev,
419e87aa773SMatthew Wilcox 				"dma_pool_free %s, %p/%lx (bad dma)\n",
420141e9d4bSMatthew Wilcox 				pool->name, vaddr, (unsigned long)dma);
421141e9d4bSMatthew Wilcox 		else
422141e9d4bSMatthew Wilcox 			printk(KERN_ERR "dma_pool_free %s, %p/%lx (bad dma)\n",
423141e9d4bSMatthew Wilcox 			       pool->name, vaddr, (unsigned long)dma);
424141e9d4bSMatthew Wilcox 		return;
425141e9d4bSMatthew Wilcox 	}
426141e9d4bSMatthew Wilcox 
427a35a3455SMatthew Wilcox 	offset = vaddr - page->vaddr;
428b5ee5befSAndi Kleen #ifdef	DMAPOOL_DEBUG
429a35a3455SMatthew Wilcox 	if ((dma - page->dma) != offset) {
43084bc227dSRolf Eike Beer 		spin_unlock_irqrestore(&pool->lock, flags);
431141e9d4bSMatthew Wilcox 		if (pool->dev)
432e87aa773SMatthew Wilcox 			dev_err(pool->dev,
433e87aa773SMatthew Wilcox 				"dma_pool_free %s, %p (bad vaddr)/%Lx\n",
434141e9d4bSMatthew Wilcox 				pool->name, vaddr, (unsigned long long)dma);
435141e9d4bSMatthew Wilcox 		else
436e87aa773SMatthew Wilcox 			printk(KERN_ERR
437e87aa773SMatthew Wilcox 			       "dma_pool_free %s, %p (bad vaddr)/%Lx\n",
438141e9d4bSMatthew Wilcox 			       pool->name, vaddr, (unsigned long long)dma);
439141e9d4bSMatthew Wilcox 		return;
440141e9d4bSMatthew Wilcox 	}
441a35a3455SMatthew Wilcox 	{
442a35a3455SMatthew Wilcox 		unsigned int chain = page->offset;
443a35a3455SMatthew Wilcox 		while (chain < pool->allocation) {
444a35a3455SMatthew Wilcox 			if (chain != offset) {
445a35a3455SMatthew Wilcox 				chain = *(int *)(page->vaddr + chain);
446a35a3455SMatthew Wilcox 				continue;
447a35a3455SMatthew Wilcox 			}
44884bc227dSRolf Eike Beer 			spin_unlock_irqrestore(&pool->lock, flags);
449141e9d4bSMatthew Wilcox 			if (pool->dev)
450a35a3455SMatthew Wilcox 				dev_err(pool->dev, "dma_pool_free %s, dma %Lx "
451a35a3455SMatthew Wilcox 					"already free\n", pool->name,
452a35a3455SMatthew Wilcox 					(unsigned long long)dma);
453141e9d4bSMatthew Wilcox 			else
454a35a3455SMatthew Wilcox 				printk(KERN_ERR "dma_pool_free %s, dma %Lx "
455a35a3455SMatthew Wilcox 					"already free\n", pool->name,
456a35a3455SMatthew Wilcox 					(unsigned long long)dma);
457141e9d4bSMatthew Wilcox 			return;
458141e9d4bSMatthew Wilcox 		}
459a35a3455SMatthew Wilcox 	}
460141e9d4bSMatthew Wilcox 	memset(vaddr, POOL_POISON_FREED, pool->size);
461141e9d4bSMatthew Wilcox #endif
462141e9d4bSMatthew Wilcox 
463141e9d4bSMatthew Wilcox 	page->in_use--;
464a35a3455SMatthew Wilcox 	*(int *)vaddr = page->offset;
465a35a3455SMatthew Wilcox 	page->offset = offset;
466141e9d4bSMatthew Wilcox 	/*
467141e9d4bSMatthew Wilcox 	 * Resist a temptation to do
468a35a3455SMatthew Wilcox 	 *    if (!is_page_busy(page)) pool_free_page(pool, page);
469141e9d4bSMatthew Wilcox 	 * Better have a few empty pages hang around.
470141e9d4bSMatthew Wilcox 	 */
471141e9d4bSMatthew Wilcox 	spin_unlock_irqrestore(&pool->lock, flags);
472141e9d4bSMatthew Wilcox }
473e87aa773SMatthew Wilcox EXPORT_SYMBOL(dma_pool_free);
474141e9d4bSMatthew Wilcox 
475141e9d4bSMatthew Wilcox /*
476141e9d4bSMatthew Wilcox  * Managed DMA pool
477141e9d4bSMatthew Wilcox  */
478141e9d4bSMatthew Wilcox static void dmam_pool_release(struct device *dev, void *res)
479141e9d4bSMatthew Wilcox {
480141e9d4bSMatthew Wilcox 	struct dma_pool *pool = *(struct dma_pool **)res;
481141e9d4bSMatthew Wilcox 
482141e9d4bSMatthew Wilcox 	dma_pool_destroy(pool);
483141e9d4bSMatthew Wilcox }
484141e9d4bSMatthew Wilcox 
485141e9d4bSMatthew Wilcox static int dmam_pool_match(struct device *dev, void *res, void *match_data)
486141e9d4bSMatthew Wilcox {
487141e9d4bSMatthew Wilcox 	return *(struct dma_pool **)res == match_data;
488141e9d4bSMatthew Wilcox }
489141e9d4bSMatthew Wilcox 
490141e9d4bSMatthew Wilcox /**
491141e9d4bSMatthew Wilcox  * dmam_pool_create - Managed dma_pool_create()
492141e9d4bSMatthew Wilcox  * @name: name of pool, for diagnostics
493141e9d4bSMatthew Wilcox  * @dev: device that will be doing the DMA
494141e9d4bSMatthew Wilcox  * @size: size of the blocks in this pool.
495141e9d4bSMatthew Wilcox  * @align: alignment requirement for blocks; must be a power of two
496141e9d4bSMatthew Wilcox  * @allocation: returned blocks won't cross this boundary (or zero)
497141e9d4bSMatthew Wilcox  *
498141e9d4bSMatthew Wilcox  * Managed dma_pool_create().  DMA pool created with this function is
499141e9d4bSMatthew Wilcox  * automatically destroyed on driver detach.
500141e9d4bSMatthew Wilcox  */
501141e9d4bSMatthew Wilcox struct dma_pool *dmam_pool_create(const char *name, struct device *dev,
502141e9d4bSMatthew Wilcox 				  size_t size, size_t align, size_t allocation)
503141e9d4bSMatthew Wilcox {
504141e9d4bSMatthew Wilcox 	struct dma_pool **ptr, *pool;
505141e9d4bSMatthew Wilcox 
506141e9d4bSMatthew Wilcox 	ptr = devres_alloc(dmam_pool_release, sizeof(*ptr), GFP_KERNEL);
507141e9d4bSMatthew Wilcox 	if (!ptr)
508141e9d4bSMatthew Wilcox 		return NULL;
509141e9d4bSMatthew Wilcox 
510141e9d4bSMatthew Wilcox 	pool = *ptr = dma_pool_create(name, dev, size, align, allocation);
511141e9d4bSMatthew Wilcox 	if (pool)
512141e9d4bSMatthew Wilcox 		devres_add(dev, ptr);
513141e9d4bSMatthew Wilcox 	else
514141e9d4bSMatthew Wilcox 		devres_free(ptr);
515141e9d4bSMatthew Wilcox 
516141e9d4bSMatthew Wilcox 	return pool;
517141e9d4bSMatthew Wilcox }
518e87aa773SMatthew Wilcox EXPORT_SYMBOL(dmam_pool_create);
519141e9d4bSMatthew Wilcox 
520141e9d4bSMatthew Wilcox /**
521141e9d4bSMatthew Wilcox  * dmam_pool_destroy - Managed dma_pool_destroy()
522141e9d4bSMatthew Wilcox  * @pool: dma pool that will be destroyed
523141e9d4bSMatthew Wilcox  *
524141e9d4bSMatthew Wilcox  * Managed dma_pool_destroy().
525141e9d4bSMatthew Wilcox  */
526141e9d4bSMatthew Wilcox void dmam_pool_destroy(struct dma_pool *pool)
527141e9d4bSMatthew Wilcox {
528141e9d4bSMatthew Wilcox 	struct device *dev = pool->dev;
529141e9d4bSMatthew Wilcox 
530172cb4b3SAndy Shevchenko 	WARN_ON(devres_release(dev, dmam_pool_release, dmam_pool_match, pool));
531141e9d4bSMatthew Wilcox }
532141e9d4bSMatthew Wilcox EXPORT_SYMBOL(dmam_pool_destroy);
533