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 16 #if defined(CONFIG_RK_IR) 17 int board_ir_test(int argc, char * const argv[]); 18 #endif 19 20 #endif /* _TEST_ROCKCHIP_H */ 21