qdf_mem.h 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841
  1. /*
  2. * Copyright (c) 2014-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_mem
  20. * QCA driver framework (QDF) memory management APIs
  21. */
  22. #if !defined(__QDF_MEMORY_H)
  23. #define __QDF_MEMORY_H
  24. /* Include Files */
  25. #include <qdf_types.h>
  26. #include <i_qdf_mem.h>
  27. #include <i_qdf_trace.h>
  28. #define QDF_CACHE_LINE_SZ __qdf_cache_line_sz
  29. /**
  30. * qdf_align() - align to the given size.
  31. * @a: input that needs to be aligned.
  32. * @align_size: boundary on which 'a' has to be alinged.
  33. *
  34. * Return: aligned value.
  35. */
  36. #define qdf_align(a, align_size) __qdf_align(a, align_size)
  37. /**
  38. * struct qdf_mem_dma_page_t - Allocated dmaable page
  39. * @page_v_addr_start: Page start virtual address
  40. * @page_v_addr_end: Page end virtual address
  41. * @page_p_addr: Page start physical address
  42. */
  43. struct qdf_mem_dma_page_t {
  44. char *page_v_addr_start;
  45. char *page_v_addr_end;
  46. qdf_dma_addr_t page_p_addr;
  47. };
  48. /**
  49. * struct qdf_mem_multi_page_t - multiple page allocation information storage
  50. * @num_element_per_page: Number of element in single page
  51. * @num_pages: Number of allocation needed pages
  52. * @dma_pages: page information storage in case of coherent memory
  53. * @cacheable_pages: page information storage in case of cacheable memory
  54. */
  55. struct qdf_mem_multi_page_t {
  56. uint16_t num_element_per_page;
  57. uint16_t num_pages;
  58. struct qdf_mem_dma_page_t *dma_pages;
  59. void **cacheable_pages;
  60. };
  61. /* Preprocessor definitions and constants */
  62. typedef __qdf_mempool_t qdf_mempool_t;
  63. /**
  64. * qdf_mem_init() - Initialize QDF memory module
  65. *
  66. * Return: None
  67. *
  68. */
  69. void qdf_mem_init(void);
  70. /**
  71. * qdf_mem_exit() - Exit QDF memory module
  72. *
  73. * Return: None
  74. *
  75. */
  76. void qdf_mem_exit(void);
  77. #define QDF_MEM_FUNC_NAME_SIZE 48
  78. #ifdef MEMORY_DEBUG
  79. /**
  80. * qdf_mem_malloc_debug() - debug version of QDF memory allocation API
  81. * @size: Number of bytes of memory to allocate.
  82. * @func: Function name of the call site
  83. * @line: Line number of the call site
  84. * @caller: Address of the caller function
  85. * @flag: GFP flag
  86. *
  87. * This function will dynamicallly allocate the specified number of bytes of
  88. * memory and add it to the qdf tracking list to check for memory leaks and
  89. * corruptions
  90. *
  91. * Return: A valid memory location on success, or NULL on failure
  92. */
  93. void *qdf_mem_malloc_debug(size_t size, const char *func, uint32_t line,
  94. void *caller, uint32_t flag);
  95. #define qdf_mem_malloc(size) \
  96. qdf_mem_malloc_debug(size, __func__, __LINE__, QDF_RET_IP, 0)
  97. #define qdf_mem_malloc_fl(size, func, line) \
  98. qdf_mem_malloc_debug(size, func, line, QDF_RET_IP, 0)
  99. #define qdf_mem_malloc_atomic(size) \
  100. qdf_mem_malloc_debug(size, __func__, __LINE__, QDF_RET_IP, GFP_ATOMIC)
  101. /**
  102. * qdf_mem_free_debug() - debug version of qdf_mem_free
  103. * @ptr: Pointer to the starting address of the memory to be freed.
  104. *
  105. * This function will free the memory pointed to by 'ptr'. It also checks for
  106. * memory corruption, underrun, overrun, double free, domain mismatch, etc.
  107. *
  108. * Return: none
  109. */
  110. void qdf_mem_free_debug(void *ptr, const char *file, uint32_t line);
  111. #define qdf_mem_free(ptr) \
  112. qdf_mem_free_debug(ptr, __func__, __LINE__)
  113. void qdf_mem_multi_pages_alloc_debug(qdf_device_t osdev,
  114. struct qdf_mem_multi_page_t *pages,
  115. size_t element_size, uint16_t element_num,
  116. qdf_dma_context_t memctxt, bool cacheable,
  117. const char *func, uint32_t line,
  118. void *caller);
  119. #define qdf_mem_multi_pages_alloc(osdev, pages, element_size, element_num,\
  120. memctxt, cacheable) \
  121. qdf_mem_multi_pages_alloc_debug(osdev, pages, element_size, \
  122. element_num, memctxt, cacheable, \
  123. __func__, __LINE__, QDF_RET_IP)
  124. void qdf_mem_multi_pages_free_debug(qdf_device_t osdev,
  125. struct qdf_mem_multi_page_t *pages,
  126. qdf_dma_context_t memctxt, bool cacheable,
  127. const char *func, uint32_t line);
  128. #define qdf_mem_multi_pages_free(osdev, pages, memctxt, cacheable) \
  129. qdf_mem_multi_pages_free_debug(osdev, pages, memctxt, cacheable, \
  130. __func__, __LINE__)
  131. /**
  132. * qdf_mem_check_for_leaks() - Assert that the current memory domain is empty
  133. *
  134. * Call this to ensure there are no active memory allocations being tracked
  135. * against the current debug domain. For example, one should call this function
  136. * immediately before a call to qdf_debug_domain_set() as a memory leak
  137. * detection mechanism.
  138. *
  139. * e.g.
  140. * qdf_debug_domain_set(QDF_DEBUG_DOMAIN_ACTIVE);
  141. *
  142. * ...
  143. *
  144. * // memory is allocated and freed
  145. *
  146. * ...
  147. *
  148. * // before transitioning back to inactive state,
  149. * // make sure all active memory has been freed
  150. * qdf_mem_check_for_leaks();
  151. * qdf_debug_domain_set(QDF_DEBUG_DOMAIN_INIT);
  152. *
  153. * ...
  154. *
  155. * // also, before program exit, make sure init time memory is freed
  156. * qdf_mem_check_for_leaks();
  157. * exit();
  158. *
  159. * Return: None
  160. */
  161. void qdf_mem_check_for_leaks(void);
  162. /**
  163. * qdf_mem_alloc_consistent_debug() - allocates consistent qdf memory
  164. * @osdev: OS device handle
  165. * @dev: Pointer to device handle
  166. * @size: Size to be allocated
  167. * @paddr: Physical address
  168. * @func: Function name of the call site
  169. * @line: line numbe rof the call site
  170. * @caller: Address of the caller function
  171. *
  172. * Return: pointer of allocated memory or null if memory alloc fails
  173. */
  174. void *qdf_mem_alloc_consistent_debug(qdf_device_t osdev, void *dev,
  175. qdf_size_t size, qdf_dma_addr_t *paddr,
  176. const char *func, uint32_t line,
  177. void *caller);
  178. #define qdf_mem_alloc_consistent(osdev, dev, size, paddr) \
  179. qdf_mem_alloc_consistent_debug(osdev, dev, size, paddr, \
  180. __func__, __LINE__, QDF_RET_IP)
  181. /**
  182. * qdf_mem_free_consistent_debug() - free consistent qdf memory
  183. * @osdev: OS device handle
  184. * @size: Size to be allocated
  185. * @vaddr: virtual address
  186. * @paddr: Physical address
  187. * @memctx: Pointer to DMA context
  188. * @func: Function name of the call site
  189. * @line: line numbe rof the call site
  190. *
  191. * Return: none
  192. */
  193. void qdf_mem_free_consistent_debug(qdf_device_t osdev, void *dev,
  194. qdf_size_t size, void *vaddr,
  195. qdf_dma_addr_t paddr,
  196. qdf_dma_context_t memctx,
  197. const char *func, uint32_t line);
  198. #define qdf_mem_free_consistent(osdev, dev, size, vaddr, paddr, memctx) \
  199. qdf_mem_free_consistent_debug(osdev, dev, size, vaddr, paddr, memctx, \
  200. __func__, __LINE__)
  201. #else
  202. /**
  203. * qdf_mem_malloc() - allocation QDF memory
  204. * @size: Number of bytes of memory to allocate.
  205. *
  206. * This function will dynamicallly allocate the specified number of bytes of
  207. * memory.
  208. *
  209. * Return:
  210. * Upon successful allocate, returns a non-NULL pointer to the allocated
  211. * memory. If this function is unable to allocate the amount of memory
  212. * specified (for any reason) it returns NULL.
  213. */
  214. #define qdf_mem_malloc(size) \
  215. qdf_mem_malloc_fl(size, __func__, __LINE__)
  216. void *qdf_mem_malloc_fl(qdf_size_t size, const char *func, uint32_t line);
  217. /**
  218. * qdf_mem_malloc_atomic() - allocation QDF memory atomically
  219. * @size: Number of bytes of memory to allocate.
  220. *
  221. * This function will dynamicallly allocate the specified number of bytes of
  222. * memory.
  223. *
  224. * Return:
  225. * Upon successful allocate, returns a non-NULL pointer to the allocated
  226. * memory. If this function is unable to allocate the amount of memory
  227. * specified (for any reason) it returns NULL.
  228. */
  229. #define qdf_mem_malloc_atomic(size) \
  230. qdf_mem_malloc_atomic_fl(size, __func__, __LINE__)
  231. void *qdf_mem_malloc_atomic_fl(qdf_size_t size,
  232. const char *func,
  233. uint32_t line);
  234. /**
  235. * qdf_mem_free() - free QDF memory
  236. * @ptr: Pointer to the starting address of the memory to be freed.
  237. *
  238. * Return: None
  239. */
  240. void qdf_mem_free(void *ptr);
  241. static inline void qdf_mem_check_for_leaks(void) { }
  242. void *qdf_mem_alloc_consistent(qdf_device_t osdev, void *dev,
  243. qdf_size_t size, qdf_dma_addr_t *paddr);
  244. void qdf_mem_free_consistent(qdf_device_t osdev, void *dev,
  245. qdf_size_t size, void *vaddr,
  246. qdf_dma_addr_t paddr, qdf_dma_context_t memctx);
  247. void qdf_mem_multi_pages_alloc(qdf_device_t osdev,
  248. struct qdf_mem_multi_page_t *pages,
  249. size_t element_size, uint16_t element_num,
  250. qdf_dma_context_t memctxt, bool cacheable);
  251. void qdf_mem_multi_pages_free(qdf_device_t osdev,
  252. struct qdf_mem_multi_page_t *pages,
  253. qdf_dma_context_t memctxt, bool cacheable);
  254. #endif /* MEMORY_DEBUG */
  255. /**
  256. * qdf_aligned_malloc() - allocates aligned QDF memory.
  257. * @size: Size to be allocated
  258. * @vaddr_unaligned: Unaligned virtual address.
  259. * @paddr_unaligned: Unaligned physical address.
  260. * @paddr_aligned: Aligned physical address.
  261. * @align: Base address alignment.
  262. * @func: Function name of the call site.
  263. * @line: Line number of the call site.
  264. *
  265. * This function will dynamically allocate the specified number of bytes of
  266. * memory. Checks if the allocated base address is aligned with base_align.
  267. * If not, it frees the allocated memory, adds base_align to alloc size and
  268. * re-allocates the memory.
  269. *
  270. * Return:
  271. * Upon successful allocate, returns an aligned base address of the allocated
  272. * memory. If this function is unable to allocate the amount of memory
  273. * specified (for any reason) it returns NULL.
  274. */
  275. #define qdf_aligned_malloc(size, vaddr_unaligned, paddr_unaligned, \
  276. paddr_aligned, align) \
  277. qdf_aligned_malloc_fl(size, vaddr_unaligned, paddr_unaligned, \
  278. paddr_aligned, align, __func__, __LINE__)
  279. void *qdf_aligned_malloc_fl(uint32_t *size, void **vaddr_unaligned,
  280. qdf_dma_addr_t *paddr_unaligned,
  281. qdf_dma_addr_t *paddr_aligned,
  282. uint32_t align,
  283. const char *func, uint32_t line);
  284. /**
  285. * qdf_aligned_mem_alloc_consistent() - allocates consistent qdf memory
  286. * @osdev: OS device handle
  287. * @size: Size to be allocated
  288. * @vaddr_unaligned: Unaligned virtual address.
  289. * @paddr_unaligned: Unaligned physical address.
  290. * @paddr_aligned: Aligned physical address.
  291. * @align: Base address alignment.
  292. * @func: Function name of the call site.
  293. * @line: Line number of the call site.
  294. *
  295. * Return: pointer of allocated memory or null if memory alloc fails.
  296. */
  297. #define qdf_aligned_mem_alloc_consistent(osdev, size, vaddr_unaligned, \
  298. paddr_unaligned, paddr_aligned, \
  299. align) \
  300. qdf_aligned_mem_alloc_consistent_fl(osdev, size, vaddr_unaligned, \
  301. paddr_unaligned, paddr_aligned, \
  302. align, __func__, __LINE__)
  303. void *qdf_aligned_mem_alloc_consistent_fl(qdf_device_t osdev, uint32_t *size,
  304. void **vaddr_unaligned,
  305. qdf_dma_addr_t *paddr_unaligned,
  306. qdf_dma_addr_t *paddr_aligned,
  307. uint32_t align, const char *func,
  308. uint32_t line);
  309. #define qdf_mem_virt_to_phys(vaddr) virt_to_phys(vaddr)
  310. void qdf_mem_set_io(void *ptr, uint32_t num_bytes, uint32_t value);
  311. void qdf_mem_copy_toio(void *dst_addr, const void *src_addr,
  312. uint32_t num_bytes);
  313. /**
  314. * qdf_mem_set() - set (fill) memory with a specified byte value.
  315. * @ptr: Pointer to memory that will be set
  316. * @num_bytes: Number of bytes to be set
  317. * @value: Byte set in memory
  318. *
  319. * WARNING: parameter @num_bytes and @value are swapped comparing with
  320. * standard C function "memset", please ensure correct usage of this function!
  321. *
  322. * Return: None
  323. */
  324. void qdf_mem_set(void *ptr, uint32_t num_bytes, uint32_t value);
  325. /**
  326. * qdf_mem_zero() - zero out memory
  327. * @ptr: pointer to memory that will be set to zero
  328. * @num_bytes: number of bytes zero
  329. *
  330. * This function sets the memory location to all zeros, essentially clearing
  331. * the memory.
  332. *
  333. * Return: None
  334. */
  335. static inline void qdf_mem_zero(void *ptr, uint32_t num_bytes)
  336. {
  337. qdf_mem_set(ptr, num_bytes, 0);
  338. }
  339. /**
  340. * qdf_mem_copy() - copy memory
  341. * @dst_addr: Pointer to destination memory location (to copy to)
  342. * @src_addr: Pointer to source memory location (to copy from)
  343. * @num_bytes: Number of bytes to copy.
  344. *
  345. * Copy host memory from one location to another, similar to memcpy in
  346. * standard C. Note this function does not specifically handle overlapping
  347. * source and destination memory locations. Calling this function with
  348. * overlapping source and destination memory locations will result in
  349. * unpredictable results. Use qdf_mem_move() if the memory locations
  350. * for the source and destination are overlapping (or could be overlapping!)
  351. *
  352. * Return: none
  353. */
  354. void qdf_mem_copy(void *dst_addr, const void *src_addr, uint32_t num_bytes);
  355. /**
  356. * qdf_mem_move() - move memory
  357. * @dst_addr: pointer to destination memory location (to move to)
  358. * @src_addr: pointer to source memory location (to move from)
  359. * @num_bytes: number of bytes to move.
  360. *
  361. * Move host memory from one location to another, similar to memmove in
  362. * standard C. Note this function *does* handle overlapping
  363. * source and destination memory locations.
  364. * Return: None
  365. */
  366. void qdf_mem_move(void *dst_addr, const void *src_addr, uint32_t num_bytes);
  367. /**
  368. * qdf_mem_cmp() - memory compare
  369. * @left: pointer to one location in memory to compare
  370. * @right: pointer to second location in memory to compare
  371. * @size: the number of bytes to compare
  372. *
  373. * Function to compare two pieces of memory, similar to memcmp function
  374. * in standard C.
  375. *
  376. * Return:
  377. * 0 -- equal
  378. * < 0 -- *memory1 is less than *memory2
  379. * > 0 -- *memory1 is bigger than *memory2
  380. */
  381. int qdf_mem_cmp(const void *left, const void *right, size_t size);
  382. void qdf_ether_addr_copy(void *dst_addr, const void *src_addr);
  383. /**
  384. * qdf_mem_map_nbytes_single - Map memory for DMA
  385. * @osdev: pomter OS device context
  386. * @buf: pointer to memory to be dma mapped
  387. * @dir: DMA map direction
  388. * @nbytes: number of bytes to be mapped.
  389. * @phy_addr: ponter to recive physical address.
  390. *
  391. * Return: success/failure
  392. */
  393. static inline uint32_t qdf_mem_map_nbytes_single(qdf_device_t osdev, void *buf,
  394. qdf_dma_dir_t dir, int nbytes,
  395. qdf_dma_addr_t *phy_addr)
  396. {
  397. #if defined(HIF_PCI)
  398. return __qdf_mem_map_nbytes_single(osdev, buf, dir, nbytes, phy_addr);
  399. #else
  400. return 0;
  401. #endif
  402. }
  403. static inline void qdf_mem_dma_cache_sync(qdf_device_t osdev,
  404. qdf_dma_addr_t buf,
  405. qdf_dma_dir_t dir,
  406. int nbytes)
  407. {
  408. __qdf_mem_dma_cache_sync(osdev, buf, dir, nbytes);
  409. }
  410. /**
  411. * qdf_mem_unmap_nbytes_single() - un_map memory for DMA
  412. * @osdev: pomter OS device context
  413. * @phy_addr: physical address of memory to be dma unmapped
  414. * @dir: DMA unmap direction
  415. * @nbytes: number of bytes to be unmapped.
  416. *
  417. * Return: none
  418. */
  419. static inline void qdf_mem_unmap_nbytes_single(qdf_device_t osdev,
  420. qdf_dma_addr_t phy_addr,
  421. qdf_dma_dir_t dir,
  422. int nbytes)
  423. {
  424. #if defined(HIF_PCI)
  425. __qdf_mem_unmap_nbytes_single(osdev, phy_addr, dir, nbytes);
  426. #endif
  427. }
  428. /**
  429. * qdf_mempool_init - Create and initialize memory pool
  430. * @osdev: platform device object
  431. * @pool_addr: address of the pool created
  432. * @elem_cnt: no. of elements in pool
  433. * @elem_size: size of each pool element in bytes
  434. * @flags: flags
  435. * Return: Handle to memory pool or NULL if allocation failed
  436. */
  437. static inline int qdf_mempool_init(qdf_device_t osdev,
  438. qdf_mempool_t *pool_addr, int elem_cnt,
  439. size_t elem_size, uint32_t flags)
  440. {
  441. return __qdf_mempool_init(osdev, pool_addr, elem_cnt, elem_size,
  442. flags);
  443. }
  444. /**
  445. * qdf_mempool_destroy - Destroy memory pool
  446. * @osdev: platform device object
  447. * @Handle: to memory pool
  448. * Return: none
  449. */
  450. static inline void qdf_mempool_destroy(qdf_device_t osdev, qdf_mempool_t pool)
  451. {
  452. __qdf_mempool_destroy(osdev, pool);
  453. }
  454. /**
  455. * qdf_mempool_alloc - Allocate an element memory pool
  456. * @osdev: platform device object
  457. * @Handle: to memory pool
  458. * Return: Pointer to the allocated element or NULL if the pool is empty
  459. */
  460. static inline void *qdf_mempool_alloc(qdf_device_t osdev, qdf_mempool_t pool)
  461. {
  462. return (void *)__qdf_mempool_alloc(osdev, pool);
  463. }
  464. /**
  465. * qdf_mempool_free - Free a memory pool element
  466. * @osdev: Platform device object
  467. * @pool: Handle to memory pool
  468. * @buf: Element to be freed
  469. * Return: none
  470. */
  471. static inline void qdf_mempool_free(qdf_device_t osdev, qdf_mempool_t pool,
  472. void *buf)
  473. {
  474. __qdf_mempool_free(osdev, pool, buf);
  475. }
  476. void qdf_mem_dma_sync_single_for_device(qdf_device_t osdev,
  477. qdf_dma_addr_t bus_addr,
  478. qdf_size_t size,
  479. __dma_data_direction direction);
  480. void qdf_mem_dma_sync_single_for_cpu(qdf_device_t osdev,
  481. qdf_dma_addr_t bus_addr,
  482. qdf_size_t size,
  483. __dma_data_direction direction);
  484. int qdf_mem_multi_page_link(qdf_device_t osdev,
  485. struct qdf_mem_multi_page_t *pages,
  486. uint32_t elem_size, uint32_t elem_count, uint8_t cacheable);
  487. #ifdef WLAN_DEBUGFS
  488. /**
  489. * qdf_mem_kmalloc_inc() - increment kmalloc allocated bytes count
  490. * @size: number of bytes to increment by
  491. *
  492. * Return: None
  493. */
  494. void qdf_mem_kmalloc_inc(qdf_size_t size);
  495. /**
  496. * qdf_mem_kmalloc_dec() - decrement kmalloc allocated bytes count
  497. * @size: number of bytes to decrement by
  498. *
  499. * Return: None
  500. */
  501. void qdf_mem_kmalloc_dec(qdf_size_t size);
  502. #else
  503. static inline void qdf_mem_kmalloc_inc(qdf_size_t size) { }
  504. static inline void qdf_mem_kmalloc_dec(qdf_size_t size) { }
  505. #endif /* WLAN_DEBUGFS */
  506. /**
  507. * qdf_mem_skb_inc() - increment total skb allocation size
  508. * @size: size to be added
  509. *
  510. * Return: none
  511. */
  512. void qdf_mem_skb_inc(qdf_size_t size);
  513. /**
  514. * qdf_mem_skb_dec() - decrement total skb allocation size
  515. * @size: size to be decremented
  516. *
  517. * Return: none
  518. */
  519. void qdf_mem_skb_dec(qdf_size_t size);
  520. /**
  521. * qdf_mem_map_table_alloc() - Allocate shared memory info structure
  522. * @num: number of required storage
  523. *
  524. * Allocate mapping table for DMA memory allocation. This is needed for
  525. * IPA-WLAN buffer sharing when SMMU Stage1 Translation is enabled.
  526. *
  527. * Return: shared memory info storage table pointer
  528. */
  529. static inline qdf_mem_info_t *qdf_mem_map_table_alloc(uint32_t num)
  530. {
  531. qdf_mem_info_t *mem_info_arr;
  532. mem_info_arr = qdf_mem_malloc(num * sizeof(mem_info_arr[0]));
  533. return mem_info_arr;
  534. }
  535. /**
  536. * qdf_update_mem_map_table() - Update DMA memory map info
  537. * @osdev: Parent device instance
  538. * @mem_info: Pointer to shared memory information
  539. * @dma_addr: dma address
  540. * @mem_size: memory size allocated
  541. *
  542. * Store DMA shared memory information
  543. *
  544. * Return: none
  545. */
  546. static inline void qdf_update_mem_map_table(qdf_device_t osdev,
  547. qdf_mem_info_t *mem_info,
  548. qdf_dma_addr_t dma_addr,
  549. uint32_t mem_size)
  550. {
  551. if (!mem_info) {
  552. qdf_nofl_err("%s: NULL mem_info", __func__);
  553. return;
  554. }
  555. __qdf_update_mem_map_table(osdev, mem_info, dma_addr, mem_size);
  556. }
  557. /**
  558. * qdf_mem_smmu_s1_enabled() - Return SMMU stage 1 translation enable status
  559. * @osdev parent device instance
  560. *
  561. * Return: true if smmu s1 enabled, false if smmu s1 is bypassed
  562. */
  563. static inline bool qdf_mem_smmu_s1_enabled(qdf_device_t osdev)
  564. {
  565. return __qdf_mem_smmu_s1_enabled(osdev);
  566. }
  567. /**
  568. * qdf_mem_paddr_from_dmaaddr() - get actual physical address from dma address
  569. * @osdev: Parent device instance
  570. * @dma_addr: DMA/IOVA address
  571. *
  572. * Get actual physical address from dma_addr based on SMMU enablement status.
  573. * IF SMMU Stage 1 tranlation is enabled, DMA APIs return IO virtual address
  574. * (IOVA) otherwise returns physical address. So get SMMU physical address
  575. * mapping from IOVA.
  576. *
  577. * Return: dmaable physical address
  578. */
  579. static inline qdf_dma_addr_t qdf_mem_paddr_from_dmaaddr(qdf_device_t osdev,
  580. qdf_dma_addr_t dma_addr)
  581. {
  582. return __qdf_mem_paddr_from_dmaaddr(osdev, dma_addr);
  583. }
  584. /**
  585. * qdf_mem_dma_get_sgtable() - Returns DMA memory scatter gather table
  586. * @dev: device instace
  587. * @sgt: scatter gather table pointer
  588. * @cpu_addr: HLOS virtual address
  589. * @dma_addr: dma address
  590. * @size: allocated memory size
  591. *
  592. * Return: physical address
  593. */
  594. static inline int
  595. qdf_mem_dma_get_sgtable(struct device *dev, void *sgt, void *cpu_addr,
  596. qdf_dma_addr_t dma_addr, size_t size)
  597. {
  598. return __qdf_os_mem_dma_get_sgtable(dev, sgt, cpu_addr, dma_addr, size);
  599. }
  600. /**
  601. * qdf_mem_free_sgtable() - Free a previously allocated sg table
  602. * @sgt: the mapped sg table header
  603. *
  604. * Return: None
  605. */
  606. static inline void
  607. qdf_mem_free_sgtable(struct sg_table *sgt)
  608. {
  609. __qdf_os_mem_free_sgtable(sgt);
  610. }
  611. /**
  612. * qdf_dma_get_sgtable_dma_addr() - Assigns DMA address to scatterlist elements
  613. * @sgt: scatter gather table pointer
  614. *
  615. * Return: None
  616. */
  617. static inline void
  618. qdf_dma_get_sgtable_dma_addr(struct sg_table *sgt)
  619. {
  620. __qdf_dma_get_sgtable_dma_addr(sgt);
  621. }
  622. /**
  623. * qdf_mem_get_dma_addr() - Return dma address based on SMMU translation status.
  624. * @osdev: Parent device instance
  625. * @mem_info: Pointer to allocated memory information
  626. *
  627. * Get dma address based on SMMU enablement status. If SMMU Stage 1
  628. * tranlation is enabled, DMA APIs return IO virtual address otherwise
  629. * returns physical address.
  630. *
  631. * Return: dma address
  632. */
  633. static inline qdf_dma_addr_t qdf_mem_get_dma_addr(qdf_device_t osdev,
  634. qdf_mem_info_t *mem_info)
  635. {
  636. return __qdf_mem_get_dma_addr(osdev, mem_info);
  637. }
  638. /**
  639. * qdf_mem_get_dma_addr_ptr() - Return DMA address pointer from mem info struct
  640. * @osdev: Parent device instance
  641. * @mem_info: Pointer to allocated memory information
  642. *
  643. * Based on smmu stage 1 translation enablement, return corresponding dma
  644. * address storage pointer.
  645. *
  646. * Return: dma address storage pointer
  647. */
  648. static inline qdf_dma_addr_t *qdf_mem_get_dma_addr_ptr(qdf_device_t osdev,
  649. qdf_mem_info_t *mem_info)
  650. {
  651. return __qdf_mem_get_dma_addr_ptr(osdev, mem_info);
  652. }
  653. /**
  654. * qdf_mem_get_dma_size() - Return DMA memory size
  655. * @osdev: parent device instance
  656. * @mem_info: Pointer to allocated memory information
  657. *
  658. * Return: DMA memory size
  659. */
  660. static inline uint32_t
  661. qdf_mem_get_dma_size(qdf_device_t osdev,
  662. qdf_mem_info_t *mem_info)
  663. {
  664. return __qdf_mem_get_dma_size(osdev, mem_info);
  665. }
  666. /**
  667. * qdf_mem_set_dma_size() - Set DMA memory size
  668. * @osdev: parent device instance
  669. * @mem_info: Pointer to allocated memory information
  670. * @mem_size: memory size allocated
  671. *
  672. * Return: none
  673. */
  674. static inline void
  675. qdf_mem_set_dma_size(qdf_device_t osdev,
  676. qdf_mem_info_t *mem_info,
  677. uint32_t mem_size)
  678. {
  679. __qdf_mem_set_dma_size(osdev, mem_info, mem_size);
  680. }
  681. /**
  682. * qdf_mem_get_dma_size() - Return DMA physical address
  683. * @osdev: parent device instance
  684. * @mem_info: Pointer to allocated memory information
  685. *
  686. * Return: DMA physical address
  687. */
  688. static inline qdf_dma_addr_t
  689. qdf_mem_get_dma_pa(qdf_device_t osdev,
  690. qdf_mem_info_t *mem_info)
  691. {
  692. return __qdf_mem_get_dma_pa(osdev, mem_info);
  693. }
  694. /**
  695. * qdf_mem_set_dma_size() - Set DMA physical address
  696. * @osdev: parent device instance
  697. * @mem_info: Pointer to allocated memory information
  698. * @dma_pa: DMA phsical address
  699. *
  700. * Return: none
  701. */
  702. static inline void
  703. qdf_mem_set_dma_pa(qdf_device_t osdev,
  704. qdf_mem_info_t *mem_info,
  705. qdf_dma_addr_t dma_pa)
  706. {
  707. __qdf_mem_set_dma_pa(osdev, mem_info, dma_pa);
  708. }
  709. /**
  710. * qdf_mem_shared_mem_alloc() - Allocate DMA memory for shared resource
  711. * @osdev: parent device instance
  712. * @mem_info: Pointer to allocated memory information
  713. * @size: size to be allocated
  714. *
  715. * Allocate DMA memory which will be shared with external kernel module. This
  716. * information is needed for SMMU mapping.
  717. *
  718. * Return: 0 success
  719. */
  720. qdf_shared_mem_t *qdf_mem_shared_mem_alloc(qdf_device_t osdev, uint32_t size);
  721. /**
  722. * qdf_mem_shared_mem_free() - Free shared memory
  723. * @osdev: parent device instance
  724. * @shared_mem: shared memory information storage
  725. *
  726. * Free DMA shared memory resource
  727. *
  728. * Return: None
  729. */
  730. static inline void qdf_mem_shared_mem_free(qdf_device_t osdev,
  731. qdf_shared_mem_t *shared_mem)
  732. {
  733. if (!shared_mem) {
  734. qdf_nofl_err("%s: NULL shared mem struct passed",
  735. __func__);
  736. return;
  737. }
  738. if (shared_mem->vaddr) {
  739. qdf_mem_free_consistent(osdev, osdev->dev,
  740. qdf_mem_get_dma_size(osdev,
  741. &shared_mem->mem_info),
  742. shared_mem->vaddr,
  743. qdf_mem_get_dma_addr(osdev,
  744. &shared_mem->mem_info),
  745. qdf_get_dma_mem_context(shared_mem,
  746. memctx));
  747. }
  748. qdf_mem_free_sgtable(&shared_mem->sgtable);
  749. qdf_mem_free(shared_mem);
  750. }
  751. #endif /* __QDF_MEMORY_H */