123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- /*
- * Copyright (c) 2014-2016 The Linux Foundation. All rights reserved.
- *
- * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
- *
- *
- * Permission to use, copy, modify, and/or distribute this software for
- * any purpose with or without fee is hereby granted, provided that the
- * above copyright notice and this permission notice appear in all
- * copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
- * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
- * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
- * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
- * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- * PERFORMANCE OF THIS SOFTWARE.
- */
- /*
- * This file was originally distributed by Qualcomm Atheros, Inc.
- * under proprietary terms before Copyright ownership was assigned
- * to the Linux Foundation.
- */
- /**
- * DOC: qdf_mem
- * QCA driver framework (QDF) memory management APIs
- */
- #if !defined(__QDF_MEMORY_H)
- #define __QDF_MEMORY_H
- /* Include Files */
- #include <qdf_types.h>
- #include <i_qdf_mem.h>
- /**
- * struct qdf_mem_dma_page_t - Allocated dmaable page
- * @page_v_addr_start: Page start virtual address
- * @page_v_addr_end: Page end virtual address
- * @page_p_addr: Page start physical address
- */
- struct qdf_mem_dma_page_t {
- char *page_v_addr_start;
- char *page_v_addr_end;
- qdf_dma_addr_t page_p_addr;
- };
- /**
- * struct qdf_mem_multi_page_t - multiple page allocation information storage
- * @num_element_per_page: Number of element in single page
- * @num_pages: Number of allocation needed pages
- * @dma_pages: page information storage in case of coherent memory
- * @cacheable_pages: page information storage in case of cacheable memory
- */
- struct qdf_mem_multi_page_t {
- uint16_t num_element_per_page;
- uint16_t num_pages;
- struct qdf_mem_dma_page_t *dma_pages;
- void **cacheable_pages;
- };
- /* Preprocessor definitions and constants */
- typedef __qdf_mempool_t qdf_mempool_t;
- #ifdef MEMORY_DEBUG
- void qdf_mem_clean(void);
- void qdf_mem_init(void);
- void qdf_mem_exit(void);
- #else
- /**
- * qdf_mem_init() - initialize qdf memory debug functionality
- *
- * Return: none
- */
- static inline void qdf_mem_init(void)
- {
- }
- /**
- * qdf_mem_exit() - exit qdf memory debug functionality
- *
- * Return: none
- */
- static inline void qdf_mem_exit(void)
- {
- }
- #endif
- #ifdef MEMORY_DEBUG
- #define qdf_mem_malloc(size) \
- qdf_mem_malloc_debug(size, __FILE__, __LINE__)
- void *qdf_mem_malloc_debug(size_t size, char *file_name, uint32_t line_num);
- #else
- void *
- qdf_mem_malloc(qdf_size_t size);
- #endif
- void *qdf_mem_alloc_outline(qdf_device_t osdev, qdf_size_t size);
- /**
- * qdf_mem_free() - free QDF memory
- * @ptr: Pointer to the starting address of the memory to be free'd.
- * This function will free the memory pointed to by 'ptr'.
- * Return:
- * None
- */
- void qdf_mem_free(void *ptr);
- void qdf_mem_set(void *ptr, uint32_t num_bytes, uint32_t value);
- void qdf_mem_zero(void *ptr, uint32_t num_bytes);
- void qdf_mem_copy(void *dst_addr, const void *src_addr, uint32_t num_bytes);
- void qdf_mem_move(void *dst_addr, const void *src_addr, uint32_t num_bytes);
- void qdf_mem_free_outline(void *buf);
- void *qdf_mem_alloc_consistent(qdf_device_t osdev, void *dev, qdf_size_t size,
- qdf_dma_addr_t *paddr);
- void qdf_mem_free_consistent(qdf_device_t osdev, void *dev, qdf_size_t size,
- void *vaddr, qdf_dma_addr_t paddr,
- qdf_dma_context_t memctx);
- void qdf_mem_zero_outline(void *buf, qdf_size_t size);
- /**
- * qdf_mem_cmp() - memory compare
- * @memory1: pointer to one location in memory to compare.
- * @memory2: pointer to second location in memory to compare.
- * @num_bytes: the number of bytes to compare.
- *
- * Function to compare two pieces of memory, similar to memcmp function
- * in standard C.
- * Return:
- * int32_t - returns an int value that tells if the memory
- * locations are equal or not equal.
- * 0 -- equal
- * < 0 -- *memory1 is less than *memory2
- * > 0 -- *memory1 is bigger than *memory2
- */
- static inline int32_t qdf_mem_cmp(const void *memory1, const void *memory2,
- uint32_t num_bytes)
- {
- return __qdf_mem_cmp(memory1, memory2, num_bytes);
- }
- /**
- * qdf_str_cmp - Compare two strings
- * @str1: First string
- * @str2: Second string
- * Return: =0 equal
- * >0 not equal, if str1 sorts lexicographically after str2
- * <0 not equal, if str1 sorts lexicographically before str2
- */
- static inline int32_t qdf_str_cmp(const char *str1, const char *str2)
- {
- return __qdf_str_cmp(str1, str2);
- }
- /**
- * qdf_str_lcopy - Copy from one string to another
- * @dest: destination string
- * @src: source string
- * @bytes: limit of num bytes to copy
- * Return: =0 returns the initial value of dest
- */
- static inline uint32_t qdf_str_lcopy(char *dest, const char *src, uint32_t bytes)
- {
- return __qdf_str_lcopy(dest, src, bytes);
- }
- /**
- * qdf_mem_map_nbytes_single - Map memory for DMA
- * @osdev: pomter OS device context
- * @buf: pointer to memory to be dma mapped
- * @dir: DMA map direction
- * @nbytes: number of bytes to be mapped.
- * @phy_addr: ponter to recive physical address.
- *
- * Return: success/failure
- */
- static inline uint32_t qdf_mem_map_nbytes_single(qdf_device_t osdev, void *buf,
- qdf_dma_dir_t dir, int nbytes,
- uint32_t *phy_addr)
- {
- #if defined(HIF_PCI)
- return __qdf_mem_map_nbytes_single(osdev, buf, dir, nbytes, phy_addr);
- #else
- return 0;
- #endif
- }
- /**
- * qdf_mem_unmap_nbytes_single() - un_map memory for DMA
- * @osdev: pomter OS device context
- * @phy_addr: physical address of memory to be dma unmapped
- * @dir: DMA unmap direction
- * @nbytes: number of bytes to be unmapped.
- *
- * Return: none
- */
- static inline void qdf_mem_unmap_nbytes_single(qdf_device_t osdev,
- uint32_t phy_addr,
- qdf_dma_dir_t dir,
- int nbytes)
- {
- #if defined(HIF_PCI)
- __qdf_mem_unmap_nbytes_single(osdev, phy_addr, dir, nbytes);
- #endif
- }
- /**
- * qdf_mempool_init - Create and initialize memory pool
- * @osdev: platform device object
- * @pool_addr: address of the pool created
- * @elem_cnt: no. of elements in pool
- * @elem_size: size of each pool element in bytes
- * @flags: flags
- * Return: Handle to memory pool or NULL if allocation failed
- */
- static inline int qdf_mempool_init(qdf_device_t osdev,
- qdf_mempool_t *pool_addr, int elem_cnt,
- size_t elem_size, uint32_t flags)
- {
- return __qdf_mempool_init(osdev, pool_addr, elem_cnt, elem_size,
- flags);
- }
- /**
- * qdf_mempool_destroy - Destroy memory pool
- * @osdev: platform device object
- * @Handle: to memory pool
- * Return: none
- */
- static inline void qdf_mempool_destroy(qdf_device_t osdev, qdf_mempool_t pool)
- {
- __qdf_mempool_destroy(osdev, pool);
- }
- /**
- * qdf_mempool_alloc - Allocate an element memory pool
- * @osdev: platform device object
- * @Handle: to memory pool
- * Return: Pointer to the allocated element or NULL if the pool is empty
- */
- static inline void *qdf_mempool_alloc(qdf_device_t osdev, qdf_mempool_t pool)
- {
- return (void *)__qdf_mempool_alloc(osdev, pool);
- }
- /**
- * qdf_mempool_free - Free a memory pool element
- * @osdev: Platform device object
- * @pool: Handle to memory pool
- * @buf: Element to be freed
- * Return: none
- */
- static inline void qdf_mempool_free(qdf_device_t osdev, qdf_mempool_t pool,
- void *buf)
- {
- __qdf_mempool_free(osdev, pool, buf);
- }
- void qdf_mem_dma_sync_single_for_device(qdf_device_t osdev,
- qdf_dma_addr_t bus_addr,
- qdf_size_t size,
- __dma_data_direction direction);
- void qdf_mem_dma_sync_single_for_cpu(qdf_device_t osdev,
- qdf_dma_addr_t bus_addr,
- qdf_size_t size,
- __dma_data_direction direction);
- /**
- * qdf_str_len() - returns the length of a string
- * @str: input string
- * Return:
- * length of string
- */
- static inline int32_t qdf_str_len(const char *str)
- {
- return __qdf_str_len(str);
- }
- void qdf_mem_multi_pages_alloc(qdf_device_t osdev,
- struct qdf_mem_multi_page_t *pages,
- size_t element_size, uint16_t element_num,
- qdf_dma_context_t memctxt, bool cacheable);
- void qdf_mem_multi_pages_free(qdf_device_t osdev,
- struct qdf_mem_multi_page_t *pages,
- qdf_dma_context_t memctxt, bool cacheable);
- #endif /* __QDF_MEMORY_H */
|