Kconfig 901 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. default n
  14. help
  15. PSCI image can be re-located to secure RAM.
  16. If enabled, please also define the value for ARMV8_SECURE_BASE,
  17. for LS1043ARDB, it could be some address in OCRAM.
  18. if FSL_LS_PPA
  19. config SYS_LS_PPA_FW_ADDR
  20. hex "PPA Firmware Addr"
  21. default 0x60400000 if SYS_LS_PPA_FW_IN_XIP
  22. default 0x400000 if SYS_LS_PPA_FW_IN_MMC || SYS_LS_PPA_FW_IN_NAND
  23. if CHAIN_OF_TRUST
  24. config SYS_LS_PPA_ESBC_ADDR
  25. hex "PPA Firmware HDR Addr"
  26. default 0x60680000 if SYS_LS_PPA_FW_IN_XIP
  27. default 0x680000 if SYS_LS_PPA_FW_IN_MMC || SYS_LS_PPA_FW_IN_NAND
  28. endif
  29. endif
  30. source "board/freescale/common/Kconfig"
  31. endif