]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/rockchip-common.h
mmc: move CONFIG_DWMMC to Kconfig, renaming to CONFIG_MMC_DW
[people/ms/u-boot.git] / include / configs / rockchip-common.h
CommitLineData
7f35bbb9
JC
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
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};" \
6b388f0b 30 "name=boot,size=112M,bootable,uuid=${uuid_gpt_boot};" \
7f35bbb9
JC
31 "name=rootfs,size=-,uuid=${uuid_gpt_rootfs};\0" \
32
33#endif
34
35#endif /* _ROCKCHIP_COMMON_H_ */