qdf_memory.h 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. /*
  2. * Copyright (c) 2014-2015 The Linux Foundation. All rights reserved.
  3. *
  4. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  5. *
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for
  8. * any purpose with or without fee is hereby granted, provided that the
  9. * above copyright notice and this permission notice appear in all
  10. * copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  13. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  15. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  16. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  17. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  18. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  19. * PERFORMANCE OF THIS SOFTWARE.
  20. */
  21. /*
  22. * This file was originally distributed by Qualcomm Atheros, Inc.
  23. * under proprietary terms before Copyright ownership was assigned
  24. * to the Linux Foundation.
  25. */
  26. #if !defined(__CDF_MEMORY_H)
  27. #define __CDF_MEMORY_H
  28. /**
  29. * DOC: cdf_memory
  30. *
  31. * Connectivity driver framework (CDF) memory management APIs
  32. */
  33. /* Include Files */
  34. #include <cdf_types.h>
  35. /**
  36. * struct cdf_mem_dma_page_t - Allocated dmaable page
  37. * @page_v_addr_start: Page start virtual address
  38. * @page_v_addr_end: Page end virtual address
  39. * @page_p_addr: Page start physical address
  40. */
  41. struct cdf_mem_dma_page_t {
  42. char *page_v_addr_start;
  43. char *page_v_addr_end;
  44. cdf_dma_addr_t page_p_addr;
  45. };
  46. /**
  47. * struct cdf_mem_multi_page_t - multiple page allocation information storage
  48. * @num_element_per_page: Number of element in single page
  49. * @num_pages: Number of allocation needed pages
  50. * @dma_pages: page information storage in case of coherent memory
  51. * @cacheable_pages: page information storage in case of cacheable memory
  52. */
  53. struct cdf_mem_multi_page_t {
  54. uint16_t num_element_per_page;
  55. uint16_t num_pages;
  56. struct cdf_mem_dma_page_t *dma_pages;
  57. void **cacheable_pages;
  58. };
  59. /* Preprocessor definitions and constants */
  60. #ifdef MEMORY_DEBUG
  61. void cdf_mem_clean(void);
  62. void cdf_mem_init(void);
  63. void cdf_mem_exit(void);
  64. #else
  65. /**
  66. * cdf_mem_init() - initialize cdf memory debug functionality
  67. *
  68. * Return: none
  69. */
  70. static inline void cdf_mem_init(void)
  71. {
  72. }
  73. /**
  74. * cdf_mem_exit() - exit cdf memory debug functionality
  75. *
  76. * Return: none
  77. */
  78. static inline void cdf_mem_exit(void)
  79. {
  80. }
  81. #endif
  82. /* Type declarations */
  83. /* Function declarations and documenation */
  84. /**
  85. * cdf_mem_malloc() - allocation CDF memory
  86. * @size: Number of bytes of memory to allocate.
  87. *
  88. * This function will dynamicallly allocate the specified number of bytes of
  89. * memory.
  90. *
  91. *
  92. * Return:
  93. * Upon successful allocate, returns a non-NULL pointer to the allocated
  94. * memory. If this function is unable to allocate the amount of memory
  95. * specified (for any reason) it returns %NULL.
  96. *
  97. */
  98. #ifdef MEMORY_DEBUG
  99. #define cdf_mem_malloc(size) cdf_mem_malloc_debug(size, __FILE__, __LINE__)
  100. void *cdf_mem_malloc_debug(size_t size, char *fileName, uint32_t lineNum);
  101. #else
  102. void *cdf_mem_malloc(size_t size);
  103. #endif
  104. /**
  105. * cdf_mem_free() - free CDF memory
  106. * @ptr: Pointer to the starting address of the memory to be free'd.
  107. *
  108. * This function will free the memory pointed to by 'ptr'.
  109. *
  110. * Return:
  111. * Nothing
  112. *
  113. */
  114. void cdf_mem_free(void *ptr);
  115. /**
  116. * cdf_mem_set() - set (fill) memory with a specified byte value.
  117. * @pMemory: Pointer to memory that will be set
  118. * @numBytes: Number of bytes to be set
  119. * @value: Byte set in memory
  120. *
  121. * Return:
  122. * Nothing
  123. *
  124. */
  125. void cdf_mem_set(void *ptr, uint32_t numBytes, uint32_t value);
  126. /**
  127. * cdf_mem_zero() - zero out memory
  128. * @pMemory: pointer to memory that will be set to zero
  129. * @numBytes: number of bytes zero
  130. * @value: byte set in memory
  131. *
  132. * This function sets the memory location to all zeros, essentially clearing
  133. * the memory.
  134. *
  135. * Return:
  136. * Nothing
  137. *
  138. */
  139. void cdf_mem_zero(void *ptr, uint32_t numBytes);
  140. /**
  141. * cdf_mem_copy() - copy memory
  142. * @pDst: Pointer to destination memory location (to copy to)
  143. * @pSrc: Pointer to source memory location (to copy from)
  144. * @numBytes: Number of bytes to copy.
  145. *
  146. * Copy host memory from one location to another, similar to memcpy in
  147. * standard C. Note this function does not specifically handle overlapping
  148. * source and destination memory locations. Calling this function with
  149. * overlapping source and destination memory locations will result in
  150. * unpredictable results. Use cdf_mem_move() if the memory locations
  151. * for the source and destination are overlapping (or could be overlapping!)
  152. *
  153. * Return:
  154. * Nothing
  155. *
  156. */
  157. void cdf_mem_copy(void *pDst, const void *pSrc, uint32_t numBytes);
  158. /**
  159. * cdf_mem_move() - move memory
  160. * @pDst: pointer to destination memory location (to move to)
  161. * @pSrc: pointer to source memory location (to move from)
  162. * @numBytes: number of bytes to move.
  163. *
  164. * Move host memory from one location to another, similar to memmove in
  165. * standard C. Note this function *does* handle overlapping
  166. * source and destination memory locations.
  167. * Return:
  168. * Nothing
  169. */
  170. void cdf_mem_move(void *pDst, const void *pSrc, uint32_t numBytes);
  171. /**
  172. * cdf_mem_compare() - memory compare
  173. * @pMemory1: pointer to one location in memory to compare.
  174. * @pMemory2: pointer to second location in memory to compare.
  175. * @numBytes: the number of bytes to compare.
  176. *
  177. * Function to compare two pieces of memory, similar to memcmp function
  178. * in standard C.
  179. *
  180. * Return:
  181. * bool - returns a bool value that tells if the memory locations
  182. * are equal or not equal.
  183. *
  184. */
  185. bool cdf_mem_compare(const void *pMemory1, const void *pMemory2,
  186. uint32_t numBytes);
  187. /**
  188. * cdf_mem_compare2() - memory compare
  189. * @pMemory1: pointer to one location in memory to compare.
  190. * @pMemory2: pointer to second location in memory to compare.
  191. * @numBytes: the number of bytes to compare.
  192. *
  193. * Function to compare two pieces of memory, similar to memcmp function
  194. * in standard C.
  195. * Return:
  196. * int32_t - returns a bool value that tells if the memory
  197. * locations are equal or not equal.
  198. * 0 -- equal
  199. * < 0 -- *pMemory1 is less than *pMemory2
  200. * > 0 -- *pMemory1 is bigger than *pMemory2
  201. */
  202. int32_t cdf_mem_compare2(const void *pMemory1, const void *pMemory2,
  203. uint32_t numBytes);
  204. void *cdf_os_mem_alloc_consistent(cdf_device_t osdev, cdf_size_t size,
  205. cdf_dma_addr_t *paddr,
  206. cdf_dma_context_t mctx);
  207. void
  208. cdf_os_mem_free_consistent(cdf_device_t osdev,
  209. cdf_size_t size,
  210. void *vaddr,
  211. cdf_dma_addr_t paddr, cdf_dma_context_t memctx);
  212. void
  213. cdf_os_mem_dma_sync_single_for_device(cdf_device_t osdev,
  214. cdf_dma_addr_t bus_addr,
  215. cdf_size_t size,
  216. enum dma_data_direction direction);
  217. /**
  218. * cdf_str_len() - returns the length of a string
  219. * @str: input string
  220. *
  221. * Return:
  222. * length of string
  223. */
  224. static inline int32_t cdf_str_len(const char *str)
  225. {
  226. return strlen(str);
  227. }
  228. void cdf_mem_multi_pages_alloc(cdf_device_t osdev,
  229. struct cdf_mem_multi_page_t *pages,
  230. size_t element_size,
  231. uint16_t element_num,
  232. cdf_dma_context_t memctxt,
  233. bool cacheable);
  234. void cdf_mem_multi_pages_free(cdf_device_t osdev,
  235. struct cdf_mem_multi_page_t *pages,
  236. cdf_dma_context_t memctxt,
  237. bool cacheable);
  238. #endif /* __CDF_MEMORY_H */