xref: /rk3399_rockchip-uboot/include/configs/rockchip-common.h (revision 965eda410b8d28439dc1ba4f76061880d72978fd)
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 #ifdef CONFIG_CMD_USB
16 #define BOOT_TARGET_DEVICES(func) \
17 	func(MMC, mmc, 0) \
18 	func(MMC, mmc, 1) \
19 	func(USB, usb, 0) \
20 	func(PXE, pxe, na) \
21 	func(DHCP, dchp, na)
22 #else
23 #define BOOT_TARGET_DEVICES(func) \
24 	func(MMC, mmc, 0) \
25 	func(MMC, mmc, 1) \
26 	func(PXE, pxe, na) \
27 	func(DHCP, dchp, na)
28 #endif
29 
30 #define CONFIG_RANDOM_UUID
31 
32 #ifdef CONFIG_ARM64
33 #define ROOT_UUID "B921B045-1DF0-41C3-AF44-4C6F280D3FAE;\0"
34 #else
35 #define ROOT_UUID "69DAD710-2CE4-4E3C-B16C-21A1D49ABED3;\0"
36 #endif
37 #define PARTS_DEFAULT \
38 	"uuid_disk=${uuid_gpt_disk};" \
39 	"name=loader1,start=32K,size=4000K,uuid=${uuid_gpt_loader1};" \
40 	"name=loader2,start=8MB,size=4MB,uuid=${uuid_gpt_loader2};" \
41 	"name=trust,size=4M,uuid=${uuid_gpt_atf};" \
42 	"name=boot,size=112M,bootable,uuid=${uuid_gpt_boot};" \
43 	"name=rootfs,size=-,uuid="ROOT_UUID
44 
45 #endif
46 
47 /*
48  * Rockchip SoCs use fixed ENV 32KB@(4MB-32KB)
49  */
50 #define CONFIG_ENV_OFFSET	(SZ_4M - SZ_32K)
51 #define CONFIG_ENV_SIZE		SZ_32K
52 
53 #define CONFIG_DISPLAY_BOARDINFO_LATE
54 
55 #endif /* _ROCKCHIP_COMMON_H_ */
56