blob: b1c70f10c42bead0969800aa02392774fbda2529 [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 * This source code is licensed under the GNU General Public License,
8 * Version 2. See the file COPYING for more details.
9 */
10
Jes Sorensenf14f75b2005-06-21 17:15:02 -070011
Jean-Christophe PLAGNIOL-VILLARD6aae6e02011-05-24 17:13:33 -070012#ifndef __GENALLOC_H__
13#define __GENALLOC_H__
Jes Sorensenf14f75b2005-06-21 17:15:02 -070014/*
Dean Nelson929f9722006-06-23 02:03:21 -070015 * General purpose special memory pool descriptor.
Jes Sorensenf14f75b2005-06-21 17:15:02 -070016 */
17struct gen_pool {
Dean Nelson929f9722006-06-23 02:03:21 -070018 rwlock_t lock;
19 struct list_head chunks; /* list of chunks in this pool */
20 int min_alloc_order; /* minimum allocation order */
Jes Sorensenf14f75b2005-06-21 17:15:02 -070021};
22
Dean Nelson929f9722006-06-23 02:03:21 -070023/*
24 * General purpose special memory pool chunk descriptor.
25 */
26struct gen_pool_chunk {
27 spinlock_t lock;
28 struct list_head next_chunk; /* next chunk in pool */
29 unsigned long start_addr; /* starting address of memory chunk */
30 unsigned long end_addr; /* ending address of memory chunk */
31 unsigned long bits[0]; /* bitmap for allocating memory chunk */
32};
33
34extern struct gen_pool *gen_pool_create(int, int);
35extern int gen_pool_add(struct gen_pool *, unsigned long, size_t, int);
Steve Wise322acc92006-10-02 02:17:00 -070036extern void gen_pool_destroy(struct gen_pool *);
Dean Nelson929f9722006-06-23 02:03:21 -070037extern unsigned long gen_pool_alloc(struct gen_pool *, size_t);
38extern void gen_pool_free(struct gen_pool *, unsigned long, size_t);
Jean-Christophe PLAGNIOL-VILLARD6aae6e02011-05-24 17:13:33 -070039#endif /* __GENALLOC_H__ */