Kconfig 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. if TARGET_LS1028AQDS
  2. config SYS_BOARD
  3. default "ls1028a"
  4. config SYS_VENDOR
  5. default "freescale"
  6. config SYS_SOC
  7. default "fsl-layerscape"
  8. config SYS_CONFIG_NAME
  9. default "ls1028aqds"
  10. config EMMC_BOOT
  11. bool "Support for booting from EMMC"
  12. config SYS_TEXT_BASE
  13. default 0x96000000 if SD_BOOT || EMMC_BOOT
  14. default 0x82000000 if TFABOOT
  15. default 0x20100000
  16. if FSL_LS_PPA
  17. config SYS_LS_PPA_FW_ADDR
  18. hex "PPA Firmware Addr"
  19. default 0x20400000 if SYS_LS_PPA_FW_IN_XIP && ARCH_LS1028A
  20. default 0x400000 if SYS_LS_PPA_FW_IN_MMC && ARCH_LS1028A
  21. if CHAIN_OF_TRUST
  22. config SYS_LS_PPA_ESBC_ADDR
  23. hex "PPA header Addr"
  24. default 0x20600000 if SYS_LS_PPA_FW_IN_XIP && ARCH_LS1028A
  25. endif
  26. endif
  27. source "board/freescale/common/Kconfig"
  28. endif
  29. if TARGET_LS1028ARDB
  30. config SYS_BOARD
  31. default "ls1028a"
  32. config SYS_VENDOR
  33. default "freescale"
  34. config SYS_SOC
  35. default "fsl-layerscape"
  36. config SYS_CONFIG_NAME
  37. default "ls1028ardb"
  38. config EMMC_BOOT
  39. bool "Support for booting from EMMC"
  40. config SYS_TEXT_BASE
  41. default 0x96000000 if SD_BOOT || EMMC_BOOT
  42. default 0x82000000 if TFABOOT
  43. default 0x20100000
  44. source "board/freescale/common/Kconfig"
  45. endif