platform.mk 750 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #
  2. # Copyright 2018-2021 NXP
  3. #
  4. # SPDX-License-Identifier: BSD-3-Clause
  5. #
  6. # board-specific build parameters
  7. BOOT_MODE ?= nor
  8. BOARD := ls1043ardb
  9. POVDD_ENABLE := no
  10. # DDR Compilation Configs
  11. CONFIG_DDR_NODIMM := 1
  12. NUM_OF_DDRC := 1
  13. DDRC_NUM_DIMM := 0
  14. DDRC_NUM_CS := 4
  15. DDR_ECC_EN := no
  16. CONFIG_STATIC_DDR := 0
  17. # On-Board Flash Details
  18. # 128MB IFC NOR Flash
  19. NOR_FLASH_SZ := 0x8000000
  20. # Platform specific features.
  21. WARM_BOOT := no
  22. # Adding Platform files build files
  23. BL2_SOURCES += ${BOARD_PATH}/ddr_init.c\
  24. ${BOARD_PATH}/platform.c
  25. SUPPORTED_BOOT_MODE := nor \
  26. sd \
  27. nand
  28. # Adding platform board build info
  29. include plat/nxp/common/plat_make_helper/plat_common_def.mk
  30. # Adding SoC build info
  31. include plat/nxp/soc-ls1043a/soc.mk