Linux Utils Application Programming Interface (API)  linuxutils-m08
 All Data Structures Files Functions Variables Typedefs Groups Pages
cmem.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2007-2013 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  */
225 #ifndef ti_CMEM_H
226 #define ti_CMEM_H
227 
228 #if defined (__cplusplus)
229 extern "C" {
230 #endif
231 
234 
235 #define CMEM_VERSION 0x04000000U
236 
237 #define MAX_POOLS 32
238 
239 /* magic "block" corresponding to CMA regions */
240 #define CMEM_CMABLOCKID -1
241 
242 /* ioctl cmd "flavors" */
243 #define CMEM_WB 0x00010000
244 #define CMEM_INV 0x00020000
245 #define CMEM_HEAP 0x00040000
246 #define CMEM_POOL 0x00000000
247 #define CMEM_CACHED 0x00080000
248 #define CMEM_NONCACHED 0x00000000
249 #define CMEM_PHYS 0x00100000
250 
251 #define CMEM_IOCMAGIC 0x0000fe00
252 
253 /* supported "base" ioctl cmds for the driver. */
254 #define CMEM_IOCALLOC 1
255 #define CMEM_IOCALLOCHEAP 2
256 #define CMEM_IOCFREE 3
257 #define CMEM_IOCGETPHYS 4
258 #define CMEM_IOCGETSIZE 5
259 #define CMEM_IOCGETPOOL 6
260 #define CMEM_IOCCACHE 7
261 #define CMEM_IOCGETVERSION 8
262 #define CMEM_IOCGETBLOCK 9
263 #define CMEM_IOCREGUSER 10
264 #define CMEM_IOCGETNUMBLOCKS 11
265 /*
266  * New ioctl cmds should use integers greater than the largest current cmd
267  * in order to not break backward compatibility.
268  */
269 
270 /* supported "flavors" to "base" ioctl cmds for the driver. */
271 #define CMEM_IOCCACHEWBINV CMEM_IOCCACHE | CMEM_WB | CMEM_INV
272 #define CMEM_IOCCACHEWB CMEM_IOCCACHE | CMEM_WB
273 #define CMEM_IOCCACHEINV CMEM_IOCCACHE | CMEM_INV
274 #define CMEM_IOCALLOCCACHED CMEM_IOCALLOC | CMEM_CACHED
275 #define CMEM_IOCALLOCHEAPCACHED CMEM_IOCALLOCHEAP | CMEM_CACHED
276 #define CMEM_IOCFREEHEAP CMEM_IOCFREE | CMEM_HEAP
277 #define CMEM_IOCFREEPHYS CMEM_IOCFREE | CMEM_PHYS
278 #define CMEM_IOCFREEHEAPPHYS CMEM_IOCFREE | CMEM_HEAP | CMEM_PHYS
279 
280 #define CMEM_IOCCMDMASK 0x000000ff
281 
286 typedef struct CMEM_AllocParams {
287  int type;
288  int flags;
289  size_t alignment;
293 
295 
296 typedef struct CMEM_BlockAttrs {
297  off_t phys_base;
298  size_t size;
300 
305 union CMEM_AllocUnion {
306  struct {
307  size_t size;
308  size_t align;
309  int blockid;
310  } alloc_heap_inparams;
311  struct {
312  int poolid;
313  int blockid;
314  } alloc_pool_inparams;
315  struct {
316  int poolid;
317  int blockid;
318  } get_size_inparams;
319  struct {
320  size_t size;
321  int blockid;
322  } get_pool_inparams;
323  struct {
324  unsigned long long physp;
325  size_t size;
326  } alloc_pool_outparams;
327  struct {
328  unsigned long long physp;
329  size_t size;
330  } get_block_outparams;
331  struct {
332  int poolid;
333  size_t size;
334  } free_outparams;
335  unsigned long long physp;
336  void *virtp;
337  size_t size;
338  int poolid;
339  int blockid;
340 };
341 
351 int CMEM_init(void);
352 
368 int CMEM_getPool(size_t size);
369 
386 int CMEM_getPool2(int blockid, size_t size);
387 
409 void *CMEM_allocPool(int poolid, CMEM_AllocParams *params);
410 
433 void *CMEM_allocPool2(int blockid, int poolid, CMEM_AllocParams *params);
434 
460 void *CMEM_alloc(size_t size, CMEM_AllocParams *params);
461 
489 void *CMEM_alloc2(int blockid, size_t size, CMEM_AllocParams *params);
490 
511 off_t CMEM_allocPoolPhys(int poolid, CMEM_AllocParams *params);
512 
535 off_t CMEM_allocPoolPhys2(int blockid, int poolid, CMEM_AllocParams *params);
536 
561 off_t CMEM_allocPhys(size_t size, CMEM_AllocParams *params);
562 
590 off_t CMEM_allocPhys2(int blockid, size_t size, CMEM_AllocParams *params);
591 
615 void *CMEM_registerAlloc(off_t physp);
616 
639 int CMEM_free(void *ptr, CMEM_AllocParams *params);
640 
662 int CMEM_freePhys(off_t physp, CMEM_AllocParams *params);
663 
686 int CMEM_unregister(void *ptr, CMEM_AllocParams *params);
687 
697 off_t CMEM_getPhys(void *ptr);
698 
712 int CMEM_cacheWb(void *ptr, size_t size);
713 
728 void *CMEM_map(off_t physp, size_t size);
729 
743 int CMEM_unmap(void *userp, size_t size);
744 
758 int CMEM_cacheInv(void *ptr, size_t size);
759 
774 int CMEM_cacheWbInv(void *ptr, size_t size);
775 
783 int CMEM_getVersion(void);
784 
799 int CMEM_getBlock(off_t *pphys_base, size_t *psize);
800 
816 int CMEM_getBlockAttrs(int blockid, CMEM_BlockAttrs *pattrs);
817 
833 int CMEM_getNumBlocks(int *pnblocks);
834 
847 int CMEM_exit(void);
848 
851 #if defined (__cplusplus)
852 }
853 #endif
854 
855 #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().
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:289
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:286
void * CMEM_allocPool2(int blockid, int poolid, CMEM_AllocParams *params)
Allocate memory from a specified pool in a specified memory block.
int CMEM_getPool2(int blockid, size_t size)
Find the pool in memory block blockid that best fits a given buffer size and has a buffer available...
off_t phys_base
Definition: cmem.h:297
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_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:287
Definition: cmem.h:296
int CMEM_cacheWbInv(void *ptr, size_t size)
Do a cache writeback/invalidate of the block pointed to by ptr/size.
size_t size
Definition: cmem.h:298
int CMEM_getBlock(off_t *pphys_base, size_t *psize)
Retrieve memory block bounds from CMEM driver.
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_getPool(size_t size)
Find the pool that best fits a given buffer size and has a buffer available.
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:288
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 2013, Texas Instruments Incorporated