blob: 3d9e295c4e71273b02b2b7d4ee7977bf613affc9 [file] [log] [blame]
Mingkai Huf3a8e2b2015-10-26 19:47:52 +08001
2if TARGET_LS1043ARDB
3
4config SYS_BOARD
5 default "ls1043ardb"
6
7config SYS_VENDOR
8 default "freescale"
9
10config SYS_SOC
11 default "fsl-layerscape"
12
13config SYS_CONFIG_NAME
14 default "ls1043ardb"
15
macro.wave.z@gmail.comc151cb52016-12-08 11:58:26 +080016config SYS_HAS_ARMV8_SECURE_BASE
17 bool "Enable secure address for PSCI image"
18 depends on ARMV8_PSCI
19 default n
20 help
21 PSCI image can be re-located to secure RAM.
22 If enabled, please also define the value for ARMV8_SECURE_BASE,
23 for LS1043ARDB, it could be some address in OCRAM.
24
Bhaskar Upadhaya7191d452018-05-23 11:03:29 +053025if FSL_LS_PPA
26config SYS_LS_PPA_FW_ADDR
27 hex "PPA Firmware Addr"
28 default 0x60400000 if SYS_LS_PPA_FW_IN_XIP
29 default 0x400000 if SYS_LS_PPA_FW_IN_MMC || SYS_LS_PPA_FW_IN_NAND
30
31if CHAIN_OF_TRUST
32config SYS_LS_PPA_ESBC_ADDR
33 hex "PPA Firmware HDR Addr"
34 default 0x60680000 if SYS_LS_PPA_FW_IN_XIP
35 default 0x680000 if SYS_LS_PPA_FW_IN_MMC || SYS_LS_PPA_FW_IN_NAND
36endif
37endif
38
Tom Rini88077712017-01-22 19:43:10 -050039source "board/freescale/common/Kconfig"
40
Mingkai Huf3a8e2b2015-10-26 19:47:52 +080041endif