Linux Utils Application Programming Interface (API)  linuxutils-m14
 All Data Structures Files Functions Variables Typedefs Groups Pages
cmem.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2007-2014 Texas Instruments Incorporated - https://www.ti.com
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *
11  * * Redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in the
13  * documentation and/or other materials provided with the distribution.
14  *
15  * * Neither the name of Texas Instruments Incorporated nor the names of
16  * its contributors may be used to endorse or promote products derived
17  * from this software without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
23  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
29  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  */
226 #ifndef ti_CMEM_H
227 #define ti_CMEM_H
228 
229 #if defined (__cplusplus)
230 extern "C" {
231 #endif
232 
235 
236 #define CMEM_VERSION 0x04000300U
237 
238 #define MAX_POOLS 32
239 
240 /* magic "block" corresponding to CMA regions */
241 #define CMEM_CMABLOCKID -1
242 
243 /* ioctl cmd "flavors" */
244 #define CMEM_WB 0x00010000
245 #define CMEM_INV 0x00020000
246 #define CMEM_HEAP 0x00040000
247 #define CMEM_POOL 0x00000000
248 #define CMEM_CACHED 0x00080000
249 #define CMEM_NONCACHED 0x00000000
250 #define CMEM_PHYS 0x00100000
251 
252 #define CMEM_IOCMAGIC 0x0000fe00
253 
254 /* supported "base" ioctl cmds for the driver. */
255 #define CMEM_IOCALLOC 1
256 #define CMEM_IOCALLOCHEAP 2
257 #define CMEM_IOCFREE 3
258 #define CMEM_IOCGETPHYS 4
259 #define CMEM_IOCGETSIZE 5
260 #define CMEM_IOCGETPOOL 6
261 #define CMEM_IOCCACHE 7
262 #define CMEM_IOCGETVERSION 8
263 #define CMEM_IOCGETBLOCK 9
264 #define CMEM_IOCREGUSER 10
265 #define CMEM_IOCGETNUMBLOCKS 11
266 #define CMEM_IOCCACHEWBINVALL 12
267 /*
268  * New ioctl cmds should use integers greater than the largest current cmd
269  * in order to not break backward compatibility.
270  */
271 
272 /* supported "flavors" to "base" ioctl cmds for the driver. */
273 #define CMEM_IOCCACHEWBINV CMEM_IOCCACHE | CMEM_WB | CMEM_INV
274 #define CMEM_IOCCACHEWB CMEM_IOCCACHE | CMEM_WB
275 #define CMEM_IOCCACHEINV CMEM_IOCCACHE | CMEM_INV
276 #define CMEM_IOCALLOCCACHED CMEM_IOCALLOC | CMEM_CACHED
277 #define CMEM_IOCALLOCHEAPCACHED CMEM_IOCALLOCHEAP | CMEM_CACHED
278 #define CMEM_IOCFREEHEAP CMEM_IOCFREE | CMEM_HEAP
279 #define CMEM_IOCFREEPHYS CMEM_IOCFREE | CMEM_PHYS
280 #define CMEM_IOCFREEHEAPPHYS CMEM_IOCFREE | CMEM_HEAP | CMEM_PHYS
281 
282 #define CMEM_IOCCMDMASK 0x000000ff
283 
288 typedef struct CMEM_AllocParams {
289  int type;
290  int flags;
291  size_t alignment;
295 
297 
298 typedef struct CMEM_BlockAttrs {
299  off_t phys_base;
300  unsigned long long size;
302 
307 union CMEM_AllocUnion {
308  struct {
309  size_t size;
310  size_t align;
311  int blockid;
312  } alloc_heap_inparams;
313  struct {
314  int poolid;
315  int blockid;
316  } alloc_pool_inparams;
317  struct {
318  int poolid;
319  int blockid;
320  } get_size_inparams;
321  struct {
322  unsigned long long size;
323  int blockid;
324  } get_pool_inparams;
325  struct {
326  unsigned long long physp;
327  unsigned long long size;
328  } alloc_pool_outparams;
329  struct {
330  unsigned long long physp;
331  unsigned long long size;
332  } get_block_outparams;
333  struct {
334  int poolid;
335  size_t size;
336  } free_outparams;
337  unsigned long long physp;
338  void *virtp;
339  size_t size;
340  int poolid;
341  int blockid;
342 };
343 
353 int CMEM_init(void);
354 
370 int CMEM_getPool(unsigned long long size);
371 
388 int CMEM_getPool2(int blockid, unsigned long long size);
389 
411 void *CMEM_allocPool(int poolid, CMEM_AllocParams *params);
412 
435 void *CMEM_allocPool2(int blockid, int poolid, CMEM_AllocParams *params);
436 
462 void *CMEM_alloc(size_t size, CMEM_AllocParams *params);
463 
491 void *CMEM_alloc2(int blockid, size_t size, CMEM_AllocParams *params);
492 
513 off_t CMEM_allocPoolPhys(int poolid, CMEM_AllocParams *params);
514 
537 off_t CMEM_allocPoolPhys2(int blockid, int poolid, CMEM_AllocParams *params);
538 
563 off_t CMEM_allocPhys(size_t size, CMEM_AllocParams *params);
564 
592 off_t CMEM_allocPhys2(int blockid, size_t size, CMEM_AllocParams *params);
593 
617 void *CMEM_registerAlloc(off_t physp);
618 
641 int CMEM_free(void *ptr, CMEM_AllocParams *params);
642 
664 int CMEM_freePhys(off_t physp, CMEM_AllocParams *params);
665 
688 int CMEM_unregister(void *ptr, CMEM_AllocParams *params);
689 
699 off_t CMEM_getPhys(void *ptr);
700 
712 int CMEM_cacheWbInvAll(void);
713 
728 int CMEM_cacheWb(void *ptr, size_t size);
729 
744 void *CMEM_map(off_t physp, size_t size);
745 
759 int CMEM_unmap(void *userp, size_t size);
760 
775 int CMEM_cacheInv(void *ptr, size_t size);
776 
792 int CMEM_cacheWbInv(void *ptr, size_t size);
793 
801 int CMEM_getVersion(void);
802 
817 int CMEM_getBlock(off_t *pphys_base, unsigned long long *psize);
818 
834 int CMEM_getBlockAttrs(int blockid, CMEM_BlockAttrs *pattrs);
835 
851 int CMEM_getNumBlocks(int *pnblocks);
852 
865 int CMEM_exit(void);
866 
869 #if defined (__cplusplus)
870 }
871 #endif
872 
873 #endif
struct CMEM_BlockAttrs CMEM_BlockAttrs
int CMEM_freePhys(off_t physp, CMEM_AllocParams *params)
Free an unmapped buffer previously allocated with CMEM_allocPhys()/CMEM_allocPoolPhys().
CMEM_AllocParams CMEM_DEFAULTPARAMS
int CMEM_unmap(void *userp, size_t size)
Unmap allocated memory.
int CMEM_cacheWb(void *ptr, size_t size)
Do a cache writeback of the block pointed to by ptr/size.
int CMEM_free(void *ptr, CMEM_AllocParams *params)
Free a buffer previously allocated with CMEM_alloc()/CMEM_allocPool().
int CMEM_getPool(unsigned long long size)
Find the pool that best fits a given buffer size and has a buffer available.
off_t CMEM_getPhys(void *ptr)
Get the physical address of a contiguous buffer.
off_t CMEM_allocPhys(size_t size, CMEM_AllocParams *params)
Allocate unmapped memory of a specified size.
size_t alignment
Definition: cmem.h:291
void * CMEM_alloc(size_t size, CMEM_AllocParams *params)
Allocate memory of a specified size.
Parameters for CMEM_alloc(), CMEM_alloc2(), CMEM_allocPool(), CMEM_allocPool2(), CMEM_free().
Definition: cmem.h:288
void * CMEM_allocPool2(int blockid, int poolid, CMEM_AllocParams *params)
Allocate memory from a specified pool in a specified memory block.
off_t phys_base
Definition: cmem.h:299
unsigned long long size
Definition: cmem.h:300
struct CMEM_AllocParams CMEM_AllocParams
Parameters for CMEM_alloc(), CMEM_alloc2(), CMEM_allocPool(), CMEM_allocPool2(), CMEM_free().
void * CMEM_registerAlloc(off_t physp)
Register shared usage of an already-allocated buffer.
int CMEM_exit(void)
Finalize the CMEM module.
int CMEM_getBlock(off_t *pphys_base, unsigned long long *psize)
Retrieve memory block bounds from CMEM driver.
int CMEM_getNumBlocks(int *pnblocks)
Retrieve number of blocks configured into CMEM driver.
off_t CMEM_allocPoolPhys2(int blockid, int poolid, CMEM_AllocParams *params)
Allocate unmapped memory from a specified pool in a specified memory block.
void * CMEM_allocPool(int poolid, CMEM_AllocParams *params)
Allocate memory from a specified pool.
int type
Definition: cmem.h:289
Definition: cmem.h:298
int CMEM_getPool2(int blockid, unsigned long long size)
Find the pool in memory block blockid that best fits a given buffer size and has a buffer available...
int CMEM_cacheWbInv(void *ptr, size_t size)
Do a cache writeback/invalidate of the block pointed to by ptr/size.
int CMEM_getBlockAttrs(int blockid, CMEM_BlockAttrs *pattrs)
Retrieve extended memory block attributes from CMEM driver.
void * CMEM_alloc2(int blockid, size_t size, CMEM_AllocParams *params)
Allocate memory of a specified size from a specified memory block.
off_t CMEM_allocPhys2(int blockid, size_t size, CMEM_AllocParams *params)
Allocate unmapped memory of a specified size from a specified memory block.
int CMEM_cacheWbInvAll(void)
Do a cache writeback/invalidate of the whole cache.
int CMEM_getVersion(void)
Retrieve version from CMEM driver.
void * CMEM_map(off_t physp, size_t size)
Map allocated memory.
int flags
Definition: cmem.h:290
int CMEM_unregister(void *ptr, CMEM_AllocParams *params)
Unregister use of a buffer previously registered with CMEM_registerAlloc().
int CMEM_init(void)
Initialize the CMEM module. Must be called before other API calls.
off_t CMEM_allocPoolPhys(int poolid, CMEM_AllocParams *params)
Allocate unmapped memory from a specified pool.
int CMEM_cacheInv(void *ptr, size_t size)
Do a cache invalidate of the block pointed to by ptr/size.
Copyright 2014, Texas Instruments Incorporated