Antonio Nino Diaz | ae6779e | 2017-11-06 14:49:04 +0000 | [diff] [blame] | 1 | # |
Chris Kay | 523e864 | 2023-12-04 12:03:51 +0000 | [diff] [blame] | 2 | # Copyright (c) 2013-2024, Arm Limited and Contributors. All rights reserved. |
Antonio Nino Diaz | ae6779e | 2017-11-06 14:49:04 +0000 | [diff] [blame] | 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | |
Antonio Nino Diaz | f96582a | 2018-10-19 00:57:16 +0100 | [diff] [blame] | 7 | include lib/libfdt/libfdt.mk |
| 8 | include lib/xlat_tables_v2/xlat_tables.mk |
| 9 | |
Andre Przywara | 4ea3bd3 | 2019-07-09 14:32:11 +0100 | [diff] [blame] | 10 | PLAT_INCLUDES := -Iplat/rpi/common/include \ |
| 11 | -Iplat/rpi/rpi3/include |
Antonio Nino Diaz | ae6779e | 2017-11-06 14:49:04 +0000 | [diff] [blame] | 12 | |
Julius Werner | 6b88b65 | 2018-11-27 17:50:28 -0800 | [diff] [blame] | 13 | PLAT_BL_COMMON_SOURCES := drivers/ti/uart/aarch64/16550_console.S \ |
Andre Przywara | 9ba6bb0 | 2020-03-10 12:34:56 +0000 | [diff] [blame] | 14 | drivers/arm/pl011/aarch64/pl011_console.S \ |
Andre Przywara | 9e4815a | 2020-03-11 16:33:53 +0000 | [diff] [blame] | 15 | drivers/gpio/gpio.c \ |
| 16 | drivers/delay_timer/delay_timer.c \ |
| 17 | drivers/rpi3/gpio/rpi3_gpio.c \ |
Andre Przywara | 98e4856 | 2020-03-12 14:20:04 +0000 | [diff] [blame] | 18 | plat/rpi/common/aarch64/plat_helpers.S \ |
Andre Przywara | 4ea3bd3 | 2019-07-09 14:32:11 +0100 | [diff] [blame] | 19 | plat/rpi/common/rpi3_common.c \ |
Antonio Nino Diaz | f96582a | 2018-10-19 00:57:16 +0100 | [diff] [blame] | 20 | ${XLAT_TABLES_LIB_SRCS} |
Antonio Nino Diaz | ae6779e | 2017-11-06 14:49:04 +0000 | [diff] [blame] | 21 | |
| 22 | BL1_SOURCES += drivers/io/io_fip.c \ |
| 23 | drivers/io/io_memmap.c \ |
| 24 | drivers/io/io_storage.c \ |
| 25 | lib/cpus/aarch64/cortex_a53.S \ |
| 26 | plat/common/aarch64/platform_mp_stack.S \ |
Andre Przywara | b226246 | 2019-07-09 11:18:59 +0100 | [diff] [blame] | 27 | plat/rpi/rpi3/rpi3_bl1_setup.c \ |
Andre Przywara | 4ea3bd3 | 2019-07-09 14:32:11 +0100 | [diff] [blame] | 28 | plat/rpi/common/rpi3_io_storage.c \ |
Andre Przywara | 05862fc | 2019-07-09 13:54:56 +0100 | [diff] [blame] | 29 | drivers/rpi3/mailbox/rpi3_mbox.c \ |
| 30 | plat/rpi/rpi3/rpi_mbox_board.c |
Antonio Nino Diaz | ae6779e | 2017-11-06 14:49:04 +0000 | [diff] [blame] | 31 | |
| 32 | BL2_SOURCES += common/desc_image_load.c \ |
| 33 | drivers/io/io_fip.c \ |
| 34 | drivers/io/io_memmap.c \ |
| 35 | drivers/io/io_storage.c \ |
Ying-Chun Liu (PaulLiu) | 3452738 | 2019-01-22 03:27:55 +0800 | [diff] [blame] | 36 | drivers/delay_timer/generic_delay_timer.c \ |
Ying-Chun Liu (PaulLiu) | de6f2f4 | 2019-01-30 04:20:38 +0800 | [diff] [blame] | 37 | drivers/io/io_block.c \ |
| 38 | drivers/mmc/mmc.c \ |
| 39 | drivers/rpi3/sdhost/rpi3_sdhost.c \ |
Antonio Nino Diaz | ae6779e | 2017-11-06 14:49:04 +0000 | [diff] [blame] | 40 | plat/common/aarch64/platform_mp_stack.S \ |
Andre Przywara | b226246 | 2019-07-09 11:18:59 +0100 | [diff] [blame] | 41 | plat/rpi/rpi3/aarch64/rpi3_bl2_mem_params_desc.c \ |
| 42 | plat/rpi/rpi3/rpi3_bl2_setup.c \ |
Andre Przywara | 4ea3bd3 | 2019-07-09 14:32:11 +0100 | [diff] [blame] | 43 | plat/rpi/common/rpi3_image_load.c \ |
| 44 | plat/rpi/common/rpi3_io_storage.c |
Antonio Nino Diaz | ae6779e | 2017-11-06 14:49:04 +0000 | [diff] [blame] | 45 | |
| 46 | BL31_SOURCES += lib/cpus/aarch64/cortex_a53.S \ |
Madhukar Pappireddy | 81e4687 | 2023-08-03 14:29:40 -0500 | [diff] [blame] | 47 | plat/common/plat_gicv2.c \ |
Antonio Nino Diaz | 83d8c79 | 2018-08-17 14:25:08 +0100 | [diff] [blame] | 48 | plat/common/plat_psci_common.c \ |
Andre Przywara | b226246 | 2019-07-09 11:18:59 +0100 | [diff] [blame] | 49 | plat/rpi/rpi3/rpi3_bl31_setup.c \ |
Andre Przywara | 4ea3bd3 | 2019-07-09 14:32:11 +0100 | [diff] [blame] | 50 | plat/rpi/common/rpi3_pm.c \ |
| 51 | plat/rpi/common/rpi3_topology.c \ |
Antonio Nino Diaz | f96582a | 2018-10-19 00:57:16 +0100 | [diff] [blame] | 52 | ${LIBFDT_SRCS} |
Antonio Nino Diaz | ae6779e | 2017-11-06 14:49:04 +0000 | [diff] [blame] | 53 | |
| 54 | # Tune compiler for Cortex-A53 |
Chris Kay | cfba645 | 2023-12-04 09:55:50 +0000 | [diff] [blame] | 55 | ifeq ($($(ARCH)-cc-id),arm-clang) |
Antonio Nino Diaz | ae6779e | 2017-11-06 14:49:04 +0000 | [diff] [blame] | 56 | TF_CFLAGS_aarch64 += -mcpu=cortex-a53 |
Chris Kay | cfba645 | 2023-12-04 09:55:50 +0000 | [diff] [blame] | 57 | else ifneq ($(filter %-clang,$($(ARCH)-cc-id)),) |
Antonio Nino Diaz | ae6779e | 2017-11-06 14:49:04 +0000 | [diff] [blame] | 58 | TF_CFLAGS_aarch64 += -mcpu=cortex-a53 |
| 59 | else |
| 60 | TF_CFLAGS_aarch64 += -mtune=cortex-a53 |
| 61 | endif |
| 62 | |
Antonio Nino Diaz | dfe895d | 2018-07-12 08:58:38 +0100 | [diff] [blame] | 63 | # Platform Makefile target |
| 64 | # ------------------------ |
| 65 | |
| 66 | RPI3_BL1_PAD_BIN := ${BUILD_PLAT}/bl1_pad.bin |
| 67 | RPI3_ARMSTUB8_BIN := ${BUILD_PLAT}/armstub8.bin |
| 68 | |
| 69 | # Add new default target when compiling this platform |
| 70 | all: armstub |
| 71 | |
| 72 | # This target concatenates BL1 and the FIP so that the base addresses match the |
| 73 | # ones defined in the memory map |
| 74 | armstub: bl1 fip |
| 75 | @echo " CAT $@" |
| 76 | ${Q}cp ${BUILD_PLAT}/bl1.bin ${RPI3_BL1_PAD_BIN} |
| 77 | ${Q}truncate --size=131072 ${RPI3_BL1_PAD_BIN} |
| 78 | ${Q}cat ${RPI3_BL1_PAD_BIN} ${BUILD_PLAT}/fip.bin > ${RPI3_ARMSTUB8_BIN} |
| 79 | @${ECHO_BLANK_LINE} |
| 80 | @echo "Built $@ successfully" |
| 81 | @${ECHO_BLANK_LINE} |
| 82 | |
Antonio Nino Diaz | ae6779e | 2017-11-06 14:49:04 +0000 | [diff] [blame] | 83 | # Build config flags |
| 84 | # ------------------ |
| 85 | |
| 86 | # Enable all errata workarounds for Cortex-A53 |
| 87 | ERRATA_A53_826319 := 1 |
| 88 | ERRATA_A53_835769 := 1 |
| 89 | ERRATA_A53_836870 := 1 |
| 90 | ERRATA_A53_843419 := 1 |
| 91 | ERRATA_A53_855873 := 1 |
| 92 | |
Dimitris Papastamos | 8e5bd5e | 2018-01-24 16:41:14 +0000 | [diff] [blame] | 93 | WORKAROUND_CVE_2017_5715 := 0 |
| 94 | |
Antonio Nino Diaz | 4b7059d | 2018-07-13 15:26:49 +0100 | [diff] [blame] | 95 | # Disable stack protector by default |
| 96 | ENABLE_STACK_PROTECTOR := 0 |
| 97 | |
Antonio Nino Diaz | df0bb5a | 2018-07-13 20:19:21 +0100 | [diff] [blame] | 98 | # Reset to BL31 isn't supported |
| 99 | RESET_TO_BL31 := 0 |
Antonio Nino Diaz | ae6779e | 2017-11-06 14:49:04 +0000 | [diff] [blame] | 100 | |
| 101 | # Have different sections for code and rodata |
| 102 | SEPARATE_CODE_AND_RODATA := 1 |
| 103 | |
| 104 | # Use Coherent memory |
| 105 | USE_COHERENT_MEM := 1 |
| 106 | |
Antonio Nino Diaz | ae6779e | 2017-11-06 14:49:04 +0000 | [diff] [blame] | 107 | # Platform build flags |
| 108 | # -------------------- |
| 109 | |
| 110 | # BL33 images are in AArch64 by default |
| 111 | RPI3_BL33_IN_AARCH32 := 0 |
| 112 | |
Antonio Nino Diaz | f8b36cc | 2018-07-15 12:32:32 +0100 | [diff] [blame] | 113 | # Assume that BL33 isn't the Linux kernel by default |
| 114 | RPI3_DIRECT_LINUX_BOOT := 0 |
| 115 | |
Pete Batard | c9acd6c | 2018-11-13 13:14:26 +0000 | [diff] [blame] | 116 | # UART to use at runtime. -1 means the runtime UART is disabled. |
| 117 | # Any other value means the default UART will be used. |
Pete Batard | f820cad | 2018-11-15 22:29:59 +0000 | [diff] [blame] | 118 | RPI3_RUNTIME_UART := -1 |
| 119 | |
| 120 | # Use normal memory mapping for ROM, FIP, SRAM and DRAM |
| 121 | RPI3_USE_UEFI_MAP := 0 |
Pete Batard | c9acd6c | 2018-11-13 13:14:26 +0000 | [diff] [blame] | 122 | |
Antonio Nino Diaz | ae6779e | 2017-11-06 14:49:04 +0000 | [diff] [blame] | 123 | # BL32 location |
| 124 | RPI3_BL32_RAM_LOCATION := tdram |
| 125 | ifeq (${RPI3_BL32_RAM_LOCATION}, tsram) |
| 126 | RPI3_BL32_RAM_LOCATION_ID = SEC_SRAM_ID |
| 127 | else ifeq (${RPI3_BL32_RAM_LOCATION}, tdram) |
| 128 | RPI3_BL32_RAM_LOCATION_ID = SEC_DRAM_ID |
| 129 | else |
| 130 | $(error "Unsupported RPI3_BL32_RAM_LOCATION value") |
| 131 | endif |
| 132 | |
| 133 | # Process platform flags |
| 134 | # ---------------------- |
| 135 | |
| 136 | $(eval $(call add_define,RPI3_BL32_RAM_LOCATION_ID)) |
| 137 | $(eval $(call add_define,RPI3_BL33_IN_AARCH32)) |
Antonio Nino Diaz | f8b36cc | 2018-07-15 12:32:32 +0100 | [diff] [blame] | 138 | $(eval $(call add_define,RPI3_DIRECT_LINUX_BOOT)) |
Igor Opaniuk | 02016b2 | 2019-01-16 23:59:41 +0200 | [diff] [blame] | 139 | ifdef RPI3_PRELOADED_DTB_BASE |
Antonio Nino Diaz | f8b36cc | 2018-07-15 12:32:32 +0100 | [diff] [blame] | 140 | $(eval $(call add_define,RPI3_PRELOADED_DTB_BASE)) |
Igor Opaniuk | 02016b2 | 2019-01-16 23:59:41 +0200 | [diff] [blame] | 141 | endif |
Pete Batard | c9acd6c | 2018-11-13 13:14:26 +0000 | [diff] [blame] | 142 | $(eval $(call add_define,RPI3_RUNTIME_UART)) |
Pete Batard | f820cad | 2018-11-15 22:29:59 +0000 | [diff] [blame] | 143 | $(eval $(call add_define,RPI3_USE_UEFI_MAP)) |
Antonio Nino Diaz | ae6779e | 2017-11-06 14:49:04 +0000 | [diff] [blame] | 144 | |
| 145 | # Verify build config |
| 146 | # ------------------- |
Antonio Nino Diaz | f8b36cc | 2018-07-15 12:32:32 +0100 | [diff] [blame] | 147 | # |
| 148 | ifneq (${RPI3_DIRECT_LINUX_BOOT}, 0) |
| 149 | ifndef RPI3_PRELOADED_DTB_BASE |
| 150 | $(error Error: RPI3_PRELOADED_DTB_BASE needed if RPI3_DIRECT_LINUX_BOOT=1) |
| 151 | endif |
| 152 | endif |
Antonio Nino Diaz | ae6779e | 2017-11-06 14:49:04 +0000 | [diff] [blame] | 153 | |
Antonio Nino Diaz | df0bb5a | 2018-07-13 20:19:21 +0100 | [diff] [blame] | 154 | ifneq (${RESET_TO_BL31}, 0) |
| 155 | $(error Error: rpi3 needs RESET_TO_BL31=0) |
| 156 | endif |
| 157 | |
Antonio Nino Diaz | ae6779e | 2017-11-06 14:49:04 +0000 | [diff] [blame] | 158 | ifeq (${ARCH},aarch32) |
| 159 | $(error Error: AArch32 not supported on rpi3) |
| 160 | endif |
Ying-Chun Liu (PaulLiu) | d9f76e6 | 2018-06-10 02:00:27 +0800 | [diff] [blame] | 161 | |
Antonio Nino Diaz | 4b7059d | 2018-07-13 15:26:49 +0100 | [diff] [blame] | 162 | ifneq ($(ENABLE_STACK_PROTECTOR), 0) |
Andre Przywara | 93de78c | 2019-07-09 14:29:24 +0100 | [diff] [blame] | 163 | PLAT_BL_COMMON_SOURCES += drivers/rpi3/rng/rpi3_rng.c \ |
Andre Przywara | 4ea3bd3 | 2019-07-09 14:32:11 +0100 | [diff] [blame] | 164 | plat/rpi/common/rpi3_stack_protector.c |
Antonio Nino Diaz | 4b7059d | 2018-07-13 15:26:49 +0100 | [diff] [blame] | 165 | endif |
| 166 | |
Ying-Chun Liu (PaulLiu) | d9f76e6 | 2018-06-10 02:00:27 +0800 | [diff] [blame] | 167 | ifeq (${SPD},opteed) |
| 168 | BL2_SOURCES += \ |
| 169 | lib/optee/optee_utils.c |
| 170 | endif |
| 171 | |
| 172 | # Add the build options to pack Trusted OS Extra1 and Trusted OS Extra2 images |
| 173 | # in the FIP if the platform requires. |
| 174 | ifneq ($(BL32_EXTRA1),) |
| 175 | $(eval $(call TOOL_ADD_IMG,BL32_EXTRA1,--tos-fw-extra1)) |
| 176 | endif |
| 177 | ifneq ($(BL32_EXTRA2),) |
| 178 | $(eval $(call TOOL_ADD_IMG,BL32_EXTRA2,--tos-fw-extra2)) |
| 179 | endif |
Ying-Chun Liu (PaulLiu) | 9128df6 | 2018-07-04 02:26:48 +0800 | [diff] [blame] | 180 | |
| 181 | ifneq (${TRUSTED_BOARD_BOOT},0) |
| 182 | |
| 183 | include drivers/auth/mbedtls/mbedtls_crypto.mk |
| 184 | include drivers/auth/mbedtls/mbedtls_x509.mk |
| 185 | |
Ying-Chun Liu (PaulLiu) | 9128df6 | 2018-07-04 02:26:48 +0800 | [diff] [blame] | 186 | AUTH_SOURCES := drivers/auth/auth_mod.c \ |
| 187 | drivers/auth/crypto_mod.c \ |
| 188 | drivers/auth/img_parser_mod.c \ |
Manish V Badarkhe | 043fd62 | 2020-05-16 16:36:39 +0100 | [diff] [blame] | 189 | drivers/auth/tbbr/tbbr_cot_common.c |
Ying-Chun Liu (PaulLiu) | 9128df6 | 2018-07-04 02:26:48 +0800 | [diff] [blame] | 190 | |
Ying-Chun Liu (PaulLiu) | 9128df6 | 2018-07-04 02:26:48 +0800 | [diff] [blame] | 191 | BL1_SOURCES += ${AUTH_SOURCES} \ |
| 192 | bl1/tbbr/tbbr_img_desc.c \ |
| 193 | plat/common/tbbr/plat_tbbr.c \ |
Andre Przywara | 4ea3bd3 | 2019-07-09 14:32:11 +0100 | [diff] [blame] | 194 | plat/rpi/common/rpi3_trusted_boot.c \ |
Manish V Badarkhe | 043fd62 | 2020-05-16 16:36:39 +0100 | [diff] [blame] | 195 | plat/rpi/common/rpi3_rotpk.S \ |
| 196 | drivers/auth/tbbr/tbbr_cot_bl1.c |
Ying-Chun Liu (PaulLiu) | 9128df6 | 2018-07-04 02:26:48 +0800 | [diff] [blame] | 197 | |
| 198 | BL2_SOURCES += ${AUTH_SOURCES} \ |
| 199 | plat/common/tbbr/plat_tbbr.c \ |
Andre Przywara | 4ea3bd3 | 2019-07-09 14:32:11 +0100 | [diff] [blame] | 200 | plat/rpi/common/rpi3_trusted_boot.c \ |
Manish V Badarkhe | 043fd62 | 2020-05-16 16:36:39 +0100 | [diff] [blame] | 201 | plat/rpi/common/rpi3_rotpk.S \ |
| 202 | drivers/auth/tbbr/tbbr_cot_bl2.c |
Ying-Chun Liu (PaulLiu) | 9128df6 | 2018-07-04 02:26:48 +0800 | [diff] [blame] | 203 | |
| 204 | ROT_KEY = $(BUILD_PLAT)/rot_key.pem |
| 205 | ROTPK_HASH = $(BUILD_PLAT)/rotpk_sha256.bin |
| 206 | |
| 207 | $(eval $(call add_define_val,ROTPK_HASH,'"$(ROTPK_HASH)"')) |
| 208 | |
| 209 | $(BUILD_PLAT)/bl1/rpi3_rotpk.o: $(ROTPK_HASH) |
| 210 | $(BUILD_PLAT)/bl2/rpi3_rotpk.o: $(ROTPK_HASH) |
| 211 | |
| 212 | certificates: $(ROT_KEY) |
| 213 | |
Manish V Badarkhe | d8c877f | 2020-09-03 16:54:47 +0100 | [diff] [blame] | 214 | $(ROT_KEY): | $(BUILD_PLAT) |
Ying-Chun Liu (PaulLiu) | 9128df6 | 2018-07-04 02:26:48 +0800 | [diff] [blame] | 215 | @echo " OPENSSL $@" |
Salome Thirot | 0b35da3 | 2022-07-14 16:14:15 +0100 | [diff] [blame] | 216 | $(Q)${OPENSSL_BIN_PATH}/openssl genrsa 2048 > $@ 2>/dev/null |
Ying-Chun Liu (PaulLiu) | 9128df6 | 2018-07-04 02:26:48 +0800 | [diff] [blame] | 217 | |
| 218 | $(ROTPK_HASH): $(ROT_KEY) |
| 219 | @echo " OPENSSL $@" |
Salome Thirot | 0b35da3 | 2022-07-14 16:14:15 +0100 | [diff] [blame] | 220 | $(Q)${OPENSSL_BIN_PATH}/openssl rsa -in $< -pubout -outform DER 2>/dev/null |\ |
| 221 | ${OPENSSL_BIN_PATH}/openssl dgst -sha256 -binary > $@ 2>/dev/null |
Ying-Chun Liu (PaulLiu) | 9128df6 | 2018-07-04 02:26:48 +0800 | [diff] [blame] | 222 | endif |