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