Kconfig 484 B

12345678910111213141516171819202122232425
  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. endif