1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * (C) Copyright 2016 Rockchip Electronics Co., Ltd 4 */ 5 6 #ifndef _ROCKCHIP_COMMON_H_ 7 #define _ROCKCHIP_COMMON_H_ 8 #include <linux/sizes.h> 9 10 #define CONFIG_SYS_NS16550_MEM32 11 12 #ifndef CONFIG_SPL_BUILD 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 #endif /* _ROCKCHIP_COMMON_H_ */ 63