blob: 7ca1696a1630ad288d5f1ecc3fe1233be99015ef [file] [log] [blame]
Jacob Chen63dc9712016-10-08 13:47:41 +08001/*
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
19 /* Enable gpt partition table */
20#define CONFIG_CMD_GPT
21#define CONFIG_RANDOM_UUID
22#define CONFIG_PARTITION_UUIDS
23#define PARTS_DEFAULT \
24 "uuid_disk=${uuid_gpt_disk};" \
25 "name=loader1,start=32K,size=4000K,uuid=${uuid_gpt_loader1};" \
26 "name=reserved1,size=64K,uuid=${uuid_gpt_reserved1};" \
27 "name=reserved2,size=4M,uuid=${uuid_gpt_reserved2};" \
28 "name=loader2,size=4MB,uuid=${uuid_gpt_loader2};" \
29 "name=atf,size=4M,uuid=${uuid_gpt_atf};" \
30 "name=boot,size=128M,bootable,uuid=${uuid_gpt_boot};" \
31 "name=rootfs,size=-,uuid=${uuid_gpt_rootfs};\0" \
32
33#endif
34
35#endif /* _ROCKCHIP_COMMON_H_ */