laurenw-arm | 2ce1e35 | 2023-02-07 13:40:05 -0600 | [diff] [blame] | 1 | # Copyright (c) 2021-2023, Arm Limited. All rights reserved. |
Usama Arif | f151362 | 2021-04-09 17:07:41 +0100 | [diff] [blame] | 2 | # |
| 3 | # SPDX-License-Identifier: BSD-3-Clause |
| 4 | # |
| 5 | |
Chris Kay | e927215 | 2021-09-28 15:52:14 +0100 | [diff] [blame] | 6 | include common/fdt_wrappers.mk |
| 7 | |
Manish V Badarkhe | 9bd1193 | 2022-11-11 09:36:29 +0000 | [diff] [blame] | 8 | ifeq ($(TARGET_PLATFORM), 0) |
Daniel Boulby | 1f7786b | 2023-06-22 15:26:07 +0100 | [diff] [blame] | 9 | $(error Platform ${PLAT}$(TARGET_PLATFORM) is deprecated.) |
Manish V Badarkhe | 9bd1193 | 2022-11-11 09:36:29 +0000 | [diff] [blame] | 10 | endif |
| 11 | |
Rupinderjit Singh | 820b3b6 | 2022-04-04 17:28:41 +0100 | [diff] [blame] | 12 | ifeq ($(shell expr $(TARGET_PLATFORM) \<= 2), 0) |
| 13 | $(error TARGET_PLATFORM must be less than or equal to 2) |
Usama Arif | f151362 | 2021-04-09 17:07:41 +0100 | [diff] [blame] | 14 | endif |
| 15 | |
Olivier Deprez | 7e5597c | 2022-07-20 17:37:23 +0200 | [diff] [blame] | 16 | $(eval $(call add_define,TARGET_PLATFORM)) |
| 17 | |
Usama Arif | f151362 | 2021-04-09 17:07:41 +0100 | [diff] [blame] | 18 | CSS_LOAD_SCP_IMAGES := 1 |
| 19 | |
| 20 | CSS_USE_SCMI_SDS_DRIVER := 1 |
| 21 | |
Manish Pandey | d419e22 | 2023-02-13 12:39:17 +0000 | [diff] [blame] | 22 | ENABLE_FEAT_RAS := 1 |
| 23 | |
Usama Arif | f151362 | 2021-04-09 17:07:41 +0100 | [diff] [blame] | 24 | SDEI_SUPPORT := 0 |
| 25 | |
| 26 | EL3_EXCEPTION_HANDLING := 0 |
| 27 | |
Manish Pandey | 0e3379d | 2022-10-10 11:43:08 +0100 | [diff] [blame] | 28 | HANDLE_EA_EL3_FIRST_NS := 0 |
Usama Arif | f151362 | 2021-04-09 17:07:41 +0100 | [diff] [blame] | 29 | |
| 30 | # System coherency is managed in hardware |
| 31 | HW_ASSISTED_COHERENCY := 1 |
| 32 | |
| 33 | # When building for systems with hardware-assisted coherency, there's no need to |
| 34 | # use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too. |
| 35 | USE_COHERENT_MEM := 0 |
| 36 | |
| 37 | GIC_ENABLE_V4_EXTN := 1 |
| 38 | |
| 39 | # GIC-600 configuration |
| 40 | GICV3_SUPPORT_GIC600 := 1 |
| 41 | |
Usama Arif | 1925c78 | 2021-08-20 20:53:34 +0100 | [diff] [blame] | 42 | # Enable SVE |
Jayanth Dodderi Chidanand | 4e169e7 | 2023-03-31 10:39:22 +0100 | [diff] [blame] | 43 | ENABLE_SVE_FOR_NS := 2 |
Usama Arif | 1925c78 | 2021-08-20 20:53:34 +0100 | [diff] [blame] | 44 | ENABLE_SVE_FOR_SWD := 1 |
Usama Arif | f151362 | 2021-04-09 17:07:41 +0100 | [diff] [blame] | 45 | |
Davidson K | 6536105 | 2021-10-13 18:49:41 +0530 | [diff] [blame] | 46 | # enable trace buffer control registers access to NS by default |
| 47 | ENABLE_TRBE_FOR_NS := 1 |
| 48 | |
| 49 | # enable trace system registers access to NS by default |
| 50 | ENABLE_SYS_REG_TRACE_FOR_NS := 1 |
| 51 | |
| 52 | # enable trace filter control registers access to NS by default |
| 53 | ENABLE_TRF_FOR_NS := 1 |
| 54 | |
Usama Arif | f151362 | 2021-04-09 17:07:41 +0100 | [diff] [blame] | 55 | # Include GICv3 driver files |
| 56 | include drivers/arm/gic/v3/gicv3.mk |
| 57 | |
| 58 | ENT_GIC_SOURCES := ${GICV3_SOURCES} \ |
| 59 | plat/common/plat_gicv3.c \ |
| 60 | plat/arm/common/arm_gicv3.c |
| 61 | |
| 62 | override NEED_BL2U := no |
| 63 | |
| 64 | override ARM_PLAT_MT := 1 |
| 65 | |
| 66 | TC_BASE = plat/arm/board/tc |
| 67 | |
| 68 | PLAT_INCLUDES += -I${TC_BASE}/include/ |
| 69 | |
Usama Arif | f151362 | 2021-04-09 17:07:41 +0100 | [diff] [blame] | 70 | # CPU libraries for TARGET_PLATFORM=1 |
| 71 | ifeq (${TARGET_PLATFORM}, 1) |
Rupinderjit Singh | 820b3b6 | 2022-04-04 17:28:41 +0100 | [diff] [blame] | 72 | TC_CPU_SOURCES += lib/cpus/aarch64/cortex_a510.S \ |
Rupinderjit Singh | 7e46555 | 2022-08-23 11:55:27 +0100 | [diff] [blame] | 73 | lib/cpus/aarch64/cortex_a715.S \ |
| 74 | lib/cpus/aarch64/cortex_x3.S |
Usama Arif | f151362 | 2021-04-09 17:07:41 +0100 | [diff] [blame] | 75 | endif |
| 76 | |
Rupinderjit Singh | 820b3b6 | 2022-04-04 17:28:41 +0100 | [diff] [blame] | 77 | # CPU libraries for TARGET_PLATFORM=2 |
| 78 | ifeq (${TARGET_PLATFORM}, 2) |
Govindraj Raja | ca3caf0 | 2023-06-28 08:49:21 -0500 | [diff] [blame] | 79 | TC_CPU_SOURCES += lib/cpus/aarch64/cortex_a520.S \ |
Govindraj Raja | 37012fb | 2023-06-23 11:28:05 -0500 | [diff] [blame] | 80 | lib/cpus/aarch64/cortex_a720.S \ |
Govindraj Raja | 0a12091 | 2023-06-23 11:09:31 -0500 | [diff] [blame] | 81 | lib/cpus/aarch64/cortex_x4.S |
Rupinderjit Singh | 820b3b6 | 2022-04-04 17:28:41 +0100 | [diff] [blame] | 82 | endif |
| 83 | |
Usama Arif | f151362 | 2021-04-09 17:07:41 +0100 | [diff] [blame] | 84 | INTERCONNECT_SOURCES := ${TC_BASE}/tc_interconnect.c |
| 85 | |
| 86 | PLAT_BL_COMMON_SOURCES += ${TC_BASE}/tc_plat.c \ |
| 87 | ${TC_BASE}/include/tc_helpers.S |
| 88 | |
| 89 | BL1_SOURCES += ${INTERCONNECT_SOURCES} \ |
| 90 | ${TC_CPU_SOURCES} \ |
| 91 | ${TC_BASE}/tc_trusted_boot.c \ |
| 92 | ${TC_BASE}/tc_err.c \ |
| 93 | drivers/arm/sbsa/sbsa.c |
| 94 | |
Usama Arif | f151362 | 2021-04-09 17:07:41 +0100 | [diff] [blame] | 95 | BL2_SOURCES += ${TC_BASE}/tc_security.c \ |
| 96 | ${TC_BASE}/tc_err.c \ |
| 97 | ${TC_BASE}/tc_trusted_boot.c \ |
Usama Arif | a49bd49 | 2021-08-17 17:57:10 +0100 | [diff] [blame] | 98 | ${TC_BASE}/tc_bl2_setup.c \ |
Usama Arif | f151362 | 2021-04-09 17:07:41 +0100 | [diff] [blame] | 99 | lib/utils/mem_region.c \ |
| 100 | drivers/arm/tzc/tzc400.c \ |
| 101 | plat/arm/common/arm_tzc400.c \ |
| 102 | plat/arm/common/arm_nor_psci_mem_protect.c |
| 103 | |
| 104 | BL31_SOURCES += ${INTERCONNECT_SOURCES} \ |
| 105 | ${TC_CPU_SOURCES} \ |
| 106 | ${ENT_GIC_SOURCES} \ |
| 107 | ${TC_BASE}/tc_bl31_setup.c \ |
| 108 | ${TC_BASE}/tc_topology.c \ |
Usama Arif | a49bd49 | 2021-08-17 17:57:10 +0100 | [diff] [blame] | 109 | lib/fconf/fconf.c \ |
| 110 | lib/fconf/fconf_dyn_cfg_getter.c \ |
Usama Arif | f151362 | 2021-04-09 17:07:41 +0100 | [diff] [blame] | 111 | drivers/cfi/v2m/v2m_flash.c \ |
| 112 | lib/utils/mem_region.c \ |
Madhukar Pappireddy | e108df2 | 2023-03-22 15:40:40 -0500 | [diff] [blame] | 113 | plat/arm/common/arm_nor_psci_mem_protect.c \ |
| 114 | drivers/arm/sbsa/sbsa.c |
Usama Arif | f151362 | 2021-04-09 17:07:41 +0100 | [diff] [blame] | 115 | |
Chris Kay | e927215 | 2021-09-28 15:52:14 +0100 | [diff] [blame] | 116 | BL31_SOURCES += ${FDT_WRAPPERS_SOURCES} |
| 117 | |
Usama Arif | f151362 | 2021-04-09 17:07:41 +0100 | [diff] [blame] | 118 | # Add the FDT_SOURCES and options for Dynamic Config |
| 119 | FDT_SOURCES += ${TC_BASE}/fdts/${PLAT}_fw_config.dts \ |
| 120 | ${TC_BASE}/fdts/${PLAT}_tb_fw_config.dts |
| 121 | FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_fw_config.dtb |
| 122 | TB_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_tb_fw_config.dtb |
| 123 | |
| 124 | # Add the FW_CONFIG to FIP and specify the same to certtool |
| 125 | $(eval $(call TOOL_ADD_PAYLOAD,${FW_CONFIG},--fw-config,${FW_CONFIG})) |
| 126 | # Add the TB_FW_CONFIG to FIP and specify the same to certtool |
| 127 | $(eval $(call TOOL_ADD_PAYLOAD,${TB_FW_CONFIG},--tb-fw-config,${TB_FW_CONFIG})) |
| 128 | |
| 129 | ifeq (${SPD},spmd) |
| 130 | ifeq ($(ARM_SPMC_MANIFEST_DTS),) |
| 131 | ARM_SPMC_MANIFEST_DTS := ${TC_BASE}/fdts/${PLAT}_spmc_manifest.dts |
| 132 | endif |
| 133 | |
| 134 | FDT_SOURCES += ${ARM_SPMC_MANIFEST_DTS} |
| 135 | TC_TOS_FW_CONFIG := ${BUILD_PLAT}/fdts/$(notdir $(basename ${ARM_SPMC_MANIFEST_DTS})).dtb |
| 136 | |
| 137 | # Add the TOS_FW_CONFIG to FIP and specify the same to certtool |
| 138 | $(eval $(call TOOL_ADD_PAYLOAD,${TC_TOS_FW_CONFIG},--tos-fw-config,${TC_TOS_FW_CONFIG})) |
| 139 | endif |
| 140 | |
| 141 | #Device tree |
| 142 | TC_HW_CONFIG_DTS := fdts/tc.dts |
| 143 | TC_HW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}.dtb |
| 144 | FDT_SOURCES += ${TC_HW_CONFIG_DTS} |
| 145 | $(eval TC_HW_CONFIG := ${BUILD_PLAT}/$(patsubst %.dts,%.dtb,$(TC_HW_CONFIG_DTS))) |
| 146 | |
| 147 | # Add the HW_CONFIG to FIP and specify the same to certtool |
| 148 | $(eval $(call TOOL_ADD_PAYLOAD,${TC_HW_CONFIG},--hw-config,${TC_HW_CONFIG})) |
| 149 | |
| 150 | override CTX_INCLUDE_AARCH32_REGS := 0 |
| 151 | |
| 152 | override CTX_INCLUDE_PAUTH_REGS := 1 |
| 153 | |
Andre Przywara | 30661a9 | 2023-02-03 15:30:14 +0000 | [diff] [blame] | 154 | override ENABLE_SPE_FOR_NS := 0 |
Usama Arif | f151362 | 2021-04-09 17:07:41 +0100 | [diff] [blame] | 155 | |
Andre Przywara | 0b7f1b0 | 2023-03-21 13:53:19 +0000 | [diff] [blame] | 156 | override ENABLE_FEAT_AMU := 1 |
Chris Kay | c2d29ba | 2021-05-18 18:49:51 +0100 | [diff] [blame] | 157 | override ENABLE_AMU_AUXILIARY_COUNTERS := 1 |
| 158 | override ENABLE_AMU_FCONF := 1 |
| 159 | |
| 160 | override ENABLE_MPMM := 1 |
| 161 | override ENABLE_MPMM_FCONF := 1 |
Usama Arif | f151362 | 2021-04-09 17:07:41 +0100 | [diff] [blame] | 162 | |
Tamas Ban | ede4f05 | 2022-09-16 16:26:15 +0200 | [diff] [blame] | 163 | # Include Measured Boot makefile before any Crypto library makefile. |
| 164 | # Crypto library makefile may need default definitions of Measured Boot build |
| 165 | # flags present in Measured Boot makefile. |
| 166 | ifeq (${MEASURED_BOOT},1) |
| 167 | MEASURED_BOOT_MK := drivers/measured_boot/rss/rss_measured_boot.mk |
| 168 | $(info Including ${MEASURED_BOOT_MK}) |
| 169 | include ${MEASURED_BOOT_MK} |
| 170 | $(info Including rss_comms.mk) |
| 171 | include drivers/arm/rss/rss_comms.mk |
| 172 | |
| 173 | BL1_SOURCES += ${MEASURED_BOOT_SOURCES} \ |
| 174 | plat/arm/board/tc/tc_common_measured_boot.c \ |
| 175 | plat/arm/board/tc/tc_bl1_measured_boot.c \ |
| 176 | lib/psa/measured_boot.c \ |
| 177 | ${RSS_COMMS_SOURCES} |
| 178 | |
| 179 | BL2_SOURCES += ${MEASURED_BOOT_SOURCES} \ |
| 180 | plat/arm/board/tc/tc_common_measured_boot.c \ |
| 181 | plat/arm/board/tc/tc_bl2_measured_boot.c \ |
| 182 | lib/psa/measured_boot.c \ |
| 183 | ${RSS_COMMS_SOURCES} |
| 184 | |
| 185 | PLAT_INCLUDES += -Iinclude/lib/psa |
| 186 | |
| 187 | endif |
| 188 | |
laurenw-arm | 4c4181c | 2023-05-04 14:55:37 -0500 | [diff] [blame] | 189 | ifneq (${PLATFORM_TEST},) |
laurenw-arm | 15aac38 | 2023-07-17 12:32:46 -0500 | [diff] [blame] | 190 | # Add this include as first, before arm_common.mk. This is necessary |
| 191 | # because arm_common.mk builds Mbed TLS, and platform_test.mk can |
| 192 | # change the list of Mbed TLS files that are to be compiled |
| 193 | # (LIBMBEDTLS_SRCS). |
| 194 | include plat/arm/board/tc/platform_test.mk |
laurenw-arm | 2ce1e35 | 2023-02-07 13:40:05 -0600 | [diff] [blame] | 195 | endif |
| 196 | |
Mate Toth-Pal | 14ba4af | 2022-10-21 14:24:49 +0200 | [diff] [blame] | 197 | |
Usama Arif | f151362 | 2021-04-09 17:07:41 +0100 | [diff] [blame] | 198 | include plat/arm/common/arm_common.mk |
| 199 | include plat/arm/css/common/css_common.mk |
| 200 | include plat/arm/soc/common/soc_css.mk |
| 201 | include plat/arm/board/common/board_common.mk |