xref: /rk3399_rockchip-uboot/include/configs/evb_rk3128.h (revision 1dc7864b9b15e2ddbe18cd7e35a874d4fbef9b97)
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 1
18 /*
19  * SPL @ 32k for ~36k
20  * ENV @ 96k
21  * u-boot @ 128K
22  */
23 #define CONFIG_ENV_OFFSET (96 * 1024)
24 
25 #define ROCKCHIP_DEVICE_SETTINGS \
26 		"stdout=serial,vidconsole\0" \
27 		"stderr=serial,vidconsole\0"
28 
29 #endif
30