platform.mk 732 B

12345678910111213141516171819202122232425262728293031323334
  1. #
  2. # Copyright (c) 2023, Aspeed Technology Inc.
  3. #
  4. # SPDX-License-Identifier: BSD-3-Clause
  5. #
  6. include drivers/arm/gic/v3/gicv3.mk
  7. include lib/xlat_tables_v2/xlat_tables.mk
  8. PLAT_AST2700 := plat/aspeed/ast2700
  9. PLAT_INCLUDES := \
  10. -I${PLAT_AST2700}/include
  11. BL31_SOURCES += \
  12. common/desc_image_load.c \
  13. lib/cpus/aarch64/cortex_a35.S \
  14. plat/common/plat_gicv3.c \
  15. plat/common/plat_psci_common.c \
  16. drivers/ti/uart/aarch64/16550_console.S \
  17. ${PLAT_AST2700}/plat_helpers.S \
  18. ${PLAT_AST2700}/plat_topology.c \
  19. ${PLAT_AST2700}/plat_bl31_setup.c \
  20. ${PLAT_AST2700}/plat_pm.c \
  21. ${GICV3_SOURCES} \
  22. ${XLAT_TABLES_LIB_SRCS}
  23. RESET_TO_BL31 := 1
  24. PROGRAMMABLE_RESET_ADDRESS := 1
  25. COLD_BOOT_SINGLE_CPU := 0
  26. ENABLE_SVE_FOR_NS := 0