2007-12-03 18:16:57 +01:00
|
|
|
/*
|
|
|
|
* DMA Pool allocator
|
|
|
|
*
|
|
|
|
* Copyright 2001 David Brownell
|
|
|
|
* Copyright 2007 Intel Corporation
|
|
|
|
* Author: Matthew Wilcox <willy@linux.intel.com>
|
|
|
|
*
|
|
|
|
* This software may be redistributed and/or modified under the terms of
|
|
|
|
* the GNU General Public License ("GPL") version 2 as published by the
|
|
|
|
* Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This allocator returns small blocks of a given size which are DMA-able by
|
|
|
|
* the given device. It uses the dma_alloc_coherent page allocator to get
|
|
|
|
* new pages, then splits them up into blocks of the required size.
|
|
|
|
* Many older drivers still have their own code to do this.
|
|
|
|
*
|
|
|
|
* The current design of this allocator is fairly simple. The pool is
|
|
|
|
* represented by the 'struct dma_pool' which keeps a doubly-linked list of
|
|
|
|
* allocated pages. Each page in the page_list is split into blocks of at
|
2007-12-03 20:08:28 +01:00
|
|
|
* least 'size' bytes. Free blocks are tracked in an unsorted singly-linked
|
|
|
|
* list of free blocks within the page. Used blocks aren't tracked, but we
|
|
|
|
* keep a count of how many are currently allocated from each page.
|
2007-12-03 18:16:57 +01:00
|
|
|
*/
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#include <linux/device.h>
|
|
|
|
#include <linux/dma-mapping.h>
|
|
|
|
#include <linux/dmapool.h>
|
2007-12-03 18:16:57 +01:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/list.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <linux/module.h>
|
2007-12-03 18:16:57 +01:00
|
|
|
#include <linux/mutex.h>
|
2006-06-27 11:53:52 +02:00
|
|
|
#include <linux/poison.h>
|
Detach sched.h from mm.h
First thing mm.h does is including sched.h solely for can_do_mlock() inline
function which has "current" dereference inside. By dealing with can_do_mlock()
mm.h can be detached from sched.h which is good. See below, why.
This patch
a) removes unconditional inclusion of sched.h from mm.h
b) makes can_do_mlock() normal function in mm/mlock.c
c) exports can_do_mlock() to not break compilation
d) adds sched.h inclusions back to files that were getting it indirectly.
e) adds less bloated headers to some files (asm/signal.h, jiffies.h) that were
getting them indirectly
Net result is:
a) mm.h users would get less code to open, read, preprocess, parse, ... if
they don't need sched.h
b) sched.h stops being dependency for significant number of files:
on x86_64 allmodconfig touching sched.h results in recompile of 4083 files,
after patch it's only 3744 (-8.3%).
Cross-compile tested on
all arm defconfigs, all mips defconfigs, all powerpc defconfigs,
alpha alpha-up
arm
i386 i386-up i386-defconfig i386-allnoconfig
ia64 ia64-up
m68k
mips
parisc parisc-up
powerpc powerpc-up
s390 s390-up
sparc sparc-up
sparc64 sparc64-up
um-x86_64
x86_64 x86_64-up x86_64-defconfig x86_64-allnoconfig
as well as my two usual configs.
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-05-20 23:22:52 +02:00
|
|
|
#include <linux/sched.h>
|
2007-12-03 18:16:57 +01:00
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/spinlock.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/wait.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-04-28 11:12:37 +02:00
|
|
|
#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_SLUB_DEBUG_ON)
|
|
|
|
#define DMAPOOL_DEBUG 1
|
|
|
|
#endif
|
|
|
|
|
2007-12-03 18:04:31 +01:00
|
|
|
struct dma_pool { /* the pool */
|
|
|
|
struct list_head page_list;
|
|
|
|
spinlock_t lock;
|
|
|
|
size_t size;
|
|
|
|
struct device *dev;
|
|
|
|
size_t allocation;
|
2007-12-03 20:16:24 +01:00
|
|
|
size_t boundary;
|
2007-12-03 18:04:31 +01:00
|
|
|
char name[32];
|
|
|
|
wait_queue_head_t waitq;
|
|
|
|
struct list_head pools;
|
2005-04-17 00:20:36 +02:00
|
|
|
};
|
|
|
|
|
2007-12-03 18:04:31 +01:00
|
|
|
struct dma_page { /* cacheable header for 'allocation' bytes */
|
|
|
|
struct list_head page_list;
|
|
|
|
void *vaddr;
|
|
|
|
dma_addr_t dma;
|
2007-12-03 20:08:28 +01:00
|
|
|
unsigned int in_use;
|
|
|
|
unsigned int offset;
|
2005-04-17 00:20:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#define POOL_TIMEOUT_JIFFIES ((100 /* msec */ * HZ) / 1000)
|
|
|
|
|
2007-12-03 18:04:31 +01:00
|
|
|
static DEFINE_MUTEX(pools_lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
static ssize_t
|
2007-12-03 18:04:31 +01:00
|
|
|
show_pools(struct device *dev, struct device_attribute *attr, char *buf)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
unsigned temp;
|
|
|
|
unsigned size;
|
|
|
|
char *next;
|
|
|
|
struct dma_page *page;
|
|
|
|
struct dma_pool *pool;
|
|
|
|
|
|
|
|
next = buf;
|
|
|
|
size = PAGE_SIZE;
|
|
|
|
|
|
|
|
temp = scnprintf(next, size, "poolinfo - 0.1\n");
|
|
|
|
size -= temp;
|
|
|
|
next += temp;
|
|
|
|
|
2007-04-24 22:45:25 +02:00
|
|
|
mutex_lock(&pools_lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
list_for_each_entry(pool, &dev->dma_pools, pools) {
|
|
|
|
unsigned pages = 0;
|
|
|
|
unsigned blocks = 0;
|
|
|
|
|
|
|
|
list_for_each_entry(page, &pool->page_list, page_list) {
|
|
|
|
pages++;
|
|
|
|
blocks += page->in_use;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* per-pool info, no real statistics yet */
|
|
|
|
temp = scnprintf(next, size, "%-16s %4u %4Zu %4Zu %2u\n",
|
2007-12-03 20:08:28 +01:00
|
|
|
pool->name, blocks,
|
|
|
|
pages * (pool->allocation / pool->size),
|
2007-12-03 18:04:31 +01:00
|
|
|
pool->size, pages);
|
2005-04-17 00:20:36 +02:00
|
|
|
size -= temp;
|
|
|
|
next += temp;
|
|
|
|
}
|
2007-04-24 22:45:25 +02:00
|
|
|
mutex_unlock(&pools_lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
return PAGE_SIZE - size;
|
|
|
|
}
|
2007-12-03 18:04:31 +01:00
|
|
|
|
|
|
|
static DEVICE_ATTR(pools, S_IRUGO, show_pools, NULL);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* dma_pool_create - Creates a pool of consistent memory blocks, for dma.
|
|
|
|
* @name: name of pool, for diagnostics
|
|
|
|
* @dev: device that will be doing the DMA
|
|
|
|
* @size: size of the blocks in this pool.
|
|
|
|
* @align: alignment requirement for blocks; must be a power of two
|
2007-12-03 20:16:24 +01:00
|
|
|
* @boundary: returned blocks won't cross this power of two boundary
|
2005-04-17 00:20:36 +02:00
|
|
|
* Context: !in_interrupt()
|
|
|
|
*
|
|
|
|
* Returns a dma allocation pool with the requested characteristics, or
|
|
|
|
* null if one can't be created. Given one of these pools, dma_pool_alloc()
|
|
|
|
* may be used to allocate memory. Such memory will all have "consistent"
|
|
|
|
* DMA mappings, accessible by the device and its driver without using
|
|
|
|
* cache flushing primitives. The actual size of blocks allocated may be
|
|
|
|
* larger than requested because of alignment.
|
|
|
|
*
|
2007-12-03 20:16:24 +01:00
|
|
|
* If @boundary is nonzero, objects returned from dma_pool_alloc() won't
|
2005-04-17 00:20:36 +02:00
|
|
|
* cross that size boundary. This is useful for devices which have
|
|
|
|
* addressing restrictions on individual DMA transfers, such as not crossing
|
|
|
|
* boundaries of 4KBytes.
|
|
|
|
*/
|
2007-12-03 18:04:31 +01:00
|
|
|
struct dma_pool *dma_pool_create(const char *name, struct device *dev,
|
2007-12-03 20:16:24 +01:00
|
|
|
size_t size, size_t align, size_t boundary)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-12-03 18:04:31 +01:00
|
|
|
struct dma_pool *retval;
|
2007-12-03 20:16:24 +01:00
|
|
|
size_t allocation;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-12-03 18:10:24 +01:00
|
|
|
if (align == 0) {
|
2005-04-17 00:20:36 +02:00
|
|
|
align = 1;
|
2007-12-03 18:10:24 +01:00
|
|
|
} else if (align & (align - 1)) {
|
2005-04-17 00:20:36 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-12-03 20:08:28 +01:00
|
|
|
if (size == 0) {
|
2007-12-03 18:10:24 +01:00
|
|
|
return NULL;
|
2007-12-03 20:08:28 +01:00
|
|
|
} else if (size < 4) {
|
|
|
|
size = 4;
|
|
|
|
}
|
2007-12-03 18:10:24 +01:00
|
|
|
|
|
|
|
if ((size % align) != 0)
|
|
|
|
size = ALIGN(size, align);
|
|
|
|
|
2007-12-03 20:16:24 +01:00
|
|
|
allocation = max_t(size_t, size, PAGE_SIZE);
|
|
|
|
|
|
|
|
if (!boundary) {
|
|
|
|
boundary = allocation;
|
|
|
|
} else if ((boundary < size) || (boundary & (boundary - 1))) {
|
2005-04-17 00:20:36 +02:00
|
|
|
return NULL;
|
2007-12-03 20:16:24 +01:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-12-03 20:16:24 +01:00
|
|
|
retval = kmalloc_node(sizeof(*retval), GFP_KERNEL, dev_to_node(dev));
|
|
|
|
if (!retval)
|
2005-04-17 00:20:36 +02:00
|
|
|
return retval;
|
|
|
|
|
2007-12-03 20:16:24 +01:00
|
|
|
strlcpy(retval->name, name, sizeof(retval->name));
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
retval->dev = dev;
|
|
|
|
|
2007-12-03 18:04:31 +01:00
|
|
|
INIT_LIST_HEAD(&retval->page_list);
|
|
|
|
spin_lock_init(&retval->lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
retval->size = size;
|
2007-12-03 20:16:24 +01:00
|
|
|
retval->boundary = boundary;
|
2005-04-17 00:20:36 +02:00
|
|
|
retval->allocation = allocation;
|
2007-12-03 18:04:31 +01:00
|
|
|
init_waitqueue_head(&retval->waitq);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
if (dev) {
|
2006-09-22 11:37:27 +02:00
|
|
|
int ret;
|
|
|
|
|
2007-04-24 22:45:25 +02:00
|
|
|
mutex_lock(&pools_lock);
|
2007-12-03 18:04:31 +01:00
|
|
|
if (list_empty(&dev->dma_pools))
|
|
|
|
ret = device_create_file(dev, &dev_attr_pools);
|
2006-09-22 11:37:27 +02:00
|
|
|
else
|
|
|
|
ret = 0;
|
2005-04-17 00:20:36 +02:00
|
|
|
/* note: not currently insisting "name" be unique */
|
2006-09-22 11:37:27 +02:00
|
|
|
if (!ret)
|
2007-12-03 18:04:31 +01:00
|
|
|
list_add(&retval->pools, &dev->dma_pools);
|
2006-09-22 11:37:27 +02:00
|
|
|
else {
|
|
|
|
kfree(retval);
|
|
|
|
retval = NULL;
|
|
|
|
}
|
2007-04-24 22:45:25 +02:00
|
|
|
mutex_unlock(&pools_lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
} else
|
2007-12-03 18:04:31 +01:00
|
|
|
INIT_LIST_HEAD(&retval->pools);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
2007-12-03 18:04:31 +01:00
|
|
|
EXPORT_SYMBOL(dma_pool_create);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-12-03 20:08:28 +01:00
|
|
|
static void pool_initialise_page(struct dma_pool *pool, struct dma_page *page)
|
|
|
|
{
|
|
|
|
unsigned int offset = 0;
|
2007-12-03 20:16:24 +01:00
|
|
|
unsigned int next_boundary = pool->boundary;
|
2007-12-03 20:08:28 +01:00
|
|
|
|
|
|
|
do {
|
|
|
|
unsigned int next = offset + pool->size;
|
2007-12-03 20:16:24 +01:00
|
|
|
if (unlikely((next + pool->size) >= next_boundary)) {
|
|
|
|
next = next_boundary;
|
|
|
|
next_boundary += pool->boundary;
|
|
|
|
}
|
2007-12-03 20:08:28 +01:00
|
|
|
*(int *)(page->vaddr + offset) = next;
|
|
|
|
offset = next;
|
|
|
|
} while (offset < pool->allocation);
|
|
|
|
}
|
|
|
|
|
2007-12-03 18:04:31 +01:00
|
|
|
static struct dma_page *pool_alloc_page(struct dma_pool *pool, gfp_t mem_flags)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-12-03 18:04:31 +01:00
|
|
|
struct dma_page *page;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-12-03 20:08:28 +01:00
|
|
|
page = kmalloc(sizeof(*page), mem_flags);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (!page)
|
|
|
|
return NULL;
|
2007-12-03 20:08:28 +01:00
|
|
|
page->vaddr = dma_alloc_coherent(pool->dev, pool->allocation,
|
2007-12-03 18:04:31 +01:00
|
|
|
&page->dma, mem_flags);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (page->vaddr) {
|
2008-04-28 11:12:37 +02:00
|
|
|
#ifdef DMAPOOL_DEBUG
|
2007-12-03 18:04:31 +01:00
|
|
|
memset(page->vaddr, POOL_POISON_FREED, pool->allocation);
|
2005-04-17 00:20:36 +02:00
|
|
|
#endif
|
2007-12-03 20:08:28 +01:00
|
|
|
pool_initialise_page(pool, page);
|
2007-12-03 18:04:31 +01:00
|
|
|
list_add(&page->page_list, &pool->page_list);
|
2005-04-17 00:20:36 +02:00
|
|
|
page->in_use = 0;
|
2007-12-03 20:08:28 +01:00
|
|
|
page->offset = 0;
|
2005-04-17 00:20:36 +02:00
|
|
|
} else {
|
2007-12-03 18:04:31 +01:00
|
|
|
kfree(page);
|
2005-04-17 00:20:36 +02:00
|
|
|
page = NULL;
|
|
|
|
}
|
|
|
|
return page;
|
|
|
|
}
|
|
|
|
|
2007-12-03 20:08:28 +01:00
|
|
|
static inline int is_page_busy(struct dma_page *page)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-12-03 20:08:28 +01:00
|
|
|
return page->in_use != 0;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2007-12-03 18:04:31 +01:00
|
|
|
static void pool_free_page(struct dma_pool *pool, struct dma_page *page)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-12-03 18:04:31 +01:00
|
|
|
dma_addr_t dma = page->dma;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-04-28 11:12:37 +02:00
|
|
|
#ifdef DMAPOOL_DEBUG
|
2007-12-03 18:04:31 +01:00
|
|
|
memset(page->vaddr, POOL_POISON_FREED, pool->allocation);
|
2005-04-17 00:20:36 +02:00
|
|
|
#endif
|
2007-12-03 18:04:31 +01:00
|
|
|
dma_free_coherent(pool->dev, pool->allocation, page->vaddr, dma);
|
|
|
|
list_del(&page->page_list);
|
|
|
|
kfree(page);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* dma_pool_destroy - destroys a pool of dma memory blocks.
|
|
|
|
* @pool: dma pool that will be destroyed
|
|
|
|
* Context: !in_interrupt()
|
|
|
|
*
|
|
|
|
* Caller guarantees that no more memory from the pool is in use,
|
|
|
|
* and that nothing will try to use the pool after this call.
|
|
|
|
*/
|
2007-12-03 18:04:31 +01:00
|
|
|
void dma_pool_destroy(struct dma_pool *pool)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-04-24 22:45:25 +02:00
|
|
|
mutex_lock(&pools_lock);
|
2007-12-03 18:04:31 +01:00
|
|
|
list_del(&pool->pools);
|
|
|
|
if (pool->dev && list_empty(&pool->dev->dma_pools))
|
|
|
|
device_remove_file(pool->dev, &dev_attr_pools);
|
2007-04-24 22:45:25 +02:00
|
|
|
mutex_unlock(&pools_lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-12-03 18:04:31 +01:00
|
|
|
while (!list_empty(&pool->page_list)) {
|
|
|
|
struct dma_page *page;
|
|
|
|
page = list_entry(pool->page_list.next,
|
|
|
|
struct dma_page, page_list);
|
2007-12-03 20:08:28 +01:00
|
|
|
if (is_page_busy(page)) {
|
2005-04-17 00:20:36 +02:00
|
|
|
if (pool->dev)
|
2007-12-03 18:04:31 +01:00
|
|
|
dev_err(pool->dev,
|
|
|
|
"dma_pool_destroy %s, %p busy\n",
|
2005-04-17 00:20:36 +02:00
|
|
|
pool->name, page->vaddr);
|
|
|
|
else
|
2007-12-03 18:04:31 +01:00
|
|
|
printk(KERN_ERR
|
|
|
|
"dma_pool_destroy %s, %p busy\n",
|
|
|
|
pool->name, page->vaddr);
|
2005-04-17 00:20:36 +02:00
|
|
|
/* leak the still-in-use consistent memory */
|
2007-12-03 18:04:31 +01:00
|
|
|
list_del(&page->page_list);
|
|
|
|
kfree(page);
|
2005-04-17 00:20:36 +02:00
|
|
|
} else
|
2007-12-03 18:04:31 +01:00
|
|
|
pool_free_page(pool, page);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2007-12-03 18:04:31 +01:00
|
|
|
kfree(pool);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2007-12-03 18:04:31 +01:00
|
|
|
EXPORT_SYMBOL(dma_pool_destroy);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* dma_pool_alloc - get a block of consistent memory
|
|
|
|
* @pool: dma pool that will produce the block
|
|
|
|
* @mem_flags: GFP_* bitmask
|
|
|
|
* @handle: pointer to dma address of block
|
|
|
|
*
|
|
|
|
* This returns the kernel virtual address of a currently unused block,
|
|
|
|
* and reports its dma address through the handle.
|
2007-12-03 18:16:57 +01:00
|
|
|
* If such a memory block can't be allocated, %NULL is returned.
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
2007-12-03 18:04:31 +01:00
|
|
|
void *dma_pool_alloc(struct dma_pool *pool, gfp_t mem_flags,
|
|
|
|
dma_addr_t *handle)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-12-03 18:04:31 +01:00
|
|
|
unsigned long flags;
|
|
|
|
struct dma_page *page;
|
|
|
|
size_t offset;
|
|
|
|
void *retval;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&pool->lock, flags);
|
2007-12-03 18:09:33 +01:00
|
|
|
restart:
|
2005-04-17 00:20:36 +02:00
|
|
|
list_for_each_entry(page, &pool->page_list, page_list) {
|
2007-12-03 20:08:28 +01:00
|
|
|
if (page->offset < pool->allocation)
|
|
|
|
goto ready;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2007-12-03 18:04:31 +01:00
|
|
|
page = pool_alloc_page(pool, GFP_ATOMIC);
|
|
|
|
if (!page) {
|
2005-04-17 00:20:36 +02:00
|
|
|
if (mem_flags & __GFP_WAIT) {
|
2007-12-03 18:04:31 +01:00
|
|
|
DECLARE_WAITQUEUE(wait, current);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-10-17 08:29:32 +02:00
|
|
|
__set_current_state(TASK_INTERRUPTIBLE);
|
2007-12-03 18:09:33 +01:00
|
|
|
__add_wait_queue(&pool->waitq, &wait);
|
2007-12-03 18:04:31 +01:00
|
|
|
spin_unlock_irqrestore(&pool->lock, flags);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-12-03 18:04:31 +01:00
|
|
|
schedule_timeout(POOL_TIMEOUT_JIFFIES);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-12-03 18:09:33 +01:00
|
|
|
spin_lock_irqsave(&pool->lock, flags);
|
|
|
|
__remove_wait_queue(&pool->waitq, &wait);
|
2005-04-17 00:20:36 +02:00
|
|
|
goto restart;
|
|
|
|
}
|
|
|
|
retval = NULL;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2007-12-03 18:04:31 +01:00
|
|
|
ready:
|
2005-04-17 00:20:36 +02:00
|
|
|
page->in_use++;
|
2007-12-03 20:08:28 +01:00
|
|
|
offset = page->offset;
|
|
|
|
page->offset = *(int *)(page->vaddr + offset);
|
2005-04-17 00:20:36 +02:00
|
|
|
retval = offset + page->vaddr;
|
|
|
|
*handle = offset + page->dma;
|
2008-04-28 11:12:37 +02:00
|
|
|
#ifdef DMAPOOL_DEBUG
|
2007-12-03 18:04:31 +01:00
|
|
|
memset(retval, POOL_POISON_ALLOCATED, pool->size);
|
2005-04-17 00:20:36 +02:00
|
|
|
#endif
|
2007-12-03 18:04:31 +01:00
|
|
|
done:
|
|
|
|
spin_unlock_irqrestore(&pool->lock, flags);
|
2005-04-17 00:20:36 +02:00
|
|
|
return retval;
|
|
|
|
}
|
2007-12-03 18:04:31 +01:00
|
|
|
EXPORT_SYMBOL(dma_pool_alloc);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-12-03 18:04:31 +01:00
|
|
|
static struct dma_page *pool_find_page(struct dma_pool *pool, dma_addr_t dma)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-12-03 18:04:31 +01:00
|
|
|
unsigned long flags;
|
|
|
|
struct dma_page *page;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-12-03 18:04:31 +01:00
|
|
|
spin_lock_irqsave(&pool->lock, flags);
|
2005-04-17 00:20:36 +02:00
|
|
|
list_for_each_entry(page, &pool->page_list, page_list) {
|
|
|
|
if (dma < page->dma)
|
|
|
|
continue;
|
|
|
|
if (dma < (page->dma + pool->allocation))
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
page = NULL;
|
2007-12-03 18:04:31 +01:00
|
|
|
done:
|
|
|
|
spin_unlock_irqrestore(&pool->lock, flags);
|
2005-04-17 00:20:36 +02:00
|
|
|
return page;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* dma_pool_free - put block back into dma pool
|
|
|
|
* @pool: the dma pool holding the block
|
|
|
|
* @vaddr: virtual address of block
|
|
|
|
* @dma: dma address of block
|
|
|
|
*
|
|
|
|
* Caller promises neither device nor driver will again touch this block
|
|
|
|
* unless it is first re-allocated.
|
|
|
|
*/
|
2007-12-03 18:04:31 +01:00
|
|
|
void dma_pool_free(struct dma_pool *pool, void *vaddr, dma_addr_t dma)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-12-03 18:04:31 +01:00
|
|
|
struct dma_page *page;
|
|
|
|
unsigned long flags;
|
2007-12-03 20:08:28 +01:00
|
|
|
unsigned int offset;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-12-03 18:04:31 +01:00
|
|
|
page = pool_find_page(pool, dma);
|
|
|
|
if (!page) {
|
2005-04-17 00:20:36 +02:00
|
|
|
if (pool->dev)
|
2007-12-03 18:04:31 +01:00
|
|
|
dev_err(pool->dev,
|
|
|
|
"dma_pool_free %s, %p/%lx (bad dma)\n",
|
|
|
|
pool->name, vaddr, (unsigned long)dma);
|
2005-04-17 00:20:36 +02:00
|
|
|
else
|
2007-12-03 18:04:31 +01:00
|
|
|
printk(KERN_ERR "dma_pool_free %s, %p/%lx (bad dma)\n",
|
|
|
|
pool->name, vaddr, (unsigned long)dma);
|
2005-04-17 00:20:36 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-12-03 20:08:28 +01:00
|
|
|
offset = vaddr - page->vaddr;
|
2008-04-28 11:12:37 +02:00
|
|
|
#ifdef DMAPOOL_DEBUG
|
2007-12-03 20:08:28 +01:00
|
|
|
if ((dma - page->dma) != offset) {
|
2005-04-17 00:20:36 +02:00
|
|
|
if (pool->dev)
|
2007-12-03 18:04:31 +01:00
|
|
|
dev_err(pool->dev,
|
|
|
|
"dma_pool_free %s, %p (bad vaddr)/%Lx\n",
|
|
|
|
pool->name, vaddr, (unsigned long long)dma);
|
2005-04-17 00:20:36 +02:00
|
|
|
else
|
2007-12-03 18:04:31 +01:00
|
|
|
printk(KERN_ERR
|
|
|
|
"dma_pool_free %s, %p (bad vaddr)/%Lx\n",
|
|
|
|
pool->name, vaddr, (unsigned long long)dma);
|
2005-04-17 00:20:36 +02:00
|
|
|
return;
|
|
|
|
}
|
2007-12-03 20:08:28 +01:00
|
|
|
{
|
|
|
|
unsigned int chain = page->offset;
|
|
|
|
while (chain < pool->allocation) {
|
|
|
|
if (chain != offset) {
|
|
|
|
chain = *(int *)(page->vaddr + chain);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (pool->dev)
|
|
|
|
dev_err(pool->dev, "dma_pool_free %s, dma %Lx "
|
|
|
|
"already free\n", pool->name,
|
|
|
|
(unsigned long long)dma);
|
|
|
|
else
|
|
|
|
printk(KERN_ERR "dma_pool_free %s, dma %Lx "
|
|
|
|
"already free\n", pool->name,
|
|
|
|
(unsigned long long)dma);
|
|
|
|
return;
|
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2007-12-03 18:04:31 +01:00
|
|
|
memset(vaddr, POOL_POISON_FREED, pool->size);
|
2005-04-17 00:20:36 +02:00
|
|
|
#endif
|
|
|
|
|
2007-12-03 18:04:31 +01:00
|
|
|
spin_lock_irqsave(&pool->lock, flags);
|
2005-04-17 00:20:36 +02:00
|
|
|
page->in_use--;
|
2007-12-03 20:08:28 +01:00
|
|
|
*(int *)vaddr = page->offset;
|
|
|
|
page->offset = offset;
|
2007-12-03 18:04:31 +01:00
|
|
|
if (waitqueue_active(&pool->waitq))
|
2007-12-03 18:09:33 +01:00
|
|
|
wake_up_locked(&pool->waitq);
|
2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* Resist a temptation to do
|
2007-12-03 20:08:28 +01:00
|
|
|
* if (!is_page_busy(page)) pool_free_page(pool, page);
|
2005-04-17 00:20:36 +02:00
|
|
|
* Better have a few empty pages hang around.
|
|
|
|
*/
|
2007-12-03 18:04:31 +01:00
|
|
|
spin_unlock_irqrestore(&pool->lock, flags);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2007-12-03 18:04:31 +01:00
|
|
|
EXPORT_SYMBOL(dma_pool_free);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
devres: device resource management
Implement device resource management, in short, devres. A device
driver can allocate arbirary size of devres data which is associated
with a release function. On driver detach, release function is
invoked on the devres data, then, devres data is freed.
devreses are typed by associated release functions. Some devreses are
better represented by single instance of the type while others need
multiple instances sharing the same release function. Both usages are
supported.
devreses can be grouped using devres group such that a device driver
can easily release acquired resources halfway through initialization
or selectively release resources (e.g. resources for port 1 out of 4
ports).
This patch adds devres core including documentation and the following
managed interfaces.
* alloc/free : devm_kzalloc(), devm_kzfree()
* IO region : devm_request_region(), devm_release_region()
* IRQ : devm_request_irq(), devm_free_irq()
* DMA : dmam_alloc_coherent(), dmam_free_coherent(),
dmam_declare_coherent_memory(), dmam_pool_create(),
dmam_pool_destroy()
* PCI : pcim_enable_device(), pcim_pin_device(), pci_is_managed()
* iomap : devm_ioport_map(), devm_ioport_unmap(), devm_ioremap(),
devm_ioremap_nocache(), devm_iounmap(), pcim_iomap_table(),
pcim_iomap(), pcim_iounmap()
Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
2007-01-20 08:00:26 +01:00
|
|
|
/*
|
|
|
|
* Managed DMA pool
|
|
|
|
*/
|
|
|
|
static void dmam_pool_release(struct device *dev, void *res)
|
|
|
|
{
|
|
|
|
struct dma_pool *pool = *(struct dma_pool **)res;
|
|
|
|
|
|
|
|
dma_pool_destroy(pool);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int dmam_pool_match(struct device *dev, void *res, void *match_data)
|
|
|
|
{
|
|
|
|
return *(struct dma_pool **)res == match_data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* dmam_pool_create - Managed dma_pool_create()
|
|
|
|
* @name: name of pool, for diagnostics
|
|
|
|
* @dev: device that will be doing the DMA
|
|
|
|
* @size: size of the blocks in this pool.
|
|
|
|
* @align: alignment requirement for blocks; must be a power of two
|
|
|
|
* @allocation: returned blocks won't cross this boundary (or zero)
|
|
|
|
*
|
|
|
|
* Managed dma_pool_create(). DMA pool created with this function is
|
|
|
|
* automatically destroyed on driver detach.
|
|
|
|
*/
|
|
|
|
struct dma_pool *dmam_pool_create(const char *name, struct device *dev,
|
|
|
|
size_t size, size_t align, size_t allocation)
|
|
|
|
{
|
|
|
|
struct dma_pool **ptr, *pool;
|
|
|
|
|
|
|
|
ptr = devres_alloc(dmam_pool_release, sizeof(*ptr), GFP_KERNEL);
|
|
|
|
if (!ptr)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
pool = *ptr = dma_pool_create(name, dev, size, align, allocation);
|
|
|
|
if (pool)
|
|
|
|
devres_add(dev, ptr);
|
|
|
|
else
|
|
|
|
devres_free(ptr);
|
|
|
|
|
|
|
|
return pool;
|
|
|
|
}
|
2007-12-03 18:04:31 +01:00
|
|
|
EXPORT_SYMBOL(dmam_pool_create);
|
devres: device resource management
Implement device resource management, in short, devres. A device
driver can allocate arbirary size of devres data which is associated
with a release function. On driver detach, release function is
invoked on the devres data, then, devres data is freed.
devreses are typed by associated release functions. Some devreses are
better represented by single instance of the type while others need
multiple instances sharing the same release function. Both usages are
supported.
devreses can be grouped using devres group such that a device driver
can easily release acquired resources halfway through initialization
or selectively release resources (e.g. resources for port 1 out of 4
ports).
This patch adds devres core including documentation and the following
managed interfaces.
* alloc/free : devm_kzalloc(), devm_kzfree()
* IO region : devm_request_region(), devm_release_region()
* IRQ : devm_request_irq(), devm_free_irq()
* DMA : dmam_alloc_coherent(), dmam_free_coherent(),
dmam_declare_coherent_memory(), dmam_pool_create(),
dmam_pool_destroy()
* PCI : pcim_enable_device(), pcim_pin_device(), pci_is_managed()
* iomap : devm_ioport_map(), devm_ioport_unmap(), devm_ioremap(),
devm_ioremap_nocache(), devm_iounmap(), pcim_iomap_table(),
pcim_iomap(), pcim_iounmap()
Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
2007-01-20 08:00:26 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* dmam_pool_destroy - Managed dma_pool_destroy()
|
|
|
|
* @pool: dma pool that will be destroyed
|
|
|
|
*
|
|
|
|
* Managed dma_pool_destroy().
|
|
|
|
*/
|
|
|
|
void dmam_pool_destroy(struct dma_pool *pool)
|
|
|
|
{
|
|
|
|
struct device *dev = pool->dev;
|
|
|
|
|
|
|
|
dma_pool_destroy(pool);
|
|
|
|
WARN_ON(devres_destroy(dev, dmam_pool_release, dmam_pool_match, pool));
|
|
|
|
}
|
2007-12-03 18:04:31 +01:00
|
|
|
EXPORT_SYMBOL(dmam_pool_destroy);
|