comparison nuc-fw/riviera/rvf/rvf_cust.h @ 118:21de8d8e6ea7

checking in Riviera code from the Sotomodem version
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Tue, 29 Oct 2013 07:03:45 +0000
parents
children dd56546ad9e0
comparison
equal deleted inserted replaced
117:e40d8661ecab 118:21de8d8e6ea7
1 /****************************************************************************/
2 /* */
3 /* Name rvf_cust.h */
4 /* */
5 /* Function this file contains rvf cust definitions */
6 /* */
7 /* Version 0.1 */
8 /* */
9 /* Date Modification */
10 /* ------------------------------------ */
11 /* 29/11/2002 Create */
12 /* */
13 /* Author Stephanie Gerthoux(s-gerthoux@ti.com) */
14 /* */
15 /* (C) Copyright 2002 by Texas Instruments Incorporated, All Rights Reserved*/
16 /****************************************************************************/
17
18
19 #ifndef _RVF_CUST_H
20 #define _RVF_CUST_H
21
22
23 #include "rv/general.h"
24
25
26 /* RVF will managed at most 2 pools of memory for dynamic allocation */
27 /* buffer pool structure*/
28 typedef struct _t_rvf_pool
29 {
30 void * start_address; /* address of the beginnig of the pool */
31 UINT32 pool_size; /* total size of the pool */
32 } T_RVF_POOL;
33
34
35 /* RVF function prototypes */
36
37 void _rvf_init_free_queue (UINT8 id, UINT32 size, void *p_mem);
38
39 #endif /* _RVF_I_H */