Config.in 926 B

1234567891011121314151617181920212223242526272829303132
  1. config BR2_TARGET_BINARIES_MARVELL
  2. bool "binaries-marvell"
  3. depends on BR2_aarch64
  4. help
  5. Some systems, including Marvell Armada SoC, have a separate
  6. System Control Processor (SCP) for power management, clocks,
  7. reset and system control. ATF Boot Loader stage 2 (BL2) loads
  8. optional SCP_BL2 image into a platform-specific region
  9. of secure memory. This package downloads and installs such
  10. firmwares, which are needed to build ATF.
  11. https://github.com/MarvellEmbeddedProcessors/binaries-marvell/
  12. if BR2_TARGET_BINARIES_MARVELL
  13. choice
  14. prompt "Marvell Armada platform"
  15. config BR2_TARGET_BINARIES_MARVELL_7040
  16. bool "7040"
  17. config BR2_TARGET_BINARIES_MARVELL_8040
  18. bool "8040"
  19. endchoice
  20. config BR2_TARGET_BINARIES_MARVELL_IMAGE
  21. string
  22. default "mrvl_scp_bl2_mss_ap_cp1_a8040.img" if BR2_TARGET_BINARIES_MARVELL_8040
  23. default "mrvl_scp_bl2_mss_ap_cp1_a7040.img" if BR2_TARGET_BINARIES_MARVELL_7040
  24. endif