1 /* 2 * (C) Copyright 2016 Rockchip Electronics Co., Ltd 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 7 #ifndef _ROCKCHIP_COMMON_H_ 8 #define _ROCKCHIP_COMMON_H_ 9 #include <linux/sizes.h> 10 11 #ifndef CONFIG_SPL_BUILD 12 #include <config_distro_defaults.h> 13 14 /* First try to boot from SD (index 0), then eMMC (index 1 */ 15 #define BOOT_TARGET_DEVICES(func) \ 16 func(MMC, mmc, 0) \ 17 func(MMC, mmc, 1) \ 18 func(PXE, pxe, na) \ 19 func(DHCP, dchp, na) 20 21 /* Enable gpt partition table */ 22 #define CONFIG_CMD_GPT 23 #define CONFIG_RANDOM_UUID 24 #define CONFIG_PARTITION_UUIDS 25 #define PARTS_DEFAULT \ 26 "uuid_disk=${uuid_gpt_disk};" \ 27 "name=loader1,start=32K,size=4000K,uuid=${uuid_gpt_loader1};" \ 28 "name=reserved1,size=64K,uuid=${uuid_gpt_reserved1};" \ 29 "name=reserved2,size=4M,uuid=${uuid_gpt_reserved2};" \ 30 "name=loader2,size=4MB,uuid=${uuid_gpt_loader2};" \ 31 "name=atf,size=4M,uuid=${uuid_gpt_atf};" \ 32 "name=boot,size=112M,bootable,uuid=${uuid_gpt_boot};" \ 33 "name=rootfs,size=-,uuid=${uuid_gpt_rootfs};\0" \ 34 35 #endif 36 37 #endif /* _ROCKCHIP_COMMON_H_ */ 38