genalloc.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  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. *
  7. * This source code is licensed under the GNU General Public License,
  8. * Version 2. See the file COPYING for more details.
  9. */
  10. #ifndef __GENALLOC_H__
  11. #define __GENALLOC_H__
  12. /*
  13. * General purpose special memory pool descriptor.
  14. */
  15. struct gen_pool {
  16. rwlock_t lock;
  17. struct list_head chunks; /* list of chunks in this pool */
  18. int min_alloc_order; /* minimum allocation order */
  19. };
  20. /*
  21. * General purpose special memory pool chunk descriptor.
  22. */
  23. struct gen_pool_chunk {
  24. spinlock_t lock;
  25. struct list_head next_chunk; /* next chunk in pool */
  26. phys_addr_t phys_addr; /* physical starting address of memory chunk */
  27. unsigned long start_addr; /* starting address of memory chunk */
  28. unsigned long end_addr; /* ending address of memory chunk */
  29. unsigned long bits[0]; /* bitmap for allocating memory chunk */
  30. };
  31. extern struct gen_pool *gen_pool_create(int, int);
  32. extern phys_addr_t gen_pool_virt_to_phys(struct gen_pool *pool, unsigned long);
  33. extern int gen_pool_add_virt(struct gen_pool *, unsigned long, phys_addr_t,
  34. size_t, int);
  35. /**
  36. * gen_pool_add - add a new chunk of special memory to the pool
  37. * @pool: pool to add new memory chunk to
  38. * @addr: starting address of memory chunk to add to pool
  39. * @size: size in bytes of the memory chunk to add to pool
  40. * @nid: node id of the node the chunk structure and bitmap should be
  41. * allocated on, or -1
  42. *
  43. * Add a new chunk of special memory to the specified pool.
  44. *
  45. * Returns 0 on success or a -ve errno on failure.
  46. */
  47. static inline int gen_pool_add(struct gen_pool *pool, unsigned long addr,
  48. size_t size, int nid)
  49. {
  50. return gen_pool_add_virt(pool, addr, -1, size, nid);
  51. }
  52. extern void gen_pool_destroy(struct gen_pool *);
  53. extern unsigned long gen_pool_alloc(struct gen_pool *, size_t);
  54. extern void gen_pool_free(struct gen_pool *, unsigned long, size_t);
  55. #endif /* __GENALLOC_H__ */