xlat_mpu.mk 452 B

12345678910111213141516171819
  1. #
  2. # Copyright (c) 2021, Arm Limited and Contributors. All rights reserved.
  3. #
  4. # SPDX-License-Identifier: BSD-3-Clause
  5. #
  6. XLAT_MPU_LIB_V1_SRCS := $(addprefix lib/xlat_mpu/, \
  7. ${ARCH}/enable_mpu.S \
  8. ${ARCH}/xlat_mpu_arch.c \
  9. xlat_mpu_context.c \
  10. xlat_mpu_core.c \
  11. xlat_mpu_utils.c)
  12. XLAT_MPU_LIB_V1 := 1
  13. $(eval $(call add_define,XLAT_MPU_LIB_V1))
  14. ifeq (${ALLOW_XLAT_MPU}, 1)
  15. include lib/xlat_mpu_v2/ro_xlat_mpu.mk
  16. endif