qdf_flex_mem.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /*
  2. * Copyright (c) 2018-2019 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. /**
  19. * DOC: qdf_flex_mem (flexibly sized memory allocator)
  20. * QCA driver framework (QDF) flex mem APIs
  21. *
  22. * A flex memory allocator is a memory pool which not only dynamically expands,
  23. * but also dynamically reduces as well. Benefits over full dynamic memory
  24. * allocation are amoritized allocation cost, and reduced memory fragmentation.
  25. *
  26. * The allocator consists of 3 parts: the pool, segments, and items. Items are
  27. * the smallest chuncks of memory that are handed out via the alloc call, and
  28. * are all of a uniform size. Segments are groups of items, representing the
  29. * smallest amount of memory that can be dynamically allocated or freed. A pool
  30. * is simply a collection of segments.
  31. */
  32. #ifndef __QDF_FLEX_MEM_H
  33. #define __QDF_FLEX_MEM_H
  34. #include "qdf_list.h"
  35. #include "qdf_lock.h"
  36. #define QDF_FM_BITMAP uint32_t
  37. #define QDF_FM_BITMAP_BITS (sizeof(QDF_FM_BITMAP) * 8)
  38. /**
  39. * qdf_flex_mem_pool - a pool of memory segments
  40. * @seg_list: the list containing the memory segments
  41. * @lock: spinlock for protecting internal data structures
  42. * @reduction_limit: the minimum number of segments to keep during reduction
  43. * @item_size: the size of the items the pool will allocate
  44. */
  45. struct qdf_flex_mem_pool {
  46. qdf_list_t seg_list;
  47. struct qdf_spinlock lock;
  48. uint16_t reduction_limit;
  49. uint16_t item_size;
  50. };
  51. /**
  52. * qdf_flex_mem_segment - a memory pool segment
  53. * @node: the list node for membership in the memory pool
  54. * @dynamic: true if this segment was dynamically allocated
  55. * @used_bitmap: bitmap for tracking which items in the segment are in use
  56. * @bytes: raw memory for allocating items from
  57. */
  58. struct qdf_flex_mem_segment {
  59. qdf_list_node_t node;
  60. bool dynamic;
  61. QDF_FM_BITMAP used_bitmap;
  62. uint8_t *bytes;
  63. };
  64. /**
  65. * DEFINE_QDF_FLEX_MEM_POOL() - define a new flex mem pool with one segment
  66. * @name: the name of the pool variable
  67. * @size_of_item: size of the items the pool will allocate
  68. * @rm_limit: min number of segments to keep during reduction
  69. */
  70. #define DEFINE_QDF_FLEX_MEM_POOL(name, size_of_item, rm_limit) \
  71. struct qdf_flex_mem_pool name; \
  72. uint8_t __ ## name ## _head_bytes[QDF_FM_BITMAP_BITS * (size_of_item)];\
  73. struct qdf_flex_mem_segment __ ## name ## _head = { \
  74. .node = QDF_LIST_NODE_INIT_SINGLE( \
  75. QDF_LIST_ANCHOR(name.seg_list)), \
  76. .bytes = __ ## name ## _head_bytes, \
  77. }; \
  78. struct qdf_flex_mem_pool name = { \
  79. .seg_list = QDF_LIST_INIT_SINGLE(__ ## name ## _head.node), \
  80. .reduction_limit = (rm_limit), \
  81. .item_size = (size_of_item), \
  82. }
  83. /**
  84. * qdf_flex_mem_init() - initialize a qdf_flex_mem_pool
  85. * @pool: the pool to initialize
  86. *
  87. * Return: None
  88. */
  89. void qdf_flex_mem_init(struct qdf_flex_mem_pool *pool);
  90. /**
  91. * qdf_flex_mem_deinit() - deinitialize a qdf_flex_mem_pool
  92. * @pool: the pool to deinitialize
  93. *
  94. * Return: None
  95. */
  96. void qdf_flex_mem_deinit(struct qdf_flex_mem_pool *pool);
  97. /**
  98. * qdf_flex_mem_alloc() - logically allocate memory from the pool
  99. * @pool: the pool to allocate from
  100. *
  101. * This function returns any unused item from any existing segment in the pool.
  102. * If there are no unused items in the pool, a new segment is dynamically
  103. * allocated to service the request. The size of the allocated memory is the
  104. * size originally used to create the pool.
  105. *
  106. * Return: Point to newly allocated memory, NULL on failure
  107. */
  108. void *qdf_flex_mem_alloc(struct qdf_flex_mem_pool *pool);
  109. /**
  110. * qdf_flex_mem_free() - logically frees @ptr from the pool
  111. * @pool: the pool to return the memory to
  112. * @ptr: a pointer received via a call to qdf_flex_mem_alloc()
  113. *
  114. * This function marks the item corresponding to @ptr as unused. If that item
  115. * was the last used item in the segment it belongs to, and the segment was
  116. * dynamically allocated, the segment will be freed.
  117. *
  118. * Return: None
  119. */
  120. void qdf_flex_mem_free(struct qdf_flex_mem_pool *pool, void *ptr);
  121. #endif /* __QDF_FLEX_MEM_H */