summaryrefslogtreecommitdiff
path: root/board/kontron/sl28/Kconfig
blob: 4078ef186b5313c69b33818887633f1f92f75507 (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
if TARGET_SL28

config SYS_BOARD
	default "sl28"

config SYS_VENDOR
	default "kontron"

config SYS_SOC
	default "fsl-layerscape"

config SYS_CONFIG_NAME
	default "kontron_sl28"

config SYS_TEXT_BASE
	default 0x96000000

config SL28_SPL_LOADS_ATF_BL31
	bool "SPL loads BL31 of the ARM Trusted Firmware"
	select SPL_ATF
	select SPL_ATF_LOAD_IMAGE_V2
	select ARMV8_SEC_FIRMWARE_SUPPORT
	select SEC_FIRMWARE_ARMV8_PSCI
	help
	  Enable this to load a BL31 image by the SPL. You have to
	  provde a bl31.bin in u-boot's root directory.

if SL28_SPL_LOADS_ATF_BL31

config SL28_BL31_ENTRY_ADDR
	hex "Entry point of the BL31 image"
	default 0xfbe00000

endif

config SL28_SPL_LOADS_OPTEE_BL32
	bool "SPL loads OP-TEE Trusted OS as BL32"
	depends on SL28_SPL_LOADS_ATF_BL31
	help
	  Enable this to load a BL32 image by the SPL. You have to
	  provde a tee.bin in u-boot's root directory.

if SL28_SPL_LOADS_OPTEE_BL32

config SL28_BL32_ENTRY_ADDR
	hex "Entry point of the BL32 image"
	default 0xfc000000

endif

endif