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