blob: 736c3b06398e522a7ad3d0ee846d77163436a334 [file] [log] [blame]
Jes Sorensenf14f75b2005-06-21 17:15:02 -07001/*
2 * Basic general purpose allocator for managing special purpose memory
3 * not managed by the regular kmalloc/kfree interface.
4 * Uses for this includes on-device special memory, uncached memory
5 * etc.
6 *
Jes Sorensenf14f75b2005-06-21 17:15:02 -07007 * Copyright 2005 (C) Jes Sorensen <jes@trained-monkey.org>
8 *
9 * This source code is licensed under the GNU General Public License,
10 * Version 2. See the file COPYING for more details.
11 */
12
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Jes Sorensenf14f75b2005-06-21 17:15:02 -070014#include <linux/module.h>
Akinobu Mita243797f2009-12-15 16:48:31 -080015#include <linux/bitmap.h>
Jes Sorensenf14f75b2005-06-21 17:15:02 -070016#include <linux/genalloc.h>
17
Jes Sorensenf14f75b2005-06-21 17:15:02 -070018
Dean Nelsona58cbd72006-10-02 02:17:01 -070019/**
20 * gen_pool_create - create a new special memory pool
Dean Nelson929f9722006-06-23 02:03:21 -070021 * @min_alloc_order: log base 2 of number of bytes each bitmap bit represents
22 * @nid: node id of the node the pool structure should be allocated on, or -1
Dean Nelsona58cbd72006-10-02 02:17:01 -070023 *
24 * Create a new special memory pool that can be used to manage special purpose
25 * memory not managed by the regular kmalloc/kfree interface.
Dean Nelson929f9722006-06-23 02:03:21 -070026 */
27struct gen_pool *gen_pool_create(int min_alloc_order, int nid)
Jes Sorensenf14f75b2005-06-21 17:15:02 -070028{
Dean Nelson929f9722006-06-23 02:03:21 -070029 struct gen_pool *pool;
Jes Sorensenf14f75b2005-06-21 17:15:02 -070030
Dean Nelson929f9722006-06-23 02:03:21 -070031 pool = kmalloc_node(sizeof(struct gen_pool), GFP_KERNEL, nid);
32 if (pool != NULL) {
33 rwlock_init(&pool->lock);
34 INIT_LIST_HEAD(&pool->chunks);
35 pool->min_alloc_order = min_alloc_order;
Jes Sorensenf14f75b2005-06-21 17:15:02 -070036 }
Dean Nelson929f9722006-06-23 02:03:21 -070037 return pool;
Jes Sorensenf14f75b2005-06-21 17:15:02 -070038}
39EXPORT_SYMBOL(gen_pool_create);
40
Dean Nelsona58cbd72006-10-02 02:17:01 -070041/**
42 * gen_pool_add - add a new chunk of special memory to the pool
Dean Nelson929f9722006-06-23 02:03:21 -070043 * @pool: pool to add new memory chunk to
44 * @addr: starting address of memory chunk to add to pool
45 * @size: size in bytes of the memory chunk to add to pool
46 * @nid: node id of the node the chunk structure and bitmap should be
47 * allocated on, or -1
Dean Nelsona58cbd72006-10-02 02:17:01 -070048 *
49 * Add a new chunk of special memory to the specified pool.
Jes Sorensenf14f75b2005-06-21 17:15:02 -070050 */
Dean Nelson929f9722006-06-23 02:03:21 -070051int gen_pool_add(struct gen_pool *pool, unsigned long addr, size_t size,
52 int nid)
Jes Sorensenf14f75b2005-06-21 17:15:02 -070053{
Dean Nelson929f9722006-06-23 02:03:21 -070054 struct gen_pool_chunk *chunk;
55 int nbits = size >> pool->min_alloc_order;
56 int nbytes = sizeof(struct gen_pool_chunk) +
57 (nbits + BITS_PER_BYTE - 1) / BITS_PER_BYTE;
Jes Sorensenf14f75b2005-06-21 17:15:02 -070058
Christoph Lameter94f60302007-07-17 04:03:29 -070059 chunk = kmalloc_node(nbytes, GFP_KERNEL | __GFP_ZERO, nid);
Dean Nelson929f9722006-06-23 02:03:21 -070060 if (unlikely(chunk == NULL))
61 return -1;
Jes Sorensenf14f75b2005-06-21 17:15:02 -070062
Dean Nelson929f9722006-06-23 02:03:21 -070063 spin_lock_init(&chunk->lock);
64 chunk->start_addr = addr;
65 chunk->end_addr = addr + size;
66
67 write_lock(&pool->lock);
68 list_add(&chunk->next_chunk, &pool->chunks);
69 write_unlock(&pool->lock);
70
71 return 0;
72}
73EXPORT_SYMBOL(gen_pool_add);
74
Dean Nelsona58cbd72006-10-02 02:17:01 -070075/**
76 * gen_pool_destroy - destroy a special memory pool
Steve Wise322acc92006-10-02 02:17:00 -070077 * @pool: pool to destroy
Dean Nelsona58cbd72006-10-02 02:17:01 -070078 *
79 * Destroy the specified special memory pool. Verifies that there are no
80 * outstanding allocations.
Steve Wise322acc92006-10-02 02:17:00 -070081 */
82void gen_pool_destroy(struct gen_pool *pool)
83{
84 struct list_head *_chunk, *_next_chunk;
85 struct gen_pool_chunk *chunk;
86 int order = pool->min_alloc_order;
87 int bit, end_bit;
88
89
Steve Wise322acc92006-10-02 02:17:00 -070090 list_for_each_safe(_chunk, _next_chunk, &pool->chunks) {
91 chunk = list_entry(_chunk, struct gen_pool_chunk, next_chunk);
92 list_del(&chunk->next_chunk);
93
94 end_bit = (chunk->end_addr - chunk->start_addr) >> order;
95 bit = find_next_bit(chunk->bits, end_bit, 0);
96 BUG_ON(bit < end_bit);
97
98 kfree(chunk);
99 }
100 kfree(pool);
101 return;
102}
103EXPORT_SYMBOL(gen_pool_destroy);
104
Dean Nelsona58cbd72006-10-02 02:17:01 -0700105/**
106 * gen_pool_alloc - allocate special memory from the pool
Dean Nelson929f9722006-06-23 02:03:21 -0700107 * @pool: pool to allocate from
108 * @size: number of bytes to allocate from the pool
Dean Nelsona58cbd72006-10-02 02:17:01 -0700109 *
110 * Allocate the requested number of bytes from the specified pool.
111 * Uses a first-fit algorithm.
Dean Nelson929f9722006-06-23 02:03:21 -0700112 */
113unsigned long gen_pool_alloc(struct gen_pool *pool, size_t size)
114{
115 struct list_head *_chunk;
116 struct gen_pool_chunk *chunk;
117 unsigned long addr, flags;
118 int order = pool->min_alloc_order;
Akinobu Mita243797f2009-12-15 16:48:31 -0800119 int nbits, start_bit, end_bit;
Dean Nelson929f9722006-06-23 02:03:21 -0700120
121 if (size == 0)
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700122 return 0;
123
Dean Nelson929f9722006-06-23 02:03:21 -0700124 nbits = (size + (1UL << order) - 1) >> order;
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700125
Dean Nelson929f9722006-06-23 02:03:21 -0700126 read_lock(&pool->lock);
127 list_for_each(_chunk, &pool->chunks) {
128 chunk = list_entry(_chunk, struct gen_pool_chunk, next_chunk);
129
130 end_bit = (chunk->end_addr - chunk->start_addr) >> order;
131 end_bit -= nbits + 1;
132
133 spin_lock_irqsave(&chunk->lock, flags);
Akinobu Mita243797f2009-12-15 16:48:31 -0800134 start_bit = bitmap_find_next_zero_area(chunk->bits, end_bit, 0,
135 nbits, 0);
136 if (start_bit >= end_bit) {
Dean Nelson929f9722006-06-23 02:03:21 -0700137 spin_unlock_irqrestore(&chunk->lock, flags);
Akinobu Mita243797f2009-12-15 16:48:31 -0800138 continue;
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700139 }
Akinobu Mita243797f2009-12-15 16:48:31 -0800140
141 addr = chunk->start_addr + ((unsigned long)start_bit << order);
142
143 bitmap_set(chunk->bits, start_bit, nbits);
Dean Nelson929f9722006-06-23 02:03:21 -0700144 spin_unlock_irqrestore(&chunk->lock, flags);
Akinobu Mita243797f2009-12-15 16:48:31 -0800145 read_unlock(&pool->lock);
146 return addr;
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700147 }
Dean Nelson929f9722006-06-23 02:03:21 -0700148 read_unlock(&pool->lock);
149 return 0;
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700150}
151EXPORT_SYMBOL(gen_pool_alloc);
152
Dean Nelsona58cbd72006-10-02 02:17:01 -0700153/**
154 * gen_pool_free - free allocated special memory back to the pool
Dean Nelson929f9722006-06-23 02:03:21 -0700155 * @pool: pool to free to
156 * @addr: starting address of memory to free back to pool
157 * @size: size in bytes of memory to free
Dean Nelsona58cbd72006-10-02 02:17:01 -0700158 *
159 * Free previously allocated special memory back to the specified pool.
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700160 */
Dean Nelson929f9722006-06-23 02:03:21 -0700161void gen_pool_free(struct gen_pool *pool, unsigned long addr, size_t size)
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700162{
Dean Nelson929f9722006-06-23 02:03:21 -0700163 struct list_head *_chunk;
164 struct gen_pool_chunk *chunk;
165 unsigned long flags;
166 int order = pool->min_alloc_order;
167 int bit, nbits;
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700168
Dean Nelson929f9722006-06-23 02:03:21 -0700169 nbits = (size + (1UL << order) - 1) >> order;
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700170
Dean Nelson929f9722006-06-23 02:03:21 -0700171 read_lock(&pool->lock);
172 list_for_each(_chunk, &pool->chunks) {
173 chunk = list_entry(_chunk, struct gen_pool_chunk, next_chunk);
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700174
Dean Nelson929f9722006-06-23 02:03:21 -0700175 if (addr >= chunk->start_addr && addr < chunk->end_addr) {
176 BUG_ON(addr + size > chunk->end_addr);
177 spin_lock_irqsave(&chunk->lock, flags);
178 bit = (addr - chunk->start_addr) >> order;
179 while (nbits--)
Andrew Morton96c62d52007-02-20 13:58:12 -0800180 __clear_bit(bit++, chunk->bits);
Dean Nelson929f9722006-06-23 02:03:21 -0700181 spin_unlock_irqrestore(&chunk->lock, flags);
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700182 break;
183 }
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700184 }
Dean Nelson929f9722006-06-23 02:03:21 -0700185 BUG_ON(nbits > 0);
186 read_unlock(&pool->lock);
Jes Sorensenf14f75b2005-06-21 17:15:02 -0700187}
188EXPORT_SYMBOL(gen_pool_free);