1 /* 2 * (C) Copyright 2017 Rockchip Electronics Co., Ltd 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 7 #ifndef __EVB_RK3128_H 8 #define __EVB_RK3128_H 9 10 #include <configs/rk3128_common.h> 11 12 #define CONFIG_BMP_16BPP 13 #define CONFIG_BMP_24BPP 14 #define CONFIG_BMP_32BPP 15 16 #define CONFIG_ENV_IS_IN_MMC 17 #define CONFIG_SYS_MMC_ENV_DEV 0 18 19 #define ROCKCHIP_DEVICE_SETTINGS \ 20 "stdout=serial,vidconsole\0" \ 21 "stderr=serial,vidconsole\0" 22 23 #ifndef CONFIG_SPL_BUILD 24 #undef CONFIG_BOOTCOMMAND 25 #define CONFIG_BOOTCOMMAND RKIMG_BOOTCOMMAND 26 #endif 27 28 #endif 29