Sandrine Bailleux | 798140d | 2014-07-17 16:06:39 +0100 | [diff] [blame] | 1 | # |
Zelalem | 15f378d | 2021-02-02 09:49:07 -0600 | [diff] [blame] | 2 | # Copyright (c) 2013-2021, ARM Limited and Contributors. All rights reserved. |
Sandrine Bailleux | 798140d | 2014-07-17 16:06:39 +0100 | [diff] [blame] | 3 | # |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | # SPDX-License-Identifier: BSD-3-Clause |
Sandrine Bailleux | 798140d | 2014-07-17 16:06:39 +0100 | [diff] [blame] | 5 | # |
| 6 | |
Alexei Fedorov | caa1802 | 2020-07-14 10:47:25 +0100 | [diff] [blame] | 7 | # Include GICv2 driver files |
| 8 | include drivers/arm/gic/v2/gicv2.mk |
| 9 | |
| 10 | JUNO_GIC_SOURCES := ${GICV2_SOURCES} \ |
Achin Gupta | 1fa7eb6 | 2015-11-03 14:18:34 +0000 | [diff] [blame] | 11 | plat/common/plat_gicv2.c \ |
| 12 | plat/arm/common/arm_gicv2.c |
| 13 | |
Vikram Kanigiri | fbb1301 | 2016-02-15 11:54:14 +0000 | [diff] [blame] | 14 | JUNO_INTERCONNECT_SOURCES := drivers/arm/cci/cci.c \ |
| 15 | plat/arm/common/arm_cci.c |
| 16 | |
Soby Mathew | 9c708b5 | 2016-02-26 14:23:19 +0000 | [diff] [blame] | 17 | JUNO_SECURITY_SOURCES := drivers/arm/tzc/tzc400.c \ |
Vikram Kanigiri | 70752bb | 2016-02-10 14:50:53 +0000 | [diff] [blame] | 18 | plat/arm/board/juno/juno_security.c \ |
dp-arm | 8f59e15 | 2017-02-27 12:21:43 +0000 | [diff] [blame] | 19 | plat/arm/board/juno/juno_trng.c \ |
Vikram Kanigiri | 70752bb | 2016-02-10 14:50:53 +0000 | [diff] [blame] | 20 | plat/arm/common/arm_tzc400.c |
| 21 | |
dp-arm | b3263b3 | 2017-02-28 14:43:15 +0000 | [diff] [blame] | 22 | ifneq (${ENABLE_STACK_PROTECTOR}, 0) |
| 23 | JUNO_SECURITY_SOURCES += plat/arm/board/juno/juno_stack_protector.c |
| 24 | endif |
Vikram Kanigiri | fbb1301 | 2016-02-15 11:54:14 +0000 | [diff] [blame] | 25 | |
Sathees Balya | 2257607 | 2018-09-03 17:41:13 +0100 | [diff] [blame] | 26 | # Select SCMI/SDS drivers instead of SCPI/BOM driver for communicating with the |
| 27 | # SCP during power management operations and for SCP RAM Firmware transfer. |
| 28 | CSS_USE_SCMI_SDS_DRIVER := 1 |
| 29 | |
Antonio Nino Diaz | 09d5876 | 2019-01-23 19:06:55 +0000 | [diff] [blame] | 30 | PLAT_INCLUDES := -Iplat/arm/board/juno/include |
Juan Castillo | 921b877 | 2014-09-05 17:29:38 +0100 | [diff] [blame] | 31 | |
Antonio Nino Diaz | cbc6826 | 2018-10-10 11:02:34 +0100 | [diff] [blame] | 32 | PLAT_BL_COMMON_SOURCES := plat/arm/board/juno/${ARCH}/juno_helpers.S \ |
| 33 | plat/arm/board/juno/juno_common.c |
Juan Castillo | 921b877 | 2014-09-05 17:29:38 +0100 | [diff] [blame] | 34 | |
Yatharth Kochar | ede39cb | 2016-11-14 12:01:04 +0000 | [diff] [blame] | 35 | # Flag to enable support for AArch32 state on JUNO |
| 36 | JUNO_AARCH32_EL3_RUNTIME := 0 |
| 37 | $(eval $(call assert_boolean,JUNO_AARCH32_EL3_RUNTIME)) |
| 38 | $(eval $(call add_define,JUNO_AARCH32_EL3_RUNTIME)) |
| 39 | |
Summer Qin | 13b95c2 | 2018-03-02 15:51:14 +0800 | [diff] [blame] | 40 | # Flag to enable support for TZMP1 on JUNO |
| 41 | JUNO_TZMP1 := 0 |
| 42 | $(eval $(call assert_boolean,JUNO_TZMP1)) |
| 43 | ifeq (${JUNO_TZMP1}, 1) |
| 44 | $(eval $(call add_define,JUNO_TZMP1)) |
| 45 | endif |
| 46 | |
Andre Przywara | 31ed470 | 2020-10-08 00:45:22 +0100 | [diff] [blame] | 47 | TRNG_SUPPORT := 1 |
| 48 | |
Soby Mathew | bf16923 | 2017-11-14 14:10:10 +0000 | [diff] [blame] | 49 | ifeq (${JUNO_AARCH32_EL3_RUNTIME}, 1) |
| 50 | # Include BL32 in FIP |
| 51 | NEED_BL32 := yes |
| 52 | # BL31 is not required |
| 53 | override BL31_SOURCES = |
| 54 | |
| 55 | # The BL32 needs to be built separately invoking the AARCH32 compiler and |
| 56 | # be specifed via `BL32` build option. |
| 57 | ifneq (${ARCH}, aarch32) |
| 58 | override BL32_SOURCES = |
| 59 | endif |
| 60 | endif |
| 61 | |
Yatharth Kochar | ede39cb | 2016-11-14 12:01:04 +0000 | [diff] [blame] | 62 | ifeq (${ARCH},aarch64) |
Dan Handley | 7bef800 | 2015-03-19 19:22:44 +0000 | [diff] [blame] | 63 | BL1_SOURCES += lib/cpus/aarch64/cortex_a53.S \ |
Brendan Jackman | a443d22 | 2015-10-30 16:25:12 +0000 | [diff] [blame] | 64 | lib/cpus/aarch64/cortex_a57.S \ |
Juan Castillo | b6132f1 | 2015-10-06 14:01:35 +0100 | [diff] [blame] | 65 | lib/cpus/aarch64/cortex_a72.S \ |
Sathees Balya | 2257607 | 2018-09-03 17:41:13 +0100 | [diff] [blame] | 66 | plat/arm/board/juno/juno_err.c \ |
Yatharth Kochar | 736a3bf | 2015-10-11 14:14:55 +0100 | [diff] [blame] | 67 | plat/arm/board/juno/juno_bl1_setup.c \ |
Aditya Angadi | 20b4841 | 2019-04-16 11:29:14 +0530 | [diff] [blame] | 68 | drivers/arm/sp805/sp805.c \ |
dp-arm | b3263b3 | 2017-02-28 14:43:15 +0000 | [diff] [blame] | 69 | ${JUNO_INTERCONNECT_SOURCES} \ |
| 70 | ${JUNO_SECURITY_SOURCES} |
Juan Castillo | 921b877 | 2014-09-05 17:29:38 +0100 | [diff] [blame] | 71 | |
Ambroise Vincent | fa42c9e | 2019-07-04 14:58:45 +0100 | [diff] [blame] | 72 | BL2_SOURCES += drivers/arm/sp805/sp805.c \ |
| 73 | lib/utils/mem_region.c \ |
Sathees Balya | 2257607 | 2018-09-03 17:41:13 +0100 | [diff] [blame] | 74 | plat/arm/board/juno/juno_err.c \ |
Roberto Vargas | b96ee4b | 2018-08-06 13:35:31 +0100 | [diff] [blame] | 75 | plat/arm/board/juno/juno_bl2_setup.c \ |
| 76 | plat/arm/common/arm_nor_psci_mem_protect.c \ |
Vikram Kanigiri | 70752bb | 2016-02-10 14:50:53 +0000 | [diff] [blame] | 77 | ${JUNO_SECURITY_SOURCES} |
Juan Castillo | 921b877 | 2014-09-05 17:29:38 +0100 | [diff] [blame] | 78 | |
Vikram Kanigiri | 70752bb | 2016-02-10 14:50:53 +0000 | [diff] [blame] | 79 | BL2U_SOURCES += ${JUNO_SECURITY_SOURCES} |
Yatharth Kochar | 3a11eda | 2015-10-14 15:28:11 +0100 | [diff] [blame] | 80 | |
Antonio Nino Diaz | d7da2f8 | 2018-10-10 11:14:44 +0100 | [diff] [blame] | 81 | BL31_SOURCES += drivers/cfi/v2m/v2m_flash.c \ |
| 82 | lib/cpus/aarch64/cortex_a53.S \ |
Soby Mathew | 61e8d0b | 2015-10-12 17:32:29 +0100 | [diff] [blame] | 83 | lib/cpus/aarch64/cortex_a57.S \ |
Brendan Jackman | a443d22 | 2015-10-30 16:25:12 +0000 | [diff] [blame] | 84 | lib/cpus/aarch64/cortex_a72.S \ |
Roberto Vargas | b96ee4b | 2018-08-06 13:35:31 +0100 | [diff] [blame] | 85 | lib/utils/mem_region.c \ |
Mikael Olsson | 0232da2 | 2021-02-12 17:30:16 +0100 | [diff] [blame] | 86 | common/fdt_wrappers.c \ |
| 87 | lib/fconf/fconf.c \ |
| 88 | lib/fconf/fconf_dyn_cfg_getter.c \ |
| 89 | plat/arm/board/juno/juno_bl31_setup.c \ |
Chandni Cherukuri | e4bf6a0 | 2018-11-14 13:43:59 +0530 | [diff] [blame] | 90 | plat/arm/board/juno/juno_pm.c \ |
Soby Mathew | 47e43f2 | 2016-02-01 14:04:34 +0000 | [diff] [blame] | 91 | plat/arm/board/juno/juno_topology.c \ |
Roberto Vargas | b96ee4b | 2018-08-06 13:35:31 +0100 | [diff] [blame] | 92 | plat/arm/common/arm_nor_psci_mem_protect.c \ |
Vikram Kanigiri | 70752bb | 2016-02-10 14:50:53 +0000 | [diff] [blame] | 93 | ${JUNO_GIC_SOURCES} \ |
Vikram Kanigiri | fbb1301 | 2016-02-15 11:54:14 +0000 | [diff] [blame] | 94 | ${JUNO_INTERCONNECT_SOURCES} \ |
Vikram Kanigiri | 70752bb | 2016-02-10 14:50:53 +0000 | [diff] [blame] | 95 | ${JUNO_SECURITY_SOURCES} |
Sathees Balya | 2257607 | 2018-09-03 17:41:13 +0100 | [diff] [blame] | 96 | |
| 97 | ifeq (${CSS_USE_SCMI_SDS_DRIVER},1) |
Antonio Nino Diaz | 09d5876 | 2019-01-23 19:06:55 +0000 | [diff] [blame] | 98 | BL1_SOURCES += drivers/arm/css/sds/sds.c |
Yatharth Kochar | ede39cb | 2016-11-14 12:01:04 +0000 | [diff] [blame] | 99 | endif |
Juan Castillo | 921b877 | 2014-09-05 17:29:38 +0100 | [diff] [blame] | 100 | |
Max Shvetsov | 06dba29 | 2019-12-06 11:50:12 +0000 | [diff] [blame] | 101 | ifeq (${TRUSTED_BOARD_BOOT}, 1) |
| 102 | BL1_SOURCES += plat/arm/board/juno/juno_trusted_boot.c |
| 103 | BL2_SOURCES += plat/arm/board/juno/juno_trusted_boot.c |
| 104 | endif |
| 105 | |
Sathees Balya | 2257607 | 2018-09-03 17:41:13 +0100 | [diff] [blame] | 106 | endif |
| 107 | |
Deepak Pandey | b0971f9 | 2018-05-25 12:43:30 +0530 | [diff] [blame] | 108 | ifneq (${RESET_TO_BL31},0) |
Sandrine Bailleux | 1e32d32 | 2019-01-07 15:35:37 +0100 | [diff] [blame] | 109 | $(error "Using BL31 as the reset vector is not supported on ${PLAT} platform. \ |
Deepak Pandey | b0971f9 | 2018-05-25 12:43:30 +0530 | [diff] [blame] | 110 | Please set RESET_TO_BL31 to 0.") |
| 111 | endif |
| 112 | |
Sathees Balya | 6f07a60 | 2018-11-02 14:56:06 +0000 | [diff] [blame] | 113 | ifeq ($(USE_ROMLIB),1) |
| 114 | all : bl1_romlib.bin |
| 115 | endif |
| 116 | |
Zelalem | 15f378d | 2021-02-02 09:49:07 -0600 | [diff] [blame] | 117 | bl1_romlib.bin : $(BUILD_PLAT)/bl1.bin romlib.bin |
Sathees Balya | 6f07a60 | 2018-11-02 14:56:06 +0000 | [diff] [blame] | 118 | @echo "Building combined BL1 and ROMLIB binary for Juno $@" |
| 119 | ./lib/romlib/gen_combined_bl1_romlib.sh -o bl1_romlib.bin $(BUILD_PLAT) |
| 120 | |
Eleanor Bonnici | 8392aab | 2017-08-04 15:03:51 +0100 | [diff] [blame] | 121 | # Errata workarounds for Cortex-A53: |
Ambroise Vincent | bde4246 | 2019-02-22 14:19:16 +0000 | [diff] [blame] | 122 | ERRATA_A53_819472 := 1 |
| 123 | ERRATA_A53_824069 := 1 |
Eleanor Bonnici | 8392aab | 2017-08-04 15:03:51 +0100 | [diff] [blame] | 124 | ERRATA_A53_826319 := 1 |
Ambroise Vincent | bde4246 | 2019-02-22 14:19:16 +0000 | [diff] [blame] | 125 | ERRATA_A53_827319 := 1 |
Douglas Raillard | d56fb04 | 2017-06-19 15:38:02 +0100 | [diff] [blame] | 126 | ERRATA_A53_835769 := 1 |
Eleanor Bonnici | 8392aab | 2017-08-04 15:03:51 +0100 | [diff] [blame] | 127 | ERRATA_A53_836870 := 1 |
Douglas Raillard | d56fb04 | 2017-06-19 15:38:02 +0100 | [diff] [blame] | 128 | ERRATA_A53_843419 := 1 |
Andre Przywara | 00eefd9 | 2016-10-06 16:54:53 +0100 | [diff] [blame] | 129 | ERRATA_A53_855873 := 1 |
Eleanor Bonnici | 8392aab | 2017-08-04 15:03:51 +0100 | [diff] [blame] | 130 | |
| 131 | # Errata workarounds for Cortex-A57: |
Vikram Kanigiri | eade34c | 2016-01-20 15:57:35 +0000 | [diff] [blame] | 132 | ERRATA_A57_806969 := 0 |
Antonio Nino Diaz | 3f13c35 | 2017-02-24 11:39:22 +0000 | [diff] [blame] | 133 | ERRATA_A57_813419 := 1 |
Vikram Kanigiri | eade34c | 2016-01-20 15:57:35 +0000 | [diff] [blame] | 134 | ERRATA_A57_813420 := 1 |
Ambroise Vincent | bde4246 | 2019-02-22 14:19:16 +0000 | [diff] [blame] | 135 | ERRATA_A57_814670 := 1 |
| 136 | ERRATA_A57_817169 := 1 |
Douglas Raillard | 71d4fe2 | 2017-02-28 17:56:15 +0000 | [diff] [blame] | 137 | ERRATA_A57_826974 := 1 |
| 138 | ERRATA_A57_826977 := 1 |
| 139 | ERRATA_A57_828024 := 1 |
| 140 | ERRATA_A57_829520 := 1 |
| 141 | ERRATA_A57_833471 := 1 |
Eleanor Bonnici | 8392aab | 2017-08-04 15:03:51 +0100 | [diff] [blame] | 142 | ERRATA_A57_859972 := 0 |
Douglas Raillard | 71d4fe2 | 2017-02-28 17:56:15 +0000 | [diff] [blame] | 143 | |
Eleanor Bonnici | 8392aab | 2017-08-04 15:03:51 +0100 | [diff] [blame] | 144 | # Errata workarounds for Cortex-A72: |
| 145 | ERRATA_A72_859971 := 0 |
Soby Mathew | 937488b | 2014-09-22 14:13:34 +0100 | [diff] [blame] | 146 | |
| 147 | # Enable option to skip L1 data cache flush during the Cortex-A57 cluster |
| 148 | # power down sequence |
| 149 | SKIP_A57_L1_FLUSH_PWR_DWN := 1 |
Dan Handley | 7bef800 | 2015-03-19 19:22:44 +0000 | [diff] [blame] | 150 | |
David Cunado | c5b0c0f | 2017-10-31 23:19:21 +0000 | [diff] [blame] | 151 | # Do not enable SVE |
| 152 | ENABLE_SVE_FOR_NS := 0 |
| 153 | |
Antonio Nino Diaz | 4e6408c | 2019-01-23 16:23:07 +0000 | [diff] [blame] | 154 | # Enable the dynamic translation tables library. |
| 155 | ifeq (${ARCH},aarch32) |
| 156 | ifeq (${RESET_TO_SP_MIN},1) |
Masahiro Yamada | 1adc5f5 | 2020-04-01 14:28:24 +0900 | [diff] [blame] | 157 | BL32_CPPFLAGS += -DPLAT_XLAT_TABLES_DYNAMIC |
Antonio Nino Diaz | 4e6408c | 2019-01-23 16:23:07 +0000 | [diff] [blame] | 158 | endif |
| 159 | else |
| 160 | ifeq (${RESET_TO_BL31},1) |
Masahiro Yamada | 1adc5f5 | 2020-04-01 14:28:24 +0900 | [diff] [blame] | 161 | BL31_CPPFLAGS += -DPLAT_XLAT_TABLES_DYNAMIC |
Antonio Nino Diaz | 4e6408c | 2019-01-23 16:23:07 +0000 | [diff] [blame] | 162 | endif |
| 163 | endif |
| 164 | |
Petre-Ionut Tudor | e5a6fef | 2019-11-07 15:18:03 +0000 | [diff] [blame] | 165 | ifeq (${ALLOW_RO_XLAT_TABLES}, 1) |
| 166 | ifeq (${JUNO_AARCH32_EL3_RUNTIME}, 1) |
Masahiro Yamada | 1adc5f5 | 2020-04-01 14:28:24 +0900 | [diff] [blame] | 167 | BL32_CPPFLAGS += -DPLAT_RO_XLAT_TABLES |
Petre-Ionut Tudor | e5a6fef | 2019-11-07 15:18:03 +0000 | [diff] [blame] | 168 | else |
Masahiro Yamada | 1adc5f5 | 2020-04-01 14:28:24 +0900 | [diff] [blame] | 169 | BL31_CPPFLAGS += -DPLAT_RO_XLAT_TABLES |
Petre-Ionut Tudor | e5a6fef | 2019-11-07 15:18:03 +0000 | [diff] [blame] | 170 | endif |
| 171 | endif |
| 172 | |
Andre Przywara | c7d10e3 | 2020-10-16 12:06:57 +0100 | [diff] [blame] | 173 | BL1_CPPFLAGS += -march=armv8-a+crc |
| 174 | BL2_CPPFLAGS += -march=armv8-a+crc |
| 175 | BL2U_CPPFLAGS += -march=armv8-a+crc |
| 176 | BL31_CPPFLAGS += -march=armv8-a+crc |
| 177 | BL32_CPPFLAGS += -march=armv8-a+crc |
| 178 | |
Louis Mayencourt | 65cac46 | 2019-07-29 10:40:17 +0100 | [diff] [blame] | 179 | # Add the FDT_SOURCES and options for Dynamic Config |
Manish V Badarkhe | 64616a5 | 2020-05-31 08:53:40 +0100 | [diff] [blame] | 180 | FDT_SOURCES += plat/arm/board/juno/fdts/${PLAT}_fw_config.dts \ |
Mikael Olsson | 0232da2 | 2021-02-12 17:30:16 +0100 | [diff] [blame] | 181 | plat/arm/board/juno/fdts/${PLAT}_tb_fw_config.dts \ |
| 182 | fdts/${PLAT}.dts |
Manish V Badarkhe | 64616a5 | 2020-05-31 08:53:40 +0100 | [diff] [blame] | 183 | |
| 184 | FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_fw_config.dtb |
| 185 | TB_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_tb_fw_config.dtb |
Mikael Olsson | 0232da2 | 2021-02-12 17:30:16 +0100 | [diff] [blame] | 186 | HW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}.dtb |
Louis Mayencourt | 65cac46 | 2019-07-29 10:40:17 +0100 | [diff] [blame] | 187 | |
Manish V Badarkhe | 64616a5 | 2020-05-31 08:53:40 +0100 | [diff] [blame] | 188 | # Add the FW_CONFIG to FIP and specify the same to certtool |
Anders Dellien | 3f69474 | 2020-08-23 19:32:48 +0100 | [diff] [blame] | 189 | $(eval $(call TOOL_ADD_PAYLOAD,${FW_CONFIG},--fw-config,${FW_CONFIG})) |
Louis Mayencourt | 65cac46 | 2019-07-29 10:40:17 +0100 | [diff] [blame] | 190 | # Add the TB_FW_CONFIG to FIP and specify the same to certtool |
Anders Dellien | 3f69474 | 2020-08-23 19:32:48 +0100 | [diff] [blame] | 191 | $(eval $(call TOOL_ADD_PAYLOAD,${TB_FW_CONFIG},--tb-fw-config,${TB_FW_CONFIG})) |
Mikael Olsson | 0232da2 | 2021-02-12 17:30:16 +0100 | [diff] [blame] | 192 | # Add the HW_CONFIG to FIP and specify the same to certtool |
| 193 | $(eval $(call TOOL_ADD_PAYLOAD,${HW_CONFIG},--hw-config,${HW_CONFIG})) |
Louis Mayencourt | 65cac46 | 2019-07-29 10:40:17 +0100 | [diff] [blame] | 194 | |
Antonio Nino Diaz | cbc6826 | 2018-10-10 11:02:34 +0100 | [diff] [blame] | 195 | include plat/arm/board/common/board_common.mk |
Dan Handley | 7bef800 | 2015-03-19 19:22:44 +0000 | [diff] [blame] | 196 | include plat/arm/common/arm_common.mk |
| 197 | include plat/arm/soc/common/soc_css.mk |
| 198 | include plat/arm/css/common/css_common.mk |