platform.mk 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #
  2. # Copyright (c) 2015-2022, ARM Limited and Contributors. All rights reserved.
  3. #
  4. # SPDX-License-Identifier: BSD-3-Clause
  5. #
  6. # Translation tables library
  7. include lib/xlat_tables_v2/xlat_tables.mk
  8. PLAT_INCLUDES := -Iplat/imx/imx8qx/include \
  9. -Iplat/imx/common/include \
  10. # Include GICv3 driver files
  11. include drivers/arm/gic/v3/gicv3.mk
  12. IMX_GIC_SOURCES := ${GICV3_SOURCES} \
  13. plat/common/plat_gicv3.c \
  14. plat/imx/common/plat_imx8_gic.c
  15. BL31_SOURCES += plat/imx/common/lpuart_console.S \
  16. plat/imx/common/imx8_helpers.S \
  17. plat/imx/imx8qx/imx8qx_bl31_setup.c \
  18. plat/imx/imx8qx/imx8qx_psci.c \
  19. plat/imx/common/imx8_topology.c \
  20. plat/imx/common/imx8_psci.c \
  21. plat/imx/common/imx_sip_svc.c \
  22. plat/imx/common/imx_sip_handler.c \
  23. plat/common/plat_psci_common.c \
  24. lib/cpus/aarch64/cortex_a35.S \
  25. ${XLAT_TABLES_LIB_SRCS} \
  26. ${IMX_GIC_SOURCES} \
  27. include plat/imx/common/sci/sci_api.mk
  28. USE_COHERENT_MEM := 1
  29. RESET_TO_BL31 := 1
  30. IMX_DEBUG_UART ?= 0
  31. $(eval $(call add_define,IMX_USE_UART${IMX_DEBUG_UART}))
  32. DEBUG_CONSOLE ?= 0
  33. $(eval $(call add_define,DEBUG_CONSOLE))