]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/rockchip-common.h
f465d35330bc1e0b87e8a858e6bdc404968b5e36
[people/ms/u-boot.git] / include / configs / rockchip-common.h
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 #if CONFIG_IS_ENABLED(CMD_MMC)
16 #define BOOT_TARGET_MMC(func) \
17 func(MMC, mmc, 0) \
18 func(MMC, mmc, 1)
19 #else
20 #define BOOT_TARGET_MMC(func)
21 #endif
22
23 #if CONFIG_IS_ENABLED(CMD_USB)
24 #define BOOT_TARGET_USB(func) func(USB, usb, 0)
25 #else
26 #define BOOT_TARGET_USB(func)
27 #endif
28
29 #if CONFIG_IS_ENABLED(CMD_PXE)
30 #define BOOT_TARGET_PXE(func) func(PXE, pxe, na)
31 #else
32 #define BOOT_TARGET_PXE(func)
33 #endif
34
35 #if CONFIG_IS_ENABLED(CMD_DHCP)
36 #define BOOT_TARGET_DHCP(func) func(DHCP, dhcp, na)
37 #else
38 #define BOOT_TARGET_DHCP(func)
39 #endif
40
41 #define BOOT_TARGET_DEVICES(func) \
42 BOOT_TARGET_MMC(func) \
43 BOOT_TARGET_USB(func) \
44 BOOT_TARGET_PXE(func) \
45 BOOT_TARGET_DHCP(func)
46
47 #ifdef CONFIG_ARM64
48 #define ROOT_UUID "B921B045-1DF0-41C3-AF44-4C6F280D3FAE;\0"
49 #else
50 #define ROOT_UUID "69DAD710-2CE4-4E3C-B16C-21A1D49ABED3;\0"
51 #endif
52 #define PARTS_DEFAULT \
53 "uuid_disk=${uuid_gpt_disk};" \
54 "name=loader1,start=32K,size=4000K,uuid=${uuid_gpt_loader1};" \
55 "name=loader2,start=8MB,size=4MB,uuid=${uuid_gpt_loader2};" \
56 "name=trust,size=4M,uuid=${uuid_gpt_atf};" \
57 "name=boot,size=112M,bootable,uuid=${uuid_gpt_boot};" \
58 "name=rootfs,size=-,uuid="ROOT_UUID
59
60 #endif
61
62 #define CONFIG_DISPLAY_BOARDINFO_LATE
63
64 #endif /* _ROCKCHIP_COMMON_H_ */