xref: /rk3399_rockchip-uboot/include/optee_include/OpteeClientMem.h (revision aee63dc84c1f5be59ea35ceb209a4ea937bdeb41)
1 /*
2  * Copyright 2017, Rockchip Electronics Co., Ltd
3  * hisping lin, <hisping.lin@rock-chips.com>
4  *
5  * SPDX-License-Identifier:	GPL-2.0+
6  */
7 #ifndef _OPTEE_CLIENT_MEM_H_
8 #define _OPTEE_CLIENT_MEM_H_
9 
10 #include <linux/types.h>
11 
12 void OpteeClientMemInit(void);
13 
14 void *OpteeClientMemAlloc(uint32_t length);
15 
16 void  OpteeClientMemFree(void *mem);
17 
18 #endif /*_OPTEE_CLIENT_MEM_H_*/
19