xref: /rk3399_rockchip-uboot/test/rockchip/test-rockchip.h (revision 5e8564cf419797f9095431e6eb6f0c00dfa423d2)
1 /*
2  * (C) Copyright 2017 Rockchip Electronics Co., Ltd
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6 
7 #ifndef _TEST_ROCKCHIP_H
8 #define _TEST_ROCKCHIP_H
9 
10 int board_timer_test(int argc, char * const argv[]);
11 int board_key_test(int argc, char * const argv[]);
12 int board_emmc_test(int argc, char * const argv[]);
13 int board_regulator_test(int argc, char * const argv[]);
14 int board_rknand_test(int argc, char * const argv[]);
15 #if defined(CONFIG_GMAC_ROCKCHIP)
16 int board_eth_test(int argc, char * const argv[]);
17 #endif
18 #if defined(CONFIG_RK_IR)
19 int board_ir_test(int argc, char * const argv[]);
20 #endif
21 int board_brom_dnl_test(int argc, char * const argv[]);
22 #if defined(CONFIG_ROCKCHIP_VENDOR_PARTITION)
23 int board_vendor_storage_test(int argc, char * const argv[]);
24 #endif
25 
26 #endif /* _TEST_ROCKCHIP_H */
27