xref: /rk3399_rockchip-uboot/include/configs/evb_rk3229.h (revision e8e29e8d8b70fc092891ebc18d0488d061d26c38)
1 /*
2  * (C) Copyright 2017 Rockchip Electronics Co., Ltd
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6 
7 #ifndef __CONFIG_H
8 #define __CONFIG_H
9 
10 #include <configs/rk322x_common.h>
11 
12 
13 /* Store env in emmc */
14 #define CONFIG_SYS_MMC_ENV_DEV          0
15 #define CONFIG_SYS_MMC_ENV_PART         0
16 #define CONFIG_SYS_REDUNDAND_ENVIRONMENT
17 #define CONFIG_SUPPORT_EMMC_RPMB
18 
19 #ifndef CONFIG_SPL_BUILD
20 /* Enable gpt partition table */
21 #define CONFIG_PREBOOT
22 
23 #define CONFIG_SYS_BOOT_RAMDISK_HIGH
24 
25 /* Enable atags */
26 #define CONFIG_SYS_BOOTPARAMS_LEN	(64*1024)
27 #define CONFIG_INITRD_TAG
28 #define CONFIG_SETUP_MEMORY_TAGS
29 #define CONFIG_CMDLINE_TAG
30 
31 #endif
32 
33 #endif
34