rockchip-common.h 984 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * (C) Copyright 2016 Rockchip Electronics Co., Ltd
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #ifndef _ROCKCHIP_COMMON_H_
  7. #define _ROCKCHIP_COMMON_H_
  8. #include <linux/sizes.h>
  9. #ifndef CONFIG_SPL_BUILD
  10. #include <config_distro_defaults.h>
  11. /* First try to boot from SD (index 0), then eMMC (index 1 */
  12. #define BOOT_TARGET_DEVICES(func) \
  13. func(MMC, mmc, 0) \
  14. func(MMC, mmc, 1)
  15. /* Enable gpt partition table */
  16. #define CONFIG_CMD_GPT
  17. #define CONFIG_RANDOM_UUID
  18. #define CONFIG_PARTITION_UUIDS
  19. #define PARTS_DEFAULT \
  20. "uuid_disk=${uuid_gpt_disk};" \
  21. "name=loader1,start=32K,size=4000K,uuid=${uuid_gpt_loader1};" \
  22. "name=reserved1,size=64K,uuid=${uuid_gpt_reserved1};" \
  23. "name=reserved2,size=4M,uuid=${uuid_gpt_reserved2};" \
  24. "name=loader2,size=4MB,uuid=${uuid_gpt_loader2};" \
  25. "name=atf,size=4M,uuid=${uuid_gpt_atf};" \
  26. "name=boot,size=112M,bootable,uuid=${uuid_gpt_boot};" \
  27. "name=rootfs,size=-,uuid=${uuid_gpt_rootfs};\0" \
  28. #endif
  29. #endif /* _ROCKCHIP_COMMON_H_ */