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 #ifdef CONFIG_ARM64 31 #define ROOT_UUID "B921B045-1DF0-41C3-AF44-4C6F280D3FAE;\0" 32 #else 33 #define ROOT_UUID "69DAD710-2CE4-4E3C-B16C-21A1D49ABED3;\0" 34 #endif 35 #define PARTS_DEFAULT \ 36 "uuid_disk=${uuid_gpt_disk};" \ 37 "name=loader1,start=32K,size=4000K,uuid=${uuid_gpt_loader1};" \ 38 "name=loader2,start=8MB,size=4MB,uuid=${uuid_gpt_loader2};" \ 39 "name=trust,size=4M,uuid=${uuid_gpt_atf};" \ 40 "name=boot,size=112M,bootable,uuid=${uuid_gpt_boot};" \ 41 "name=rootfs,size=-,uuid="ROOT_UUID 42 43 #define PARTS_RKIMG \ 44 "uuid_disk=${uuid_gpt_disk};" \ 45 "name=uboot,start=8MB,size=4MB,uuid=${uuid_gpt_loader2};" \ 46 "name=trust,size=4M,uuid=${uuid_gpt_atf};" \ 47 "name=misc,size=4MB,uuid=${uuid_gpt_misc};" \ 48 "name=resource,size=16MB,uuid=${uuid_gpt_resource};" \ 49 "name=kernel,size=32M,uuid=${uuid_gpt_kernel};" \ 50 "name=boot,size=32M,bootable,uuid=${uuid_gpt_boot};" \ 51 "name=recovery,size=32M,uuid=${uuid_gpt_recovery};" \ 52 "name=backup,size=112M,uuid=${uuid_gpt_backup};" \ 53 "name=cache,size=512M,uuid=${uuid_gpt_cache};" \ 54 "name=system,size=2048M,uuid=${uuid_gpt_system};" \ 55 "name=metadata,size=16M,uuid=${uuid_gpt_metadata};" \ 56 "name=vendor,size=32M,uuid=${uuid_gpt_vendor};" \ 57 "name=oem,size=32M,uuid=${uuid_gpt_oem};" \ 58 "name=frp,size=512K,uuid=${uuid_gpt_frp};" \ 59 "name=security,size=2M,uuid=${uuid_gpt_security};" \ 60 "name=userdata,size=-,uuid=${uuid_gpt_userdata};" 61 62 #define RKIMG_BOOTCOMMAND \ 63 "if mmc dev 0; then setenv devtype mmc; setenv devnum 0;" \ 64 "else if rknand dev 0; then setenv devtype rknand; setenv devnum 0; fi;" \ 65 "fi; boot_android ${devtype} ${devnum};" \ 66 "bootrkp;" 67 68 #endif 69 70 /* 71 * Rockchip SoCs use fixed ENV 32KB@(4MB-32KB) 72 */ 73 #define CONFIG_ENV_OFFSET (SZ_4M - SZ_32K) 74 #define CONFIG_ENV_SIZE SZ_32K 75 76 #define CONFIG_DISPLAY_BOARDINFO_LATE 77 78 #endif /* _ROCKCHIP_COMMON_H_ */ 79