Oliver Swede | 8fed2fe | 2019-11-11 11:11:06 +0000 | [diff] [blame] | 1 | # |
johpow01 | aef12f2 | 2020-10-15 13:40:04 -0500 | [diff] [blame] | 2 | # Copyright (c) 2021, Arm Limited. All rights reserved. |
Oliver Swede | 8fed2fe | 2019-11-11 11:11:06 +0000 | [diff] [blame] | 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | |
Chris Kay | e927215 | 2021-09-28 15:52:14 +0100 | [diff] [blame] | 7 | include common/fdt_wrappers.mk |
Andre Przywara | eec45eb | 2020-01-24 15:02:27 +0000 | [diff] [blame] | 8 | include lib/libfdt/libfdt.mk |
| 9 | |
Oliver Swede | 8fed2fe | 2019-11-11 11:11:06 +0000 | [diff] [blame] | 10 | RESET_TO_BL31 := 1 |
| 11 | ifeq (${RESET_TO_BL31}, 0) |
| 12 | $(error "This is a BL31-only port; RESET_TO_BL31 must be enabled") |
| 13 | endif |
| 14 | |
Oliver Swede | 3769b3f | 2019-12-16 14:08:27 +0000 | [diff] [blame] | 15 | ifeq (${ENABLE_PIE}, 1) |
| 16 | override SEPARATE_CODE_AND_RODATA := 1 |
| 17 | endif |
| 18 | |
Oliver Swede | 8fed2fe | 2019-11-11 11:11:06 +0000 | [diff] [blame] | 19 | CTX_INCLUDE_AARCH32_REGS := 0 |
| 20 | ifeq (${CTX_INCLUDE_AARCH32_REGS}, 1) |
| 21 | $(error "This is an AArch64-only port; CTX_INCLUDE_AARCH32_REGS must be disabled") |
| 22 | endif |
| 23 | |
| 24 | ifeq (${TRUSTED_BOARD_BOOT}, 1) |
| 25 | $(error "TRUSTED_BOARD_BOOT must be disabled") |
| 26 | endif |
| 27 | |
Andre Przywara | d9b95cc | 2020-07-08 13:01:00 +0100 | [diff] [blame] | 28 | PRELOADED_BL33_BASE := 0x80080000 |
Oliver Swede | 8fed2fe | 2019-11-11 11:11:06 +0000 | [diff] [blame] | 29 | |
Andre Przywara | d9b95cc | 2020-07-08 13:01:00 +0100 | [diff] [blame] | 30 | FPGA_PRELOADED_DTB_BASE := 0x80070000 |
Oliver Swede | 8fed2fe | 2019-11-11 11:11:06 +0000 | [diff] [blame] | 31 | $(eval $(call add_define,FPGA_PRELOADED_DTB_BASE)) |
Oliver Swede | 8fed2fe | 2019-11-11 11:11:06 +0000 | [diff] [blame] | 32 | |
Andre Przywara | 0176793 | 2020-07-07 10:40:46 +0100 | [diff] [blame] | 33 | FPGA_PRELOADED_CMD_LINE := 0x1000 |
| 34 | $(eval $(call add_define,FPGA_PRELOADED_CMD_LINE)) |
| 35 | |
Tom Cosgrove | 2593a8a | 2021-08-17 08:50:53 +0100 | [diff] [blame] | 36 | ENABLE_AMU := 1 |
| 37 | |
Oliver Swede | 8fed2fe | 2019-11-11 11:11:06 +0000 | [diff] [blame] | 38 | # Treating this as a memory-constrained port for now |
| 39 | USE_COHERENT_MEM := 0 |
| 40 | |
Oliver Swede | 7fbb9b5 | 2020-01-15 10:20:09 +0000 | [diff] [blame] | 41 | # This can be overridden depending on CPU(s) used in the FPGA image |
Oliver Swede | 8fed2fe | 2019-11-11 11:11:06 +0000 | [diff] [blame] | 42 | HW_ASSISTED_COHERENCY := 1 |
| 43 | |
Andre Przywara | 8b50525 | 2020-04-09 10:10:09 +0100 | [diff] [blame] | 44 | PL011_GENERIC_UART := 1 |
| 45 | |
Javier Almansa Sobrino | e1ecd23 | 2020-08-20 18:48:09 +0100 | [diff] [blame] | 46 | SUPPORT_UNKNOWN_MPID ?= 1 |
| 47 | |
Oliver Swede | 7fbb9b5 | 2020-01-15 10:20:09 +0000 | [diff] [blame] | 48 | FPGA_CPU_LIBS := lib/cpus/${ARCH}/aem_generic.S |
| 49 | |
| 50 | # select a different set of CPU files, depending on whether we compile for |
| 51 | # hardware assisted coherency cores or not |
| 52 | ifeq (${HW_ASSISTED_COHERENCY}, 0) |
| 53 | # Cores used without DSU |
| 54 | FPGA_CPU_LIBS += lib/cpus/aarch64/cortex_a35.S \ |
| 55 | lib/cpus/aarch64/cortex_a53.S \ |
| 56 | lib/cpus/aarch64/cortex_a57.S \ |
| 57 | lib/cpus/aarch64/cortex_a72.S \ |
| 58 | lib/cpus/aarch64/cortex_a73.S |
| 59 | else |
| 60 | # AArch64-only cores |
| 61 | FPGA_CPU_LIBS += lib/cpus/aarch64/cortex_a76.S \ |
| 62 | lib/cpus/aarch64/cortex_a76ae.S \ |
| 63 | lib/cpus/aarch64/cortex_a77.S \ |
Jimmy Brisson | 7ec175e | 2020-06-01 16:49:34 -0500 | [diff] [blame] | 64 | lib/cpus/aarch64/cortex_a78.S \ |
Javier Almansa Sobrino | 9faad3c | 2020-10-23 13:22:07 +0100 | [diff] [blame] | 65 | lib/cpus/aarch64/neoverse_n_common.S \ |
Oliver Swede | 7fbb9b5 | 2020-01-15 10:20:09 +0000 | [diff] [blame] | 66 | lib/cpus/aarch64/neoverse_n1.S \ |
Javier Almansa Sobrino | 9faad3c | 2020-10-23 13:22:07 +0100 | [diff] [blame] | 67 | lib/cpus/aarch64/neoverse_n2.S \ |
Oliver Swede | 7fbb9b5 | 2020-01-15 10:20:09 +0000 | [diff] [blame] | 68 | lib/cpus/aarch64/neoverse_e1.S \ |
Jimmy Brisson | 958a0b1 | 2020-09-30 15:28:03 -0500 | [diff] [blame] | 69 | lib/cpus/aarch64/neoverse_v1.S \ |
Jimmy Brisson | 7cc90c4 | 2020-09-30 15:34:51 -0500 | [diff] [blame] | 70 | lib/cpus/aarch64/cortex_a78_ae.S \ |
Oliver Swede | 7fbb9b5 | 2020-01-15 10:20:09 +0000 | [diff] [blame] | 71 | lib/cpus/aarch64/cortex_a65.S \ |
Andre Przywara | cb16767 | 2020-06-25 13:10:38 +0100 | [diff] [blame] | 72 | lib/cpus/aarch64/cortex_a65ae.S \ |
johpow01 | a3810e8 | 2021-05-18 15:23:31 -0500 | [diff] [blame] | 73 | lib/cpus/aarch64/cortex_a510.S \ |
| 74 | lib/cpus/aarch64/cortex_a710.S \ |
johpow01 | cd38ac4 | 2021-03-15 15:07:21 -0500 | [diff] [blame] | 75 | lib/cpus/aarch64/cortex_makalu.S \ |
johpow01 | 4c42c0d | 2021-04-20 17:05:04 -0500 | [diff] [blame] | 76 | lib/cpus/aarch64/cortex_makalu_elp_arm.S \ |
Bipin Ravi | 4da1b0b | 2021-03-16 15:20:58 -0500 | [diff] [blame] | 77 | lib/cpus/aarch64/cortex_a78c.S |
Andre Przywara | cb16767 | 2020-06-25 13:10:38 +0100 | [diff] [blame] | 78 | |
Oliver Swede | 7fbb9b5 | 2020-01-15 10:20:09 +0000 | [diff] [blame] | 79 | # AArch64/AArch32 cores |
| 80 | FPGA_CPU_LIBS += lib/cpus/aarch64/cortex_a55.S \ |
| 81 | lib/cpus/aarch64/cortex_a75.S |
| 82 | endif |
Oliver Swede | 8fed2fe | 2019-11-11 11:11:06 +0000 | [diff] [blame] | 83 | |
Javier Almansa Sobrino | e1ecd23 | 2020-08-20 18:48:09 +0100 | [diff] [blame] | 84 | ifeq (${SUPPORT_UNKNOWN_MPID}, 1) |
| 85 | # Add support for unknown/invalid MPIDs (aarch64 only) |
| 86 | $(eval $(call add_define,SUPPORT_UNKNOWN_MPID)) |
| 87 | FPGA_CPU_LIBS += lib/cpus/aarch64/generic.S |
| 88 | endif |
| 89 | |
Andre Przywara | e1cc130 | 2020-03-25 15:50:38 +0000 | [diff] [blame] | 90 | # Allow detection of GIC-600 |
| 91 | GICV3_SUPPORT_GIC600 := 1 |
Manish Pandey | b21cad7 | 2020-04-03 18:59:20 +0100 | [diff] [blame] | 92 | |
Andre Przywara | 42ba7c9 | 2021-05-18 15:53:05 +0100 | [diff] [blame] | 93 | GIC_ENABLE_V4_EXTN := 1 |
| 94 | |
Manish Pandey | b21cad7 | 2020-04-03 18:59:20 +0100 | [diff] [blame] | 95 | # Include GICv3 driver files |
| 96 | include drivers/arm/gic/v3/gicv3.mk |
| 97 | |
| 98 | FPGA_GIC_SOURCES := ${GICV3_SOURCES} \ |
Oliver Swede | b51da81 | 2019-12-03 14:08:21 +0000 | [diff] [blame] | 99 | plat/common/plat_gicv3.c \ |
| 100 | plat/arm/board/arm_fpga/fpga_gicv3.c |
Oliver Swede | 8fed2fe | 2019-11-11 11:11:06 +0000 | [diff] [blame] | 101 | |
Andre Przywara | eb5cb80 | 2020-08-03 12:54:58 +0100 | [diff] [blame] | 102 | FDT_SOURCES := fdts/arm_fpga.dts |
| 103 | |
Oliver Swede | 8fed2fe | 2019-11-11 11:11:06 +0000 | [diff] [blame] | 104 | PLAT_INCLUDES := -Iplat/arm/board/arm_fpga/include |
| 105 | |
| 106 | PLAT_BL_COMMON_SOURCES := plat/arm/board/arm_fpga/${ARCH}/fpga_helpers.S |
| 107 | |
Chris Kay | e927215 | 2021-09-28 15:52:14 +0100 | [diff] [blame] | 108 | BL31_SOURCES += common/fdt_fixup.c \ |
Andre Przywara | eec45eb | 2020-01-24 15:02:27 +0000 | [diff] [blame] | 109 | drivers/delay_timer/delay_timer.c \ |
Oliver Swede | 8fed2fe | 2019-11-11 11:11:06 +0000 | [diff] [blame] | 110 | drivers/delay_timer/generic_delay_timer.c \ |
| 111 | drivers/arm/pl011/${ARCH}/pl011_console.S \ |
| 112 | plat/common/plat_psci_common.c \ |
| 113 | plat/arm/board/arm_fpga/fpga_pm.c \ |
| 114 | plat/arm/board/arm_fpga/fpga_topology.c \ |
| 115 | plat/arm/board/arm_fpga/fpga_console.c \ |
| 116 | plat/arm/board/arm_fpga/fpga_bl31_setup.c \ |
| 117 | ${FPGA_CPU_LIBS} \ |
| 118 | ${FPGA_GIC_SOURCES} |
| 119 | |
Chris Kay | e927215 | 2021-09-28 15:52:14 +0100 | [diff] [blame] | 120 | BL31_SOURCES += ${FDT_WRAPPERS_SOURCES} |
| 121 | |
Andre Przywara | 45e794f | 2021-10-07 14:19:12 +0100 | [diff] [blame] | 122 | $(eval $(call MAKE_S,$(BUILD_PLAT),plat/arm/board/arm_fpga/rom_trampoline.S,bl31)) |
| 123 | $(eval $(call MAKE_S,$(BUILD_PLAT),plat/arm/board/arm_fpga/kernel_trampoline.S,bl31)) |
| 124 | $(eval $(call MAKE_LD,$(BUILD_PLAT)/build_axf.ld,plat/arm/board/arm_fpga/build_axf.ld.S,bl31)) |
Andre Przywara | 6228e43 | 2020-09-16 17:13:33 +0100 | [diff] [blame] | 125 | |
Andre Przywara | 8c6d92d | 2021-05-14 16:13:28 +0100 | [diff] [blame] | 126 | bl31.axf: bl31 dtbs ${BUILD_PLAT}/rom_trampoline.o ${BUILD_PLAT}/kernel_trampoline.o ${BUILD_PLAT}/build_axf.ld |
Andre Przywara | 6228e43 | 2020-09-16 17:13:33 +0100 | [diff] [blame] | 127 | $(ECHO) " LD $@" |
Andre Przywara | 4d8a6bb | 2021-08-20 16:23:23 +0100 | [diff] [blame] | 128 | $(Q)$(LD) -T ${BUILD_PLAT}/build_axf.ld -L ${BUILD_PLAT} --strip-debug -s -n -o ${BUILD_PLAT}/bl31.axf |
Andre Przywara | 586de5e | 2020-08-03 13:06:38 +0100 | [diff] [blame] | 129 | |
Andre Przywara | 6228e43 | 2020-09-16 17:13:33 +0100 | [diff] [blame] | 130 | all: bl31.axf |