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 18 #ifndef CONFIG_SPL_BUILD 19 /* Enable gpt partition table */ 20 #define CONFIG_PREBOOT 21 22 #define CONFIG_SYS_BOOT_RAMDISK_HIGH 23 24 /* Enable atags */ 25 #define CONFIG_SYS_BOOTPARAMS_LEN (64*1024) 26 #define CONFIG_INITRD_TAG 27 #define CONFIG_SETUP_MEMORY_TAGS 28 #define CONFIG_CMDLINE_TAG 29 30 #endif 31 32 #endif 33