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