Jacky Bai | a617700 | 2019-03-06 17:15:06 +0800 | [diff] [blame] | 1 | # |
Jacky Bai | 210ec7d | 2022-03-28 16:11:23 +0800 | [diff] [blame] | 2 | # Copyright (c) 2019-2022, ARM Limited and Contributors. All rights reserved. |
Jacky Bai | a617700 | 2019-03-06 17:15:06 +0800 | [diff] [blame] | 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | |
| 7 | PLAT_INCLUDES := -Iplat/imx/common/include \ |
| 8 | -Iplat/imx/imx8m/include \ |
Ying-Chun Liu (PaulLiu) | 234c271 | 2020-12-22 02:56:00 +0800 | [diff] [blame] | 9 | -Iplat/imx/imx8m/imx8mm/include \ |
| 10 | -Idrivers/imx/usdhc \ |
Ying-Chun Liu (PaulLiu) | ac6d862 | 2021-10-06 09:27:00 +0800 | [diff] [blame] | 11 | -Iinclude/common/tbbr \ |
| 12 | -Iinclude/lib/libfdt |
Jacky Bai | a617700 | 2019-03-06 17:15:06 +0800 | [diff] [blame] | 13 | |
Alexei Fedorov | 84f1b5d | 2020-03-23 18:45:17 +0000 | [diff] [blame] | 14 | # Include GICv3 driver files |
| 15 | include drivers/arm/gic/v3/gicv3.mk |
| 16 | |
Ying-Chun Liu (PaulLiu) | ac6d862 | 2021-10-06 09:27:00 +0800 | [diff] [blame] | 17 | include lib/libfdt/libfdt.mk |
| 18 | |
Alexei Fedorov | 84f1b5d | 2020-03-23 18:45:17 +0000 | [diff] [blame] | 19 | IMX_GIC_SOURCES := ${GICV3_SOURCES} \ |
Jacky Bai | a617700 | 2019-03-06 17:15:06 +0800 | [diff] [blame] | 20 | plat/common/plat_gicv3.c \ |
| 21 | plat/common/plat_psci_common.c \ |
| 22 | plat/imx/common/plat_imx8_gic.c |
| 23 | |
| 24 | BL31_SOURCES += plat/imx/common/imx8_helpers.S \ |
| 25 | plat/imx/imx8m/gpc_common.c \ |
Jacky Bai | 91c6d32 | 2019-05-21 20:24:52 +0800 | [diff] [blame] | 26 | plat/imx/imx8m/imx_aipstz.c \ |
Jacky Bai | 64130a3 | 2019-07-18 13:43:17 +0800 | [diff] [blame] | 27 | plat/imx/imx8m/imx_rdc.c \ |
Jacky Bai | 3bf04a5 | 2019-06-12 17:41:47 +0800 | [diff] [blame] | 28 | plat/imx/imx8m/imx8m_caam.c \ |
Jacky Bai | a617700 | 2019-03-06 17:15:06 +0800 | [diff] [blame] | 29 | plat/imx/imx8m/imx8m_psci_common.c \ |
| 30 | plat/imx/imx8m/imx8mm/imx8mm_bl31_setup.c \ |
| 31 | plat/imx/imx8m/imx8mm/imx8mm_psci.c \ |
| 32 | plat/imx/imx8m/imx8mm/gpc.c \ |
| 33 | plat/imx/common/imx8_topology.c \ |
Leonard Crestez | 402bd52 | 2019-05-08 22:29:21 +0300 | [diff] [blame] | 34 | plat/imx/common/imx_sip_handler.c \ |
| 35 | plat/imx/common/imx_sip_svc.c \ |
Jacky Bai | a617700 | 2019-03-06 17:15:06 +0800 | [diff] [blame] | 36 | plat/imx/common/imx_uart_console.S \ |
| 37 | lib/xlat_tables/aarch64/xlat_tables.c \ |
| 38 | lib/xlat_tables/xlat_tables_common.c \ |
| 39 | lib/cpus/aarch64/cortex_a53.S \ |
Jacky Bai | a617700 | 2019-03-06 17:15:06 +0800 | [diff] [blame] | 40 | drivers/arm/tzc/tzc380.c \ |
| 41 | drivers/delay_timer/delay_timer.c \ |
| 42 | drivers/delay_timer/generic_delay_timer.c \ |
| 43 | ${IMX_GIC_SOURCES} |
| 44 | |
Ying-Chun Liu (PaulLiu) | 234c271 | 2020-12-22 02:56:00 +0800 | [diff] [blame] | 45 | ifeq (${NEED_BL2},yes) |
| 46 | BL2_SOURCES += common/desc_image_load.c \ |
Ying-Chun Liu (PaulLiu) | ac6d862 | 2021-10-06 09:27:00 +0800 | [diff] [blame] | 47 | common/fdt_wrappers.c \ |
Ying-Chun Liu (PaulLiu) | 234c271 | 2020-12-22 02:56:00 +0800 | [diff] [blame] | 48 | plat/imx/common/imx8_helpers.S \ |
| 49 | plat/imx/common/imx_uart_console.S \ |
| 50 | plat/imx/imx8m/imx8mm/imx8mm_bl2_el3_setup.c \ |
| 51 | plat/imx/imx8m/imx8mm/gpc.c \ |
| 52 | plat/imx/imx8m/imx_aipstz.c \ |
| 53 | plat/common/plat_psci_common.c \ |
| 54 | lib/xlat_tables/aarch64/xlat_tables.c \ |
| 55 | lib/xlat_tables/xlat_tables_common.c \ |
| 56 | lib/cpus/aarch64/cortex_a53.S \ |
| 57 | drivers/delay_timer/delay_timer.c \ |
| 58 | drivers/delay_timer/generic_delay_timer.c \ |
| 59 | ${PLAT_GIC_SOURCES} \ |
| 60 | ${PLAT_DRAM_SOURCES} \ |
| 61 | drivers/mmc/mmc.c \ |
| 62 | drivers/io/io_block.c \ |
| 63 | drivers/io/io_fip.c \ |
| 64 | drivers/io/io_memmap.c \ |
| 65 | drivers/io/io_storage.c \ |
| 66 | drivers/imx/usdhc/imx_usdhc.c \ |
| 67 | plat/imx/imx8m/imx8mm/imx8mm_bl2_mem_params_desc.c \ |
Ying-Chun Liu (PaulLiu) | 54cabc4 | 2021-04-07 06:10:32 +0800 | [diff] [blame] | 68 | plat/imx/common/imx_io_storage.c \ |
Ying-Chun Liu (PaulLiu) | e6a7f88 | 2021-04-07 06:12:37 +0800 | [diff] [blame] | 69 | plat/imx/imx8m/imx8m_image_load.c \ |
Ying-Chun Liu (PaulLiu) | 234c271 | 2020-12-22 02:56:00 +0800 | [diff] [blame] | 70 | lib/optee/optee_utils.c |
| 71 | endif |
| 72 | |
| 73 | # Add the build options to pack BLx images and kernel device tree |
| 74 | # in the FIP if the platform requires. |
| 75 | ifneq ($(BL2),) |
| 76 | RESET_TO_BL31 := 0 |
| 77 | $(eval $(call TOOL_ADD_PAYLOAD,${BUILD_PLAT}/tb_fw.crt,--tb-fw-cert)) |
| 78 | endif |
| 79 | ifneq ($(BL32_EXTRA1),) |
| 80 | $(eval $(call TOOL_ADD_IMG,BL32_EXTRA1,--tos-fw-extra1)) |
| 81 | endif |
| 82 | ifneq ($(BL32_EXTRA2),) |
| 83 | $(eval $(call TOOL_ADD_IMG,BL32_EXTRA2,--tos-fw-extra2)) |
| 84 | endif |
| 85 | ifneq ($(HW_CONFIG),) |
| 86 | $(eval $(call TOOL_ADD_IMG,HW_CONFIG,--hw-config)) |
| 87 | endif |
| 88 | |
| 89 | ifeq (${NEED_BL2},yes) |
| 90 | $(eval $(call add_define,NEED_BL2)) |
| 91 | LOAD_IMAGE_V2 := 1 |
| 92 | # Non-TF Boot ROM |
| 93 | BL2_AT_EL3 := 1 |
| 94 | endif |
| 95 | |
| 96 | ifneq (${TRUSTED_BOARD_BOOT},0) |
| 97 | |
| 98 | include drivers/auth/mbedtls/mbedtls_crypto.mk |
| 99 | include drivers/auth/mbedtls/mbedtls_x509.mk |
| 100 | |
| 101 | AUTH_SOURCES := drivers/auth/auth_mod.c \ |
| 102 | drivers/auth/crypto_mod.c \ |
| 103 | drivers/auth/img_parser_mod.c \ |
| 104 | drivers/auth/tbbr/tbbr_cot_common.c \ |
| 105 | drivers/auth/tbbr/tbbr_cot_bl2.c |
| 106 | |
| 107 | BL2_SOURCES += ${AUTH_SOURCES} \ |
| 108 | plat/common/tbbr/plat_tbbr.c \ |
| 109 | plat/imx/imx8m/imx8mm/imx8mm_trusted_boot.c \ |
| 110 | plat/imx/imx8m/imx8mm/imx8mm_rotpk.S |
| 111 | |
| 112 | ROT_KEY = $(BUILD_PLAT)/rot_key.pem |
| 113 | ROTPK_HASH = $(BUILD_PLAT)/rotpk_sha256.bin |
| 114 | |
| 115 | $(eval $(call add_define_val,ROTPK_HASH,'"$(ROTPK_HASH)"')) |
| 116 | $(eval $(call MAKE_LIB_DIRS)) |
| 117 | |
| 118 | $(BUILD_PLAT)/bl2/imx8mm_rotpk.o: $(ROTPK_HASH) |
| 119 | |
| 120 | certificates: $(ROT_KEY) |
| 121 | |
| 122 | $(ROT_KEY): | $(BUILD_PLAT) |
| 123 | @echo " OPENSSL $@" |
| 124 | @if [ ! -f $(ROT_KEY) ]; then \ |
| 125 | openssl genrsa 2048 > $@ 2>/dev/null; \ |
| 126 | fi |
| 127 | |
| 128 | $(ROTPK_HASH): $(ROT_KEY) |
| 129 | @echo " OPENSSL $@" |
| 130 | $(Q)openssl rsa -in $< -pubout -outform DER 2>/dev/null |\ |
| 131 | openssl dgst -sha256 -binary > $@ 2>/dev/null |
| 132 | endif |
| 133 | |
Jacky Bai | a617700 | 2019-03-06 17:15:06 +0800 | [diff] [blame] | 134 | USE_COHERENT_MEM := 1 |
| 135 | RESET_TO_BL31 := 1 |
| 136 | A53_DISABLE_NON_TEMPORAL_HINT := 0 |
Jacky Bai | a617700 | 2019-03-06 17:15:06 +0800 | [diff] [blame] | 137 | |
| 138 | ERRATA_A53_835769 := 1 |
| 139 | ERRATA_A53_843419 := 1 |
| 140 | ERRATA_A53_855873 := 1 |
Jacky Bai | 2a763ba | 2019-07-18 13:34:09 +0800 | [diff] [blame] | 141 | |
| 142 | BL32_BASE ?= 0xbe000000 |
| 143 | $(eval $(call add_define,BL32_BASE)) |
| 144 | |
| 145 | BL32_SIZE ?= 0x2000000 |
| 146 | $(eval $(call add_define,BL32_SIZE)) |
Igor Opaniuk | 9fc5cb6 | 2020-03-05 22:10:41 +0200 | [diff] [blame] | 147 | |
| 148 | IMX_BOOT_UART_BASE ?= 0x30890000 |
| 149 | $(eval $(call add_define,IMX_BOOT_UART_BASE)) |
Peng Fan | 57e982c | 2020-07-27 21:22:14 +0800 | [diff] [blame] | 150 | |
Jacky Bai | 210ec7d | 2022-03-28 16:11:23 +0800 | [diff] [blame] | 151 | EL3_EXCEPTION_HANDLING := $(SDEI_SUPPORT) |
| 152 | ifeq (${SDEI_SUPPORT}, 1) |
| 153 | BL31_SOURCES += plat/imx/common/imx_ehf.c \ |
| 154 | plat/imx/common/imx_sdei.c |
| 155 | endif |
Ying-Chun Liu (PaulLiu) | ac6d862 | 2021-10-06 09:27:00 +0800 | [diff] [blame] | 156 | |
| 157 | ifeq (${MEASURED_BOOT},1) |
| 158 | MEASURED_BOOT_MK := drivers/measured_boot/event_log/event_log.mk |
| 159 | $(info Including ${MEASURED_BOOT_MK}) |
| 160 | include ${MEASURED_BOOT_MK} |
| 161 | |
| 162 | BL2_SOURCES += plat/imx/imx8m/imx8m_measured_boot.c \ |
| 163 | plat/imx/imx8m/imx8m_dyn_cfg_helpers.c \ |
| 164 | ${EVENT_LOG_SOURCES} |
| 165 | |
| 166 | endif |