platform.mk 594 B

12345678910111213141516171819202122232425262728293031
  1. #
  2. # Copyright 2022 NXP
  3. #
  4. # SPDX-License-Identifier: BSD-3-Clause
  5. #
  6. # board-specific build parameters
  7. BOOT_MODE ?= qspi
  8. BOARD := ls1088aqds
  9. # DDR Compilation Configs
  10. NUM_OF_DDRC := 1
  11. DDRC_NUM_DIMM := 1
  12. DDR_ECC_EN := yes
  13. # On-Board Flash Details
  14. QSPI_FLASH_SZ := 0x4000000
  15. NOR_FLASH_SZ := 0x20000000
  16. BL2_SOURCES += ${BOARD_PATH}/ddr_init.c \
  17. ${BOARD_PATH}/platform.c
  18. SUPPORTED_BOOT_MODE := qspi \
  19. sd \
  20. nor
  21. # Adding platform board build info
  22. include plat/nxp/common/plat_make_helper/plat_common_def.mk
  23. # Adding SoC build info
  24. include plat/nxp/soc-ls1088a/soc.mk