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 22 int board_brom_dnl_test(int argc, char * const argv[]); 23 24 #endif /* _TEST_ROCKCHIP_H */ 25