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