Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 1 | # |
Manish V Badarkhe | eba13bd | 2022-01-08 23:08:02 +0000 | [diff] [blame] | 2 | # Copyright (c) 2015-2022, Arm Limited and Contributors. All rights reserved. |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 3 | # |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | # SPDX-License-Identifier: BSD-3-Clause |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 5 | # |
| 6 | |
Chris Kay | e927215 | 2021-09-28 15:52:14 +0100 | [diff] [blame] | 7 | include common/fdt_wrappers.mk |
| 8 | |
Soby Mathew | 0d268dc | 2016-07-11 14:13:56 +0100 | [diff] [blame] | 9 | ifeq (${ARCH}, aarch64) |
| 10 | # On ARM standard platorms, the TSP can execute from Trusted SRAM, Trusted |
| 11 | # DRAM (if available) or the TZC secured area of DRAM. |
Dimitris Papastamos | 8a41859 | 2018-01-02 10:25:50 +0000 | [diff] [blame] | 12 | # TZC secured DRAM is the default. |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 13 | |
Dimitris Papastamos | 8a41859 | 2018-01-02 10:25:50 +0000 | [diff] [blame] | 14 | ARM_TSP_RAM_LOCATION ?= dram |
Qixiang Xu | c7b12c5 | 2017-10-13 09:04:12 +0800 | [diff] [blame] | 15 | |
Soby Mathew | 0d268dc | 2016-07-11 14:13:56 +0100 | [diff] [blame] | 16 | ifeq (${ARM_TSP_RAM_LOCATION}, tsram) |
| 17 | ARM_TSP_RAM_LOCATION_ID = ARM_TRUSTED_SRAM_ID |
| 18 | else ifeq (${ARM_TSP_RAM_LOCATION}, tdram) |
| 19 | ARM_TSP_RAM_LOCATION_ID = ARM_TRUSTED_DRAM_ID |
| 20 | else ifeq (${ARM_TSP_RAM_LOCATION}, dram) |
| 21 | ARM_TSP_RAM_LOCATION_ID = ARM_DRAM_ID |
| 22 | else |
| 23 | $(error "Unsupported ARM_TSP_RAM_LOCATION value") |
| 24 | endif |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 25 | |
Soby Mathew | 0d268dc | 2016-07-11 14:13:56 +0100 | [diff] [blame] | 26 | # Process flags |
Soby Mathew | 0d268dc | 2016-07-11 14:13:56 +0100 | [diff] [blame] | 27 | # Process ARM_BL31_IN_DRAM flag |
| 28 | ARM_BL31_IN_DRAM := 0 |
| 29 | $(eval $(call assert_boolean,ARM_BL31_IN_DRAM)) |
| 30 | $(eval $(call add_define,ARM_BL31_IN_DRAM)) |
Roberto Vargas | ac6dc35 | 2017-10-20 10:46:23 +0100 | [diff] [blame] | 31 | else |
| 32 | ARM_TSP_RAM_LOCATION_ID = ARM_TRUSTED_SRAM_ID |
Soby Mathew | 0d268dc | 2016-07-11 14:13:56 +0100 | [diff] [blame] | 33 | endif |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 34 | |
Roberto Vargas | ac6dc35 | 2017-10-20 10:46:23 +0100 | [diff] [blame] | 35 | $(eval $(call add_define,ARM_TSP_RAM_LOCATION_ID)) |
| 36 | |
| 37 | |
Soby Mathew | 7799cf7 | 2015-04-16 14:49:09 +0100 | [diff] [blame] | 38 | # For the original power-state parameter format, the State-ID can be encoded |
| 39 | # according to the recommended encoding or zero. This flag determines which |
| 40 | # State-ID encoding to be parsed. |
| 41 | ARM_RECOM_STATE_ID_ENC := 0 |
| 42 | |
Douglas Raillard | 66933ff | 2016-11-07 17:29:34 +0000 | [diff] [blame] | 43 | # If the PSCI_EXTENDED_STATE_ID is set, then ARM_RECOM_STATE_ID_ENC need to |
| 44 | # be set. Else throw a build error. |
Soby Mathew | 7799cf7 | 2015-04-16 14:49:09 +0100 | [diff] [blame] | 45 | ifeq (${PSCI_EXTENDED_STATE_ID}, 1) |
| 46 | ifeq (${ARM_RECOM_STATE_ID_ENC}, 0) |
Douglas Raillard | 66933ff | 2016-11-07 17:29:34 +0000 | [diff] [blame] | 47 | $(error Build option ARM_RECOM_STATE_ID_ENC needs to be set if \ |
| 48 | PSCI_EXTENDED_STATE_ID is set for ARM platforms) |
Soby Mathew | 7799cf7 | 2015-04-16 14:49:09 +0100 | [diff] [blame] | 49 | endif |
| 50 | endif |
| 51 | |
| 52 | # Process ARM_RECOM_STATE_ID_ENC flag |
| 53 | $(eval $(call assert_boolean,ARM_RECOM_STATE_ID_ENC)) |
| 54 | $(eval $(call add_define,ARM_RECOM_STATE_ID_ENC)) |
| 55 | |
Juan Castillo | b6132f1 | 2015-10-06 14:01:35 +0100 | [diff] [blame] | 56 | # Process ARM_DISABLE_TRUSTED_WDOG flag |
Zelalem Aweke | af7e3a4 | 2021-10-01 12:30:49 -0500 | [diff] [blame] | 57 | # By default, Trusted Watchdog is always enabled unless |
| 58 | # SPIN_ON_BL1_EXIT or ENABLE_RME is set |
Juan Castillo | b6132f1 | 2015-10-06 14:01:35 +0100 | [diff] [blame] | 59 | ARM_DISABLE_TRUSTED_WDOG := 0 |
Zelalem Aweke | af7e3a4 | 2021-10-01 12:30:49 -0500 | [diff] [blame] | 60 | ifneq ($(filter 1,${SPIN_ON_BL1_EXIT} ${ENABLE_RME}),) |
Juan Castillo | b6132f1 | 2015-10-06 14:01:35 +0100 | [diff] [blame] | 61 | ARM_DISABLE_TRUSTED_WDOG := 1 |
| 62 | endif |
| 63 | $(eval $(call assert_boolean,ARM_DISABLE_TRUSTED_WDOG)) |
| 64 | $(eval $(call add_define,ARM_DISABLE_TRUSTED_WDOG)) |
| 65 | |
Juan Castillo | aadf19a | 2015-11-06 16:02:32 +0000 | [diff] [blame] | 66 | # Process ARM_CONFIG_CNTACR |
| 67 | ARM_CONFIG_CNTACR := 1 |
| 68 | $(eval $(call assert_boolean,ARM_CONFIG_CNTACR)) |
| 69 | $(eval $(call add_define,ARM_CONFIG_CNTACR)) |
| 70 | |
David Wang | 0ba499f | 2016-03-07 11:02:57 +0800 | [diff] [blame] | 71 | # Process ARM_BL31_IN_DRAM flag |
| 72 | ARM_BL31_IN_DRAM := 0 |
| 73 | $(eval $(call assert_boolean,ARM_BL31_IN_DRAM)) |
| 74 | $(eval $(call add_define,ARM_BL31_IN_DRAM)) |
| 75 | |
Summer Qin | 93c812f | 2017-02-28 16:46:17 +0000 | [diff] [blame] | 76 | # Process ARM_PLAT_MT flag |
| 77 | ARM_PLAT_MT := 0 |
| 78 | $(eval $(call assert_boolean,ARM_PLAT_MT)) |
| 79 | $(eval $(call add_define,ARM_PLAT_MT)) |
| 80 | |
Antonio Nino Diaz | f09d003 | 2017-04-11 14:04:56 +0100 | [diff] [blame] | 81 | # Use translation tables library v2 by default |
| 82 | ARM_XLAT_TABLES_LIB_V1 := 0 |
| 83 | $(eval $(call assert_boolean,ARM_XLAT_TABLES_LIB_V1)) |
| 84 | $(eval $(call add_define,ARM_XLAT_TABLES_LIB_V1)) |
| 85 | |
Antonio Nino Diaz | d9166ac | 2018-05-11 11:15:10 +0100 | [diff] [blame] | 86 | # Don't have the Linux kernel as a BL33 image by default |
| 87 | ARM_LINUX_KERNEL_AS_BL33 := 0 |
| 88 | $(eval $(call assert_boolean,ARM_LINUX_KERNEL_AS_BL33)) |
| 89 | $(eval $(call add_define,ARM_LINUX_KERNEL_AS_BL33)) |
| 90 | |
| 91 | ifeq (${ARM_LINUX_KERNEL_AS_BL33},1) |
Andre Przywara | 6a3ac4e | 2021-02-08 17:40:48 +0000 | [diff] [blame] | 92 | ifneq (${ARCH},aarch64) |
Manish Pandey | 37c4ec2 | 2018-11-02 13:28:25 +0000 | [diff] [blame] | 93 | ifneq (${RESET_TO_SP_MIN},1) |
| 94 | $(error "ARM_LINUX_KERNEL_AS_BL33 is only available if RESET_TO_SP_MIN=1.") |
| 95 | endif |
Antonio Nino Diaz | d9166ac | 2018-05-11 11:15:10 +0100 | [diff] [blame] | 96 | endif |
| 97 | ifndef PRELOADED_BL33_BASE |
| 98 | $(error "PRELOADED_BL33_BASE must be set if ARM_LINUX_KERNEL_AS_BL33 is used.") |
| 99 | endif |
Zelalem Aweke | 1e8e3fd | 2021-07-26 21:39:05 -0500 | [diff] [blame] | 100 | ifeq (${RESET_TO_BL31},1) |
| 101 | ifndef ARM_PRELOADED_DTB_BASE |
| 102 | $(error "ARM_PRELOADED_DTB_BASE must be set if ARM_LINUX_KERNEL_AS_BL33 is |
| 103 | used with RESET_TO_BL31.") |
| 104 | endif |
| 105 | $(eval $(call add_define,ARM_PRELOADED_DTB_BASE)) |
Antonio Nino Diaz | d9166ac | 2018-05-11 11:15:10 +0100 | [diff] [blame] | 106 | endif |
Antonio Nino Diaz | d9166ac | 2018-05-11 11:15:10 +0100 | [diff] [blame] | 107 | endif |
| 108 | |
Mikael Olsson | 7da6619 | 2021-02-12 17:30:22 +0100 | [diff] [blame] | 109 | # Arm Ethos-N NPU SiP service |
| 110 | ARM_ETHOSN_NPU_DRIVER := 0 |
| 111 | $(eval $(call assert_boolean,ARM_ETHOSN_NPU_DRIVER)) |
| 112 | $(eval $(call add_define,ARM_ETHOSN_NPU_DRIVER)) |
| 113 | |
Antonio Nino Diaz | 01b6cb9 | 2017-05-24 14:11:07 +0100 | [diff] [blame] | 114 | # Use an implementation of SHA-256 with a smaller memory footprint but reduced |
| 115 | # speed. |
| 116 | $(eval $(call add_define,MBEDTLS_SHA256_SMALLER)) |
| 117 | |
Summer Qin | 8072678 | 2017-04-20 16:28:39 +0100 | [diff] [blame] | 118 | # Add the build options to pack Trusted OS Extra1 and Trusted OS Extra2 images |
| 119 | # in the FIP if the platform requires. |
| 120 | ifneq ($(BL32_EXTRA1),) |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 121 | $(eval $(call TOOL_ADD_IMG,bl32_extra1,--tos-fw-extra1)) |
Summer Qin | 8072678 | 2017-04-20 16:28:39 +0100 | [diff] [blame] | 122 | endif |
| 123 | ifneq ($(BL32_EXTRA2),) |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 124 | $(eval $(call TOOL_ADD_IMG,bl32_extra2,--tos-fw-extra2)) |
Summer Qin | 8072678 | 2017-04-20 16:28:39 +0100 | [diff] [blame] | 125 | endif |
| 126 | |
Soby Mathew | 421dbc4 | 2016-05-23 16:07:53 +0100 | [diff] [blame] | 127 | # Enable PSCI_STAT_COUNT/RESIDENCY APIs on ARM platforms |
Soby Mathew | 0d268dc | 2016-07-11 14:13:56 +0100 | [diff] [blame] | 128 | ENABLE_PSCI_STAT := 1 |
dp-arm | 66abfbe | 2017-01-31 13:01:04 +0000 | [diff] [blame] | 129 | ENABLE_PMF := 1 |
Soby Mathew | 421dbc4 | 2016-05-23 16:07:53 +0100 | [diff] [blame] | 130 | |
Alexei Fedorov | 2381d2e | 2020-09-01 15:38:32 +0100 | [diff] [blame] | 131 | # Override the standard libc with optimised libc_asm |
| 132 | OVERRIDE_LIBC := 1 |
| 133 | ifeq (${OVERRIDE_LIBC},1) |
| 134 | include lib/libc/libc_asm.mk |
| 135 | endif |
| 136 | |
Sandrine Bailleux | ecdc4d3 | 2016-07-08 14:38:16 +0100 | [diff] [blame] | 137 | # On ARM platforms, separate the code and read-only data sections to allow |
| 138 | # mapping the former as executable and the latter as execute-never. |
| 139 | SEPARATE_CODE_AND_RODATA := 1 |
| 140 | |
Madhukar Pappireddy | d741944 | 2020-01-27 15:38:26 -0600 | [diff] [blame] | 141 | # On ARM platforms, disable SEPARATE_NOBITS_REGION by default. Both PROGBITS |
| 142 | # and NOBITS sections of BL31 image are adjacent to each other and loaded |
| 143 | # into Trusted SRAM. |
| 144 | SEPARATE_NOBITS_REGION := 0 |
| 145 | |
| 146 | # In order to support SEPARATE_NOBITS_REGION for Arm platforms, we need to load |
| 147 | # BL31 PROGBITS into secure DRAM space and BL31 NOBITS into SRAM. Hence mandate |
| 148 | # the build to require that ARM_BL31_IN_DRAM is enabled as well. |
| 149 | ifeq ($(SEPARATE_NOBITS_REGION),1) |
| 150 | ifneq ($(ARM_BL31_IN_DRAM),1) |
| 151 | $(error For SEPARATE_NOBITS_REGION, ARM_BL31_IN_DRAM must be enabled) |
| 152 | endif |
| 153 | ifneq ($(RECLAIM_INIT_CODE),0) |
| 154 | $(error For SEPARATE_NOBITS_REGION, RECLAIM_INIT_CODE cannot be supported) |
| 155 | endif |
| 156 | endif |
| 157 | |
Soby Mathew | 7e4d665 | 2017-05-10 11:50:30 +0100 | [diff] [blame] | 158 | # Disable ARM Cryptocell by default |
| 159 | ARM_CRYPTOCELL_INTEG := 0 |
| 160 | $(eval $(call assert_boolean,ARM_CRYPTOCELL_INTEG)) |
| 161 | $(eval $(call add_define,ARM_CRYPTOCELL_INTEG)) |
| 162 | |
Manish Pandey | 928da86 | 2021-06-10 15:22:48 +0100 | [diff] [blame] | 163 | # Enable PIE support for RESET_TO_BL31/RESET_TO_SP_MIN case |
| 164 | ifneq ($(filter 1,${RESET_TO_BL31} ${RESET_TO_SP_MIN}),) |
| 165 | ENABLE_PIE := 1 |
Manish Pandey | 2207e93 | 2019-11-06 13:17:46 +0000 | [diff] [blame] | 166 | endif |
| 167 | |
Soby Mathew | b985648 | 2018-09-18 11:42:42 +0100 | [diff] [blame] | 168 | # CryptoCell integration relies on coherent buffers for passing data from |
| 169 | # the AP CPU to the CryptoCell |
| 170 | ifeq (${ARM_CRYPTOCELL_INTEG},1) |
| 171 | ifeq (${USE_COHERENT_MEM},0) |
| 172 | $(error "ARM_CRYPTOCELL_INTEG needs USE_COHERENT_MEM to be set.") |
| 173 | endif |
| 174 | endif |
| 175 | |
Manish V Badarkhe | dd6f252 | 2021-02-22 17:30:17 +0000 | [diff] [blame] | 176 | # Disable GPT parser support, use FIP image by default |
| 177 | ARM_GPT_SUPPORT := 0 |
| 178 | $(eval $(call assert_boolean,ARM_GPT_SUPPORT)) |
| 179 | $(eval $(call add_define,ARM_GPT_SUPPORT)) |
| 180 | |
| 181 | # Include necessary sources to parse GPT image |
| 182 | ifeq (${ARM_GPT_SUPPORT}, 1) |
| 183 | BL2_SOURCES += drivers/partition/gpt.c \ |
| 184 | drivers/partition/partition.c |
| 185 | endif |
| 186 | |
Manish V Badarkhe | 7a86792 | 2021-04-22 14:41:27 +0100 | [diff] [blame] | 187 | # Enable CRC instructions via extension for ARMv8-A CPUs. |
| 188 | # For ARMv8.1-A, and onwards CRC instructions are default enabled. |
| 189 | # Enable HW computed CRC support unconditionally in BL2 component. |
| 190 | ifeq (${ARM_ARCH_MINOR},0) |
| 191 | BL2_CPPFLAGS += -march=armv8-a+crc |
| 192 | endif |
| 193 | |
Manish V Badarkhe | d2f0a7a | 2021-06-25 23:43:33 +0100 | [diff] [blame] | 194 | ifeq ($(PSA_FWU_SUPPORT),1) |
| 195 | # GPT support is recommended as per PSA FWU specification hence |
| 196 | # PSA FWU implementation is tightly coupled with GPT support, |
| 197 | # and it does not support other formats. |
| 198 | ifneq ($(ARM_GPT_SUPPORT),1) |
| 199 | $(error For PSA_FWU_SUPPORT, ARM_GPT_SUPPORT must be enabled) |
| 200 | endif |
| 201 | FWU_MK := drivers/fwu/fwu.mk |
| 202 | $(info Including ${FWU_MK}) |
| 203 | include ${FWU_MK} |
| 204 | endif |
| 205 | |
Soby Mathew | 0d268dc | 2016-07-11 14:13:56 +0100 | [diff] [blame] | 206 | ifeq (${ARCH}, aarch64) |
| 207 | PLAT_INCLUDES += -Iinclude/plat/arm/common/aarch64 |
| 208 | endif |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 209 | |
Antonio Nino Diaz | f09d003 | 2017-04-11 14:04:56 +0100 | [diff] [blame] | 210 | PLAT_BL_COMMON_SOURCES += plat/arm/common/${ARCH}/arm_helpers.S \ |
Antonio Nino Diaz | 23ede6a | 2018-06-19 09:29:36 +0100 | [diff] [blame] | 211 | plat/arm/common/arm_common.c \ |
| 212 | plat/arm/common/arm_console.c |
Antonio Nino Diaz | f09d003 | 2017-04-11 14:04:56 +0100 | [diff] [blame] | 213 | |
| 214 | ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1) |
Gary Morrison | 3d7f654 | 2021-01-27 13:08:47 -0600 | [diff] [blame] | 215 | PLAT_BL_COMMON_SOURCES += lib/xlat_tables/xlat_tables_common.c \ |
Antonio Nino Diaz | f09d003 | 2017-04-11 14:04:56 +0100 | [diff] [blame] | 216 | lib/xlat_tables/${ARCH}/xlat_tables.c |
| 217 | else |
Gary Morrison | 3d7f654 | 2021-01-27 13:08:47 -0600 | [diff] [blame] | 218 | ifeq (${XLAT_MPU_LIB_V1}, 1) |
| 219 | include lib/xlat_mpu/xlat_mpu.mk |
| 220 | PLAT_BL_COMMON_SOURCES += ${XLAT_MPU_LIB_V1_SRCS} |
| 221 | else |
Antonio Nino Diaz | 719bf85 | 2017-02-23 17:22:58 +0000 | [diff] [blame] | 222 | include lib/xlat_tables_v2/xlat_tables.mk |
Gary Morrison | 3d7f654 | 2021-01-27 13:08:47 -0600 | [diff] [blame] | 223 | PLAT_BL_COMMON_SOURCES += ${XLAT_TABLES_LIB_SRCS} |
| 224 | endif |
Antonio Nino Diaz | f09d003 | 2017-04-11 14:04:56 +0100 | [diff] [blame] | 225 | endif |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 226 | |
Louis Mayencourt | 6b232d9 | 2020-02-28 16:57:30 +0000 | [diff] [blame] | 227 | ARM_IO_SOURCES += plat/arm/common/arm_io_storage.c \ |
Louis Mayencourt | badcac8 | 2019-10-24 15:18:46 +0100 | [diff] [blame] | 228 | plat/arm/common/fconf/arm_fconf_io.c |
Olivier Deprez | 93df21f | 2020-01-23 11:24:33 +0100 | [diff] [blame] | 229 | ifeq (${SPD},spmd) |
Balint Dobszay | 719ba9c | 2021-03-26 16:23:18 +0100 | [diff] [blame] | 230 | ifeq (${BL2_ENABLE_SP_LOAD},1) |
Olivier Deprez | 042db53 | 2020-03-19 09:27:11 +0100 | [diff] [blame] | 231 | ARM_IO_SOURCES += plat/arm/common/fconf/arm_fconf_sp.c |
| 232 | endif |
Olivier Deprez | 93df21f | 2020-01-23 11:24:33 +0100 | [diff] [blame] | 233 | endif |
Louis Mayencourt | badcac8 | 2019-10-24 15:18:46 +0100 | [diff] [blame] | 234 | |
Aditya Angadi | 20b4841 | 2019-04-16 11:29:14 +0530 | [diff] [blame] | 235 | BL1_SOURCES += drivers/io/io_fip.c \ |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 236 | drivers/io/io_memmap.c \ |
| 237 | drivers/io/io_storage.c \ |
| 238 | plat/arm/common/arm_bl1_setup.c \ |
Soby Mathew | 9427357 | 2018-03-07 11:32:04 +0000 | [diff] [blame] | 239 | plat/arm/common/arm_err.c \ |
Louis Mayencourt | badcac8 | 2019-10-24 15:18:46 +0100 | [diff] [blame] | 240 | ${ARM_IO_SOURCES} |
| 241 | |
Sandrine Bailleux | 03897bb | 2015-11-26 16:31:34 +0000 | [diff] [blame] | 242 | ifdef EL3_PAYLOAD_BASE |
Dimitris Papastamos | d7a3651 | 2018-06-18 13:01:06 +0100 | [diff] [blame] | 243 | # Need the plat_arm_program_trusted_mailbox() function to release secondary CPUs from |
Sandrine Bailleux | 03897bb | 2015-11-26 16:31:34 +0000 | [diff] [blame] | 244 | # their holding pen |
| 245 | BL1_SOURCES += plat/arm/common/arm_pm.c |
| 246 | endif |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 247 | |
Soby Mathew | 1ced6b8 | 2017-06-12 12:37:10 +0100 | [diff] [blame] | 248 | BL2_SOURCES += drivers/delay_timer/delay_timer.c \ |
| 249 | drivers/delay_timer/generic_delay_timer.c \ |
| 250 | drivers/io/io_fip.c \ |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 251 | drivers/io/io_memmap.c \ |
| 252 | drivers/io/io_storage.c \ |
| 253 | plat/arm/common/arm_bl2_setup.c \ |
Soby Mathew | 9427357 | 2018-03-07 11:32:04 +0000 | [diff] [blame] | 254 | plat/arm/common/arm_err.c \ |
Manish V Badarkhe | a26bf35 | 2021-07-02 20:29:56 +0100 | [diff] [blame] | 255 | common/tf_crc32.c \ |
Louis Mayencourt | badcac8 | 2019-10-24 15:18:46 +0100 | [diff] [blame] | 256 | ${ARM_IO_SOURCES} |
Roberto Vargas | 5220780 | 2017-11-17 13:22:18 +0000 | [diff] [blame] | 257 | |
Louis Mayencourt | 944ade8 | 2019-08-08 12:03:26 +0100 | [diff] [blame] | 258 | # Firmware Configuration Framework sources |
| 259 | include lib/fconf/fconf.mk |
Roberto Vargas | 5220780 | 2017-11-17 13:22:18 +0000 | [diff] [blame] | 260 | |
Chris Kay | b296ada | 2021-05-20 13:22:43 +0100 | [diff] [blame] | 261 | BL1_SOURCES += ${FCONF_SOURCES} ${FCONF_DYN_SOURCES} |
| 262 | BL2_SOURCES += ${FCONF_SOURCES} ${FCONF_DYN_SOURCES} |
| 263 | |
Soby Mathew | 96a1c6b | 2018-01-15 14:45:33 +0000 | [diff] [blame] | 264 | # Add `libfdt` and Arm common helpers required for Dynamic Config |
| 265 | include lib/libfdt/libfdt.mk |
Soby Mathew | 45e39e2 | 2018-03-26 15:16:46 +0100 | [diff] [blame] | 266 | |
| 267 | DYN_CFG_SOURCES += plat/arm/common/arm_dyn_cfg.c \ |
Soby Mathew | 96a1c6b | 2018-01-15 14:45:33 +0000 | [diff] [blame] | 268 | plat/arm/common/arm_dyn_cfg_helpers.c \ |
David Horstmann | b2df4c1 | 2021-04-08 14:50:21 +0100 | [diff] [blame] | 269 | common/uuid.c |
Soby Mathew | 96a1c6b | 2018-01-15 14:45:33 +0000 | [diff] [blame] | 270 | |
Chris Kay | e927215 | 2021-09-28 15:52:14 +0100 | [diff] [blame] | 271 | DYN_CFG_SOURCES += ${FDT_WRAPPERS_SOURCES} |
| 272 | |
Soby Mathew | 45e39e2 | 2018-03-26 15:16:46 +0100 | [diff] [blame] | 273 | BL1_SOURCES += ${DYN_CFG_SOURCES} |
| 274 | BL2_SOURCES += ${DYN_CFG_SOURCES} |
| 275 | |
Roberto Vargas | 5220780 | 2017-11-17 13:22:18 +0000 | [diff] [blame] | 276 | ifeq (${BL2_AT_EL3},1) |
| 277 | BL2_SOURCES += plat/arm/common/arm_bl2_el3_setup.c |
| 278 | endif |
| 279 | |
Yatharth Kochar | ede39cb | 2016-11-14 12:01:04 +0000 | [diff] [blame] | 280 | # Because BL1/BL2 execute in AArch64 mode but BL32 in AArch32 we need to use |
| 281 | # the AArch32 descriptors. |
| 282 | ifeq (${JUNO_AARCH32_EL3_RUNTIME},1) |
| 283 | BL2_SOURCES += plat/arm/common/aarch32/arm_bl2_mem_params_desc.c |
| 284 | else |
Vishnu Banavath | 2b651ea | 2022-01-19 18:43:12 +0000 | [diff] [blame] | 285 | ifneq (${PLAT}, corstone1000) |
Yatharth Kochar | ede39cb | 2016-11-14 12:01:04 +0000 | [diff] [blame] | 286 | BL2_SOURCES += plat/arm/common/${ARCH}/arm_bl2_mem_params_desc.c |
| 287 | endif |
Abdellatif El Khlifi | ad9b8e5 | 2021-04-21 17:20:43 +0100 | [diff] [blame] | 288 | endif |
Yatharth Kochar | ede39cb | 2016-11-14 12:01:04 +0000 | [diff] [blame] | 289 | BL2_SOURCES += plat/arm/common/arm_image_load.c \ |
Yatharth Kochar | f9a0f16 | 2016-09-13 17:07:57 +0100 | [diff] [blame] | 290 | common/desc_image_load.c |
Summer Qin | 9db8f2e | 2017-04-24 16:49:28 +0100 | [diff] [blame] | 291 | ifeq (${SPD},opteed) |
| 292 | BL2_SOURCES += lib/optee/optee_utils.c |
| 293 | endif |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 294 | |
Soby Mathew | 1ced6b8 | 2017-06-12 12:37:10 +0100 | [diff] [blame] | 295 | BL2U_SOURCES += drivers/delay_timer/delay_timer.c \ |
| 296 | drivers/delay_timer/generic_delay_timer.c \ |
| 297 | plat/arm/common/arm_bl2u_setup.c |
Yatharth Kochar | 3a11eda | 2015-10-14 15:28:11 +0100 | [diff] [blame] | 298 | |
Vikram Kanigiri | fbb1301 | 2016-02-15 11:54:14 +0000 | [diff] [blame] | 299 | BL31_SOURCES += plat/arm/common/arm_bl31_setup.c \ |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 300 | plat/arm/common/arm_pm.c \ |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 301 | plat/arm/common/arm_topology.c \ |
Soby Mathew | f6c4108 | 2016-05-03 12:31:18 +0100 | [diff] [blame] | 302 | plat/common/plat_psci_common.c |
Juan Castillo | a08a5e7 | 2015-05-19 11:54:12 +0100 | [diff] [blame] | 303 | |
Mikael Olsson | 7da6619 | 2021-02-12 17:30:22 +0100 | [diff] [blame] | 304 | ifneq ($(filter 1,${ENABLE_PMF} ${ARM_ETHOSN_NPU_DRIVER}),) |
| 305 | ARM_SVC_HANDLER_SRCS := |
| 306 | |
| 307 | ifeq (${ENABLE_PMF},1) |
| 308 | ARM_SVC_HANDLER_SRCS += lib/pmf/pmf_smc.c |
| 309 | endif |
| 310 | |
| 311 | ifeq (${ARM_ETHOSN_NPU_DRIVER},1) |
| 312 | ARM_SVC_HANDLER_SRCS += plat/arm/common/fconf/fconf_ethosn_getter.c \ |
| 313 | drivers/delay_timer/delay_timer.c \ |
| 314 | drivers/arm/ethosn/ethosn_smc.c |
| 315 | endif |
| 316 | |
Bence Szépkúti | 16362c6 | 2019-10-24 15:53:23 +0200 | [diff] [blame] | 317 | ifeq (${ARCH}, aarch64) |
| 318 | BL31_SOURCES += plat/arm/common/aarch64/execution_state_switch.c\ |
| 319 | plat/arm/common/arm_sip_svc.c \ |
Mikael Olsson | 7da6619 | 2021-02-12 17:30:22 +0100 | [diff] [blame] | 320 | ${ARM_SVC_HANDLER_SRCS} |
Bence Szépkúti | 78dc10c | 2019-11-07 12:09:24 +0100 | [diff] [blame] | 321 | else |
| 322 | BL32_SOURCES += plat/arm/common/arm_sip_svc.c \ |
Mikael Olsson | 7da6619 | 2021-02-12 17:30:22 +0100 | [diff] [blame] | 323 | ${ARM_SVC_HANDLER_SRCS} |
dp-arm | 1cebefd | 2016-09-19 11:21:03 +0100 | [diff] [blame] | 324 | endif |
Bence Szépkúti | 16362c6 | 2019-10-24 15:53:23 +0200 | [diff] [blame] | 325 | endif |
dp-arm | 1cebefd | 2016-09-19 11:21:03 +0100 | [diff] [blame] | 326 | |
Jeenu Viswambharan | b183745 | 2017-10-24 11:47:13 +0100 | [diff] [blame] | 327 | ifeq (${EL3_EXCEPTION_HANDLING},1) |
Sandeep Tripathy | 1c47839 | 2020-08-12 18:42:13 +0530 | [diff] [blame] | 328 | BL31_SOURCES += plat/common/aarch64/plat_ehf.c |
Jeenu Viswambharan | b183745 | 2017-10-24 11:47:13 +0100 | [diff] [blame] | 329 | endif |
| 330 | |
Jeenu Viswambharan | a5acc0a | 2017-09-22 08:32:10 +0100 | [diff] [blame] | 331 | ifeq (${SDEI_SUPPORT},1) |
| 332 | BL31_SOURCES += plat/arm/common/aarch64/arm_sdei.c |
Balint Dobszay | d0dbd5e | 2019-12-18 15:28:00 +0100 | [diff] [blame] | 333 | ifeq (${SDEI_IN_FCONF},1) |
| 334 | BL31_SOURCES += plat/arm/common/fconf/fconf_sdei_getter.c |
| 335 | endif |
Jeenu Viswambharan | a5acc0a | 2017-09-22 08:32:10 +0100 | [diff] [blame] | 336 | endif |
| 337 | |
Jeenu Viswambharan | a5b5b8d | 2018-02-06 12:21:39 +0000 | [diff] [blame] | 338 | # RAS sources |
| 339 | ifeq (${RAS_EXTENSION},1) |
| 340 | BL31_SOURCES += lib/extensions/ras/std_err_record.c \ |
Jeenu Viswambharan | a490fe0 | 2018-06-08 08:44:36 +0100 | [diff] [blame] | 341 | lib/extensions/ras/ras_common.c |
Jeenu Viswambharan | a5b5b8d | 2018-02-06 12:21:39 +0000 | [diff] [blame] | 342 | endif |
| 343 | |
Antonio Nino Diaz | 9c852aa | 2019-01-31 11:01:10 +0000 | [diff] [blame] | 344 | # Pointer Authentication sources |
| 345 | ifeq (${ENABLE_PAUTH}, 1) |
Alexei Fedorov | f41355c | 2019-09-13 14:11:59 +0100 | [diff] [blame] | 346 | PLAT_BL_COMMON_SOURCES += plat/arm/common/aarch64/arm_pauth.c \ |
| 347 | lib/extensions/pauth/pauth_helpers.S |
Antonio Nino Diaz | 9c852aa | 2019-01-31 11:01:10 +0000 | [diff] [blame] | 348 | endif |
| 349 | |
Achin Gupta | 60b7b8a | 2019-10-11 15:50:43 +0100 | [diff] [blame] | 350 | ifeq (${SPD},spmd) |
| 351 | BL31_SOURCES += plat/common/plat_spmd_manifest.c \ |
David Horstmann | b2df4c1 | 2021-04-08 14:50:21 +0100 | [diff] [blame] | 352 | common/uuid.c \ |
Achin Gupta | 60b7b8a | 2019-10-11 15:50:43 +0100 | [diff] [blame] | 353 | ${LIBFDT_SRCS} |
| 354 | |
Chris Kay | e927215 | 2021-09-28 15:52:14 +0100 | [diff] [blame] | 355 | BL31_SOURCES += ${FDT_WRAPPERS_SOURCES} |
Achin Gupta | 60b7b8a | 2019-10-11 15:50:43 +0100 | [diff] [blame] | 356 | endif |
| 357 | |
Juan Castillo | a08a5e7 | 2015-05-19 11:54:12 +0100 | [diff] [blame] | 358 | ifneq (${TRUSTED_BOARD_BOOT},0) |
| 359 | |
Juan Castillo | a08a5e7 | 2015-05-19 11:54:12 +0100 | [diff] [blame] | 360 | # Include common TBB sources |
Manish V Badarkhe | eba13bd | 2022-01-08 23:08:02 +0000 | [diff] [blame] | 361 | AUTH_SOURCES := drivers/auth/auth_mod.c \ |
| 362 | drivers/auth/img_parser_mod.c |
Sandrine Bailleux | d4c1d44 | 2020-01-15 10:23:25 +0100 | [diff] [blame] | 363 | |
| 364 | # Include the selected chain of trust sources. |
| 365 | ifeq (${COT},tbbr) |
laurenw-arm | 56f1e3e | 2021-03-03 14:19:38 -0600 | [diff] [blame] | 366 | BL1_SOURCES += drivers/auth/tbbr/tbbr_cot_common.c \ |
Manish V Badarkhe | 39317ab | 2020-07-23 10:43:57 +0100 | [diff] [blame] | 367 | drivers/auth/tbbr/tbbr_cot_bl1.c |
| 368 | ifneq (${COT_DESC_IN_DTB},0) |
| 369 | BL2_SOURCES += lib/fconf/fconf_cot_getter.c |
| 370 | else |
| 371 | BL2_SOURCES += drivers/auth/tbbr/tbbr_cot_common.c \ |
| 372 | drivers/auth/tbbr/tbbr_cot_bl2.c |
| 373 | endif |
Sandrine Bailleux | 012f871 | 2020-02-06 14:59:33 +0100 | [diff] [blame] | 374 | else ifeq (${COT},dualroot) |
| 375 | AUTH_SOURCES += drivers/auth/dualroot/cot.c |
Sandrine Bailleux | d4c1d44 | 2020-01-15 10:23:25 +0100 | [diff] [blame] | 376 | else |
| 377 | $(error Unknown chain of trust ${COT}) |
| 378 | endif |
Juan Castillo | a08a5e7 | 2015-05-19 11:54:12 +0100 | [diff] [blame] | 379 | |
Yatharth Kochar | f11b29a | 2016-02-01 11:04:46 +0000 | [diff] [blame] | 380 | BL1_SOURCES += ${AUTH_SOURCES} \ |
| 381 | bl1/tbbr/tbbr_img_desc.c \ |
dp-arm | b3e8580 | 2016-12-12 14:48:13 +0000 | [diff] [blame] | 382 | plat/arm/common/arm_bl1_fwu.c \ |
| 383 | plat/common/tbbr/plat_tbbr.c |
Yatharth Kochar | 736a3bf | 2015-10-11 14:14:55 +0100 | [diff] [blame] | 384 | |
dp-arm | b3e8580 | 2016-12-12 14:48:13 +0000 | [diff] [blame] | 385 | BL2_SOURCES += ${AUTH_SOURCES} \ |
Manish V Badarkhe | fe46f5f | 2020-05-27 09:39:42 +0100 | [diff] [blame] | 386 | plat/common/tbbr/plat_tbbr.c |
Juan Castillo | a08a5e7 | 2015-05-19 11:54:12 +0100 | [diff] [blame] | 387 | |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 388 | $(eval $(call TOOL_ADD_IMG,ns_bl2u,--fwu,FWU_)) |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 389 | |
Manish V Badarkhe | eba13bd | 2022-01-08 23:08:02 +0000 | [diff] [blame] | 390 | IMG_PARSER_LIB_MK := drivers/auth/mbedtls/mbedtls_x509.mk |
| 391 | |
| 392 | $(info Including ${IMG_PARSER_LIB_MK}) |
| 393 | include ${IMG_PARSER_LIB_MK} |
| 394 | endif |
| 395 | |
Manish V Badarkhe | e112a5a | 2021-10-06 23:41:50 +0100 | [diff] [blame] | 396 | # Include Measured Boot makefile before any Crypto library makefile. |
| 397 | # Crypto library makefile may need default definitions of Measured Boot build |
| 398 | # flags present in Measured Boot makefile. |
| 399 | ifeq (${MEASURED_BOOT},1) |
| 400 | MEASURED_BOOT_MK := drivers/measured_boot/event_log/event_log.mk |
| 401 | $(info Including ${MEASURED_BOOT_MK}) |
| 402 | include ${MEASURED_BOOT_MK} |
Manish V Badarkhe | f9c366c | 2022-01-18 22:40:17 +0000 | [diff] [blame] | 403 | |
| 404 | BL1_SOURCES += ${EVENT_LOG_SOURCES} |
| 405 | BL2_SOURCES += ${EVENT_LOG_SOURCES} |
Manish V Badarkhe | e112a5a | 2021-10-06 23:41:50 +0100 | [diff] [blame] | 406 | endif |
| 407 | |
Manish V Badarkhe | eba13bd | 2022-01-08 23:08:02 +0000 | [diff] [blame] | 408 | ifneq ($(filter 1,${MEASURED_BOOT} ${TRUSTED_BOARD_BOOT}),) |
| 409 | CRYPTO_SOURCES := drivers/auth/crypto_mod.c \ |
| 410 | lib/fconf/fconf_tbbr_getter.c |
| 411 | BL1_SOURCES += ${CRYPTO_SOURCES} |
| 412 | BL2_SOURCES += ${CRYPTO_SOURCES} |
| 413 | |
Juan Castillo | a08a5e7 | 2015-05-19 11:54:12 +0100 | [diff] [blame] | 414 | # We expect to locate the *.mk files under the directories specified below |
Manish V Badarkhe | eba13bd | 2022-01-08 23:08:02 +0000 | [diff] [blame] | 415 | ifeq (${ARM_CRYPTOCELL_INTEG},0) |
| 416 | CRYPTO_LIB_MK := drivers/auth/mbedtls/mbedtls_crypto.mk |
| 417 | else |
| 418 | CRYPTO_LIB_MK := drivers/auth/cryptocell/cryptocell_crypto.mk |
| 419 | endif |
Juan Castillo | a08a5e7 | 2015-05-19 11:54:12 +0100 | [diff] [blame] | 420 | |
| 421 | $(info Including ${CRYPTO_LIB_MK}) |
| 422 | include ${CRYPTO_LIB_MK} |
Juan Castillo | a08a5e7 | 2015-05-19 11:54:12 +0100 | [diff] [blame] | 423 | endif |
Daniel Boulby | b1b058d | 2018-09-18 11:52:49 +0100 | [diff] [blame] | 424 | |
Daniel Boulby | b1b058d | 2018-09-18 11:52:49 +0100 | [diff] [blame] | 425 | ifeq (${RECLAIM_INIT_CODE}, 1) |
Daniel Boulby | b1b058d | 2018-09-18 11:52:49 +0100 | [diff] [blame] | 426 | ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1) |
| 427 | $(error "To reclaim init code xlat tables v2 must be used") |
| 428 | endif |
| 429 | endif |