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=reserved1,size=64K,uuid=${uuid_gpt_reserved1};" \
56 	"name=reserved2,size=4M,uuid=${uuid_gpt_reserved2};" \
57 	"name=loader2,size=4MB,uuid=${uuid_gpt_loader2};" \
58 	"name=atf,size=4M,uuid=${uuid_gpt_atf};" \
59 	"name=boot,size=112M,bootable,uuid=${uuid_gpt_boot};" \
60 	"name=rootfs,size=-,uuid="ROOT_UUID
61 
62 #endif
63 
64 /*
65  * Rockchip SoCs use fixed ENV 32KB@(4MB-32KB)
66  */
67 #define CONFIG_ENV_OFFSET	(SZ_4M - SZ_32K)
68 #define CONFIG_ENV_SIZE		SZ_32K
69 
70 #define CONFIG_DISPLAY_BOARDINFO_LATE
71 
72 #endif /* _ROCKCHIP_COMMON_H_ */
73