xref: /OK3568_Linux_fs/u-boot/include/configs/evb_rk3528.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 /*
2  * SPDX-License-Identifier:     GPL-2.0+
3  *
4  * Copyright (c) 2020 Rockchip Electronics Co., Ltd
5  */
6 
7 #ifndef __CONFIGS_RK3528_EVB_H
8 #define __CONFIGS_RK3528_EVB_H
9 
10 #include <configs/rk3528_common.h>
11 
12 #ifndef CONFIG_SPL_BUILD
13 
14 #undef ROCKCHIP_DEVICE_SETTINGS
15 #define ROCKCHIP_DEVICE_SETTINGS \
16 		"stdin=serial,usbkbd\0" \
17 		"stdout=serial,vidconsole\0" \
18 		"stderr=serial,vidconsole\0"
19 
20 #define CONFIG_SYS_MMC_ENV_DEV		0
21 
22 #undef CONFIG_BOOTCOMMAND
23 #define CONFIG_BOOTCOMMAND RKIMG_BOOTCOMMAND
24 #endif
25 
26 #endif /* __CONFIGS_RK3528_EVB_H */
27