Kconfig 890 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. if TARGET_LS1043ARDB
  2. config SYS_BOARD
  3. default "ls1043ardb"
  4. config SYS_VENDOR
  5. default "freescale"
  6. config SYS_SOC
  7. default "fsl-layerscape"
  8. config SYS_CONFIG_NAME
  9. default "ls1043ardb"
  10. config SYS_HAS_ARMV8_SECURE_BASE
  11. bool "Enable secure address for PSCI image"
  12. depends on ARMV8_PSCI
  13. help
  14. PSCI image can be re-located to secure RAM.
  15. If enabled, please also define the value for ARMV8_SECURE_BASE,
  16. for LS1043ARDB, it could be some address in OCRAM.
  17. if FSL_LS_PPA
  18. config SYS_LS_PPA_FW_ADDR
  19. hex "PPA Firmware Addr"
  20. default 0x60400000 if SYS_LS_PPA_FW_IN_XIP
  21. default 0x400000 if SYS_LS_PPA_FW_IN_MMC || SYS_LS_PPA_FW_IN_NAND
  22. if CHAIN_OF_TRUST
  23. config SYS_LS_PPA_ESBC_ADDR
  24. hex "PPA Firmware HDR Addr"
  25. default 0x60680000 if SYS_LS_PPA_FW_IN_XIP
  26. default 0x680000 if SYS_LS_PPA_FW_IN_MMC || SYS_LS_PPA_FW_IN_NAND
  27. endif
  28. endif
  29. source "board/freescale/common/Kconfig"
  30. endif