Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 1 | # |
dp-arm | 66abfbe | 2017-01-31 13:01:04 +0000 | [diff] [blame] | 2 | # Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved. |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 3 | # |
| 4 | # Redistribution and use in source and binary forms, with or without |
| 5 | # modification, are permitted provided that the following conditions are met: |
| 6 | # |
| 7 | # Redistributions of source code must retain the above copyright notice, this |
| 8 | # list of conditions and the following disclaimer. |
| 9 | # |
| 10 | # Redistributions in binary form must reproduce the above copyright notice, |
| 11 | # this list of conditions and the following disclaimer in the documentation |
| 12 | # and/or other materials provided with the distribution. |
| 13 | # |
| 14 | # Neither the name of ARM nor the names of its contributors may be used |
| 15 | # to endorse or promote products derived from this software without specific |
| 16 | # prior written permission. |
| 17 | # |
| 18 | # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 19 | # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 20 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 21 | # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
| 22 | # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 23 | # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 24 | # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 25 | # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 26 | # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 27 | # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 28 | # POSSIBILITY OF SUCH DAMAGE. |
| 29 | # |
| 30 | |
Soby Mathew | 0d268dc | 2016-07-11 14:13:56 +0100 | [diff] [blame] | 31 | ifeq (${ARCH}, aarch64) |
| 32 | # On ARM standard platorms, the TSP can execute from Trusted SRAM, Trusted |
| 33 | # DRAM (if available) or the TZC secured area of DRAM. |
| 34 | # Trusted SRAM is the default. |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 35 | |
Soby Mathew | 0d268dc | 2016-07-11 14:13:56 +0100 | [diff] [blame] | 36 | ARM_TSP_RAM_LOCATION := tsram |
| 37 | ifeq (${ARM_TSP_RAM_LOCATION}, tsram) |
| 38 | ARM_TSP_RAM_LOCATION_ID = ARM_TRUSTED_SRAM_ID |
| 39 | else ifeq (${ARM_TSP_RAM_LOCATION}, tdram) |
| 40 | ARM_TSP_RAM_LOCATION_ID = ARM_TRUSTED_DRAM_ID |
| 41 | else ifeq (${ARM_TSP_RAM_LOCATION}, dram) |
| 42 | ARM_TSP_RAM_LOCATION_ID = ARM_DRAM_ID |
| 43 | else |
| 44 | $(error "Unsupported ARM_TSP_RAM_LOCATION value") |
| 45 | endif |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 46 | |
Soby Mathew | 0d268dc | 2016-07-11 14:13:56 +0100 | [diff] [blame] | 47 | # Process flags |
| 48 | $(eval $(call add_define,ARM_TSP_RAM_LOCATION_ID)) |
| 49 | |
| 50 | # Process ARM_BL31_IN_DRAM flag |
| 51 | ARM_BL31_IN_DRAM := 0 |
| 52 | $(eval $(call assert_boolean,ARM_BL31_IN_DRAM)) |
| 53 | $(eval $(call add_define,ARM_BL31_IN_DRAM)) |
| 54 | endif |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 55 | |
Soby Mathew | 7799cf7 | 2015-04-16 14:49:09 +0100 | [diff] [blame] | 56 | # For the original power-state parameter format, the State-ID can be encoded |
| 57 | # according to the recommended encoding or zero. This flag determines which |
| 58 | # State-ID encoding to be parsed. |
| 59 | ARM_RECOM_STATE_ID_ENC := 0 |
| 60 | |
Douglas Raillard | 66933ff | 2016-11-07 17:29:34 +0000 | [diff] [blame] | 61 | # If the PSCI_EXTENDED_STATE_ID is set, then ARM_RECOM_STATE_ID_ENC need to |
| 62 | # be set. Else throw a build error. |
Soby Mathew | 7799cf7 | 2015-04-16 14:49:09 +0100 | [diff] [blame] | 63 | ifeq (${PSCI_EXTENDED_STATE_ID}, 1) |
| 64 | ifeq (${ARM_RECOM_STATE_ID_ENC}, 0) |
Douglas Raillard | 66933ff | 2016-11-07 17:29:34 +0000 | [diff] [blame] | 65 | $(error Build option ARM_RECOM_STATE_ID_ENC needs to be set if \ |
| 66 | PSCI_EXTENDED_STATE_ID is set for ARM platforms) |
Soby Mathew | 7799cf7 | 2015-04-16 14:49:09 +0100 | [diff] [blame] | 67 | endif |
| 68 | endif |
| 69 | |
| 70 | # Process ARM_RECOM_STATE_ID_ENC flag |
| 71 | $(eval $(call assert_boolean,ARM_RECOM_STATE_ID_ENC)) |
| 72 | $(eval $(call add_define,ARM_RECOM_STATE_ID_ENC)) |
| 73 | |
Juan Castillo | b6132f1 | 2015-10-06 14:01:35 +0100 | [diff] [blame] | 74 | # Process ARM_DISABLE_TRUSTED_WDOG flag |
| 75 | # By default, Trusted Watchdog is always enabled unless SPIN_ON_BL1_EXIT is set |
| 76 | ARM_DISABLE_TRUSTED_WDOG := 0 |
| 77 | ifeq (${SPIN_ON_BL1_EXIT}, 1) |
| 78 | ARM_DISABLE_TRUSTED_WDOG := 1 |
| 79 | endif |
| 80 | $(eval $(call assert_boolean,ARM_DISABLE_TRUSTED_WDOG)) |
| 81 | $(eval $(call add_define,ARM_DISABLE_TRUSTED_WDOG)) |
| 82 | |
Juan Castillo | aadf19a | 2015-11-06 16:02:32 +0000 | [diff] [blame] | 83 | # Process ARM_CONFIG_CNTACR |
| 84 | ARM_CONFIG_CNTACR := 1 |
| 85 | $(eval $(call assert_boolean,ARM_CONFIG_CNTACR)) |
| 86 | $(eval $(call add_define,ARM_CONFIG_CNTACR)) |
| 87 | |
David Wang | 0ba499f | 2016-03-07 11:02:57 +0800 | [diff] [blame] | 88 | # Process ARM_BL31_IN_DRAM flag |
| 89 | ARM_BL31_IN_DRAM := 0 |
| 90 | $(eval $(call assert_boolean,ARM_BL31_IN_DRAM)) |
| 91 | $(eval $(call add_define,ARM_BL31_IN_DRAM)) |
| 92 | |
Soby Mathew | 421dbc4 | 2016-05-23 16:07:53 +0100 | [diff] [blame] | 93 | # Enable PSCI_STAT_COUNT/RESIDENCY APIs on ARM platforms |
Soby Mathew | 0d268dc | 2016-07-11 14:13:56 +0100 | [diff] [blame] | 94 | ENABLE_PSCI_STAT := 1 |
dp-arm | 66abfbe | 2017-01-31 13:01:04 +0000 | [diff] [blame] | 95 | ENABLE_PMF := 1 |
Soby Mathew | 421dbc4 | 2016-05-23 16:07:53 +0100 | [diff] [blame] | 96 | |
Sandrine Bailleux | ecdc4d3 | 2016-07-08 14:38:16 +0100 | [diff] [blame] | 97 | # On ARM platforms, separate the code and read-only data sections to allow |
| 98 | # mapping the former as executable and the latter as execute-never. |
| 99 | SEPARATE_CODE_AND_RODATA := 1 |
| 100 | |
Yatharth Kochar | 8c0177f | 2016-11-11 13:57:50 +0000 | [diff] [blame] | 101 | # Enable new version of image loading on ARM platforms |
| 102 | LOAD_IMAGE_V2 := 1 |
Sandrine Bailleux | ecdc4d3 | 2016-07-08 14:38:16 +0100 | [diff] [blame] | 103 | |
Juan Castillo | 9b265a8 | 2015-05-07 14:52:44 +0100 | [diff] [blame] | 104 | PLAT_INCLUDES += -Iinclude/common/tbbr \ |
Soby Mathew | 0d268dc | 2016-07-11 14:13:56 +0100 | [diff] [blame] | 105 | -Iinclude/plat/arm/common |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 106 | |
Soby Mathew | 0d268dc | 2016-07-11 14:13:56 +0100 | [diff] [blame] | 107 | ifeq (${ARCH}, aarch64) |
| 108 | PLAT_INCLUDES += -Iinclude/plat/arm/common/aarch64 |
| 109 | endif |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 110 | |
Antonio Nino Diaz | 719bf85 | 2017-02-23 17:22:58 +0000 | [diff] [blame] | 111 | include lib/xlat_tables_v2/xlat_tables.mk |
| 112 | |
| 113 | PLAT_BL_COMMON_SOURCES += ${XLAT_TABLES_LIB_SRCS} \ |
Soby Mathew | 0d268dc | 2016-07-11 14:13:56 +0100 | [diff] [blame] | 114 | plat/arm/common/${ARCH}/arm_helpers.S \ |
dp-arm | 230011c | 2017-03-07 11:02:47 +0000 | [diff] [blame^] | 115 | plat/arm/common/arm_common.c |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 116 | |
Vikram Kanigiri | fbb1301 | 2016-02-15 11:54:14 +0000 | [diff] [blame] | 117 | BL1_SOURCES += drivers/arm/sp805/sp805.c \ |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 118 | drivers/io/io_fip.c \ |
| 119 | drivers/io/io_memmap.c \ |
| 120 | drivers/io/io_storage.c \ |
| 121 | plat/arm/common/arm_bl1_setup.c \ |
dp-arm | 230011c | 2017-03-07 11:02:47 +0000 | [diff] [blame^] | 122 | plat/arm/common/arm_io_storage.c |
Sandrine Bailleux | 03897bb | 2015-11-26 16:31:34 +0000 | [diff] [blame] | 123 | ifdef EL3_PAYLOAD_BASE |
| 124 | # Need the arm_program_trusted_mailbox() function to release secondary CPUs from |
| 125 | # their holding pen |
| 126 | BL1_SOURCES += plat/arm/common/arm_pm.c |
| 127 | endif |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 128 | |
Vikram Kanigiri | 70752bb | 2016-02-10 14:50:53 +0000 | [diff] [blame] | 129 | BL2_SOURCES += drivers/io/io_fip.c \ |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 130 | drivers/io/io_memmap.c \ |
| 131 | drivers/io/io_storage.c \ |
| 132 | plat/arm/common/arm_bl2_setup.c \ |
dp-arm | 230011c | 2017-03-07 11:02:47 +0000 | [diff] [blame^] | 133 | plat/arm/common/arm_io_storage.c |
Yatharth Kochar | f9a0f16 | 2016-09-13 17:07:57 +0100 | [diff] [blame] | 134 | ifeq (${LOAD_IMAGE_V2},1) |
| 135 | BL2_SOURCES += plat/arm/common/${ARCH}/arm_bl2_mem_params_desc.c\ |
| 136 | plat/arm/common/arm_image_load.c \ |
| 137 | common/desc_image_load.c |
| 138 | endif |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 139 | |
dp-arm | 230011c | 2017-03-07 11:02:47 +0000 | [diff] [blame^] | 140 | BL2U_SOURCES += plat/arm/common/arm_bl2u_setup.c |
Yatharth Kochar | 3a11eda | 2015-10-14 15:28:11 +0100 | [diff] [blame] | 141 | |
Vikram Kanigiri | fbb1301 | 2016-02-15 11:54:14 +0000 | [diff] [blame] | 142 | BL31_SOURCES += plat/arm/common/arm_bl31_setup.c \ |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 143 | plat/arm/common/arm_pm.c \ |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 144 | plat/arm/common/arm_topology.c \ |
Soby Mathew | f6c4108 | 2016-05-03 12:31:18 +0100 | [diff] [blame] | 145 | plat/common/plat_psci_common.c |
Juan Castillo | a08a5e7 | 2015-05-19 11:54:12 +0100 | [diff] [blame] | 146 | |
dp-arm | 1cebefd | 2016-09-19 11:21:03 +0100 | [diff] [blame] | 147 | ifeq (${ENABLE_PMF}, 1) |
| 148 | BL31_SOURCES += plat/arm/common/arm_sip_svc.c \ |
| 149 | lib/pmf/pmf_smc.c |
| 150 | endif |
| 151 | |
Juan Castillo | a08a5e7 | 2015-05-19 11:54:12 +0100 | [diff] [blame] | 152 | ifneq (${TRUSTED_BOARD_BOOT},0) |
| 153 | |
| 154 | # By default, ARM platforms use RSA keys |
| 155 | KEY_ALG := rsa |
| 156 | |
| 157 | # Include common TBB sources |
| 158 | AUTH_SOURCES := drivers/auth/auth_mod.c \ |
Achin Gupta | 1fa7eb6 | 2015-11-03 14:18:34 +0000 | [diff] [blame] | 159 | drivers/auth/crypto_mod.c \ |
| 160 | drivers/auth/img_parser_mod.c \ |
| 161 | drivers/auth/tbbr/tbbr_cot.c \ |
Juan Castillo | a08a5e7 | 2015-05-19 11:54:12 +0100 | [diff] [blame] | 162 | |
Yatharth Kochar | 736a3bf | 2015-10-11 14:14:55 +0100 | [diff] [blame] | 163 | PLAT_INCLUDES += -Iinclude/bl1/tbbr |
| 164 | |
Yatharth Kochar | f11b29a | 2016-02-01 11:04:46 +0000 | [diff] [blame] | 165 | BL1_SOURCES += ${AUTH_SOURCES} \ |
| 166 | bl1/tbbr/tbbr_img_desc.c \ |
dp-arm | b3e8580 | 2016-12-12 14:48:13 +0000 | [diff] [blame] | 167 | plat/arm/common/arm_bl1_fwu.c \ |
| 168 | plat/common/tbbr/plat_tbbr.c |
Yatharth Kochar | 736a3bf | 2015-10-11 14:14:55 +0100 | [diff] [blame] | 169 | |
dp-arm | b3e8580 | 2016-12-12 14:48:13 +0000 | [diff] [blame] | 170 | BL2_SOURCES += ${AUTH_SOURCES} \ |
| 171 | plat/common/tbbr/plat_tbbr.c |
Juan Castillo | a08a5e7 | 2015-05-19 11:54:12 +0100 | [diff] [blame] | 172 | |
Juan Castillo | 8e04dec | 2016-01-05 11:55:36 +0000 | [diff] [blame] | 173 | $(eval $(call FWU_FIP_ADD_IMG,NS_BL2U,--fwu)) |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 174 | |
Juan Castillo | a08a5e7 | 2015-05-19 11:54:12 +0100 | [diff] [blame] | 175 | MBEDTLS_KEY_ALG := ${KEY_ALG} |
| 176 | |
| 177 | # We expect to locate the *.mk files under the directories specified below |
| 178 | CRYPTO_LIB_MK := drivers/auth/mbedtls/mbedtls_crypto.mk |
| 179 | IMG_PARSER_LIB_MK := drivers/auth/mbedtls/mbedtls_x509.mk |
| 180 | |
| 181 | $(info Including ${CRYPTO_LIB_MK}) |
| 182 | include ${CRYPTO_LIB_MK} |
| 183 | |
| 184 | $(info Including ${IMG_PARSER_LIB_MK}) |
| 185 | include ${IMG_PARSER_LIB_MK} |
| 186 | |
| 187 | endif |