xref: /OK3568_Linux_fs/u-boot/include/optee_test.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 /* SPDX-License-Identifier:     GPL-2.0+
2  *
3  * Copyright 2019, Rockchip Electronics Co., Ltd
4  * hisping lin, <hisping.lin@rock-chips.com>
5  *
6  */
7 #ifndef _OPTEE_TEST_H_
8 #define _OPTEE_TEST_H_
9 
10 /*
11  * test secure storage in rpmb when use emmc
12  * test secure storage in security partition when use nand
13  */
14 int test_secure_storage_default(void);
15 
16 /*
17  * test secure storage in security partition
18  */
19 int test_secure_storage_security_partition(void);
20 
21 #endif /*_OPTEE_TEST_H_*/
22