1# 2# Copyright (c) 2020, ARM Limited and Contributors. All rights reserved. 3# 4# SPDX-License-Identifier: BSD-3-Clause 5# 6 7include lib/libfdt/libfdt.mk 8 9RESET_TO_BL31 := 1 10ifeq (${RESET_TO_BL31}, 0) 11$(error "This is a BL31-only port; RESET_TO_BL31 must be enabled") 12endif 13 14ifeq (${ENABLE_PIE}, 1) 15override SEPARATE_CODE_AND_RODATA := 1 16endif 17 18CTX_INCLUDE_AARCH32_REGS := 0 19ifeq (${CTX_INCLUDE_AARCH32_REGS}, 1) 20$(error "This is an AArch64-only port; CTX_INCLUDE_AARCH32_REGS must be disabled") 21endif 22 23ifeq (${TRUSTED_BOARD_BOOT}, 1) 24$(error "TRUSTED_BOARD_BOOT must be disabled") 25endif 26 27ifndef PRELOADED_BL33_BASE 28$(error "PRELOADED_BL33_BASE is not set") 29endif 30 31ifndef FPGA_PRELOADED_DTB_BASE 32$(error "FPGA_PRELOADED_DTB_BASE is not set") 33else 34$(eval $(call add_define,FPGA_PRELOADED_DTB_BASE)) 35endif 36 37# Treating this as a memory-constrained port for now 38USE_COHERENT_MEM := 0 39 40# This can be overridden depending on CPU(s) used in the FPGA image 41HW_ASSISTED_COHERENCY := 1 42 43PL011_GENERIC_UART := 1 44 45FPGA_CPU_LIBS := lib/cpus/${ARCH}/aem_generic.S 46 47# select a different set of CPU files, depending on whether we compile for 48# hardware assisted coherency cores or not 49ifeq (${HW_ASSISTED_COHERENCY}, 0) 50# Cores used without DSU 51 FPGA_CPU_LIBS += lib/cpus/aarch64/cortex_a35.S \ 52 lib/cpus/aarch64/cortex_a53.S \ 53 lib/cpus/aarch64/cortex_a57.S \ 54 lib/cpus/aarch64/cortex_a72.S \ 55 lib/cpus/aarch64/cortex_a73.S 56else 57# AArch64-only cores 58 FPGA_CPU_LIBS += lib/cpus/aarch64/cortex_a76.S \ 59 lib/cpus/aarch64/cortex_a76ae.S \ 60 lib/cpus/aarch64/cortex_a77.S \ 61 lib/cpus/aarch64/cortex_a78.S \ 62 lib/cpus/aarch64/neoverse_n1.S \ 63 lib/cpus/aarch64/neoverse_e1.S \ 64 lib/cpus/aarch64/neoverse_zeus.S \ 65 lib/cpus/aarch64/cortex_hercules_ae.S \ 66 lib/cpus/aarch64/cortex_a65.S \ 67 lib/cpus/aarch64/cortex_a65ae.S 68# AArch64/AArch32 cores 69 FPGA_CPU_LIBS += lib/cpus/aarch64/cortex_a55.S \ 70 lib/cpus/aarch64/cortex_a75.S 71endif 72 73# Allow detection of GIC-600 74GICV3_SUPPORT_GIC600 := 1 75 76# Include GICv3 driver files 77include drivers/arm/gic/v3/gicv3.mk 78 79FPGA_GIC_SOURCES := ${GICV3_SOURCES} \ 80 plat/common/plat_gicv3.c \ 81 plat/arm/board/arm_fpga/fpga_gicv3.c 82 83PLAT_INCLUDES := -Iplat/arm/board/arm_fpga/include 84 85PLAT_BL_COMMON_SOURCES := plat/arm/board/arm_fpga/${ARCH}/fpga_helpers.S 86 87BL31_SOURCES += common/fdt_wrappers.c \ 88 drivers/delay_timer/delay_timer.c \ 89 drivers/delay_timer/generic_delay_timer.c \ 90 drivers/arm/pl011/${ARCH}/pl011_console.S \ 91 plat/common/plat_psci_common.c \ 92 plat/arm/board/arm_fpga/fpga_pm.c \ 93 plat/arm/board/arm_fpga/fpga_topology.c \ 94 plat/arm/board/arm_fpga/fpga_console.c \ 95 plat/arm/board/arm_fpga/fpga_bl31_setup.c \ 96 ${FPGA_CPU_LIBS} \ 97 ${FPGA_GIC_SOURCES} 98 99all: bl31 100