blob: 9727db30c3e965e0f025059927e80745251bbe43 [file] [log] [blame]
Jacky Baia6177002019-03-06 17:15:06 +08001#
Jacky Bai210ec7d2022-03-28 16:11:23 +08002# Copyright (c) 2019-2022, ARM Limited and Contributors. All rights reserved.
Jacky Baia6177002019-03-06 17:15:06 +08003#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7PLAT_INCLUDES := -Iplat/imx/common/include \
8 -Iplat/imx/imx8m/include \
Ying-Chun Liu (PaulLiu)234c2712020-12-22 02:56:00 +08009 -Iplat/imx/imx8m/imx8mm/include \
10 -Idrivers/imx/usdhc \
Ying-Chun Liu (PaulLiu)ac6d8622021-10-06 09:27:00 +080011 -Iinclude/common/tbbr \
12 -Iinclude/lib/libfdt
Jacky Baia6177002019-03-06 17:15:06 +080013
Alexei Fedorov84f1b5d2020-03-23 18:45:17 +000014# Include GICv3 driver files
15include drivers/arm/gic/v3/gicv3.mk
16
Ying-Chun Liu (PaulLiu)ac6d8622021-10-06 09:27:00 +080017include lib/libfdt/libfdt.mk
18
Alexei Fedorov84f1b5d2020-03-23 18:45:17 +000019IMX_GIC_SOURCES := ${GICV3_SOURCES} \
Jacky Baia6177002019-03-06 17:15:06 +080020 plat/common/plat_gicv3.c \
21 plat/common/plat_psci_common.c \
22 plat/imx/common/plat_imx8_gic.c
23
24BL31_SOURCES += plat/imx/common/imx8_helpers.S \
25 plat/imx/imx8m/gpc_common.c \
Jacky Bai91c6d322019-05-21 20:24:52 +080026 plat/imx/imx8m/imx_aipstz.c \
Jacky Bai64130a32019-07-18 13:43:17 +080027 plat/imx/imx8m/imx_rdc.c \
Jacky Bai3bf04a52019-06-12 17:41:47 +080028 plat/imx/imx8m/imx8m_caam.c \
Jacky Baia6177002019-03-06 17:15:06 +080029 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 Crestez402bd522019-05-08 22:29:21 +030034 plat/imx/common/imx_sip_handler.c \
35 plat/imx/common/imx_sip_svc.c \
Jacky Baia6177002019-03-06 17:15:06 +080036 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 Baia6177002019-03-06 17:15:06 +080040 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)234c2712020-12-22 02:56:00 +080045ifeq (${NEED_BL2},yes)
46BL2_SOURCES += common/desc_image_load.c \
Ying-Chun Liu (PaulLiu)ac6d8622021-10-06 09:27:00 +080047 common/fdt_wrappers.c \
Ying-Chun Liu (PaulLiu)234c2712020-12-22 02:56:00 +080048 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)54cabc42021-04-07 06:10:32 +080068 plat/imx/common/imx_io_storage.c \
Ying-Chun Liu (PaulLiu)e6a7f882021-04-07 06:12:37 +080069 plat/imx/imx8m/imx8m_image_load.c \
Ying-Chun Liu (PaulLiu)234c2712020-12-22 02:56:00 +080070 lib/optee/optee_utils.c
71endif
72
73# Add the build options to pack BLx images and kernel device tree
74# in the FIP if the platform requires.
75ifneq ($(BL2),)
76RESET_TO_BL31 := 0
77$(eval $(call TOOL_ADD_PAYLOAD,${BUILD_PLAT}/tb_fw.crt,--tb-fw-cert))
78endif
79ifneq ($(BL32_EXTRA1),)
80$(eval $(call TOOL_ADD_IMG,BL32_EXTRA1,--tos-fw-extra1))
81endif
82ifneq ($(BL32_EXTRA2),)
83$(eval $(call TOOL_ADD_IMG,BL32_EXTRA2,--tos-fw-extra2))
84endif
85ifneq ($(HW_CONFIG),)
86$(eval $(call TOOL_ADD_IMG,HW_CONFIG,--hw-config))
87endif
88
89ifeq (${NEED_BL2},yes)
90$(eval $(call add_define,NEED_BL2))
91LOAD_IMAGE_V2 := 1
92# Non-TF Boot ROM
93BL2_AT_EL3 := 1
94endif
95
96ifneq (${TRUSTED_BOARD_BOOT},0)
97
98include drivers/auth/mbedtls/mbedtls_crypto.mk
99include drivers/auth/mbedtls/mbedtls_x509.mk
100
101AUTH_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
107BL2_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
112ROT_KEY = $(BUILD_PLAT)/rot_key.pem
113ROTPK_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
120certificates: $(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
132endif
133
Jacky Baia6177002019-03-06 17:15:06 +0800134USE_COHERENT_MEM := 1
135RESET_TO_BL31 := 1
136A53_DISABLE_NON_TEMPORAL_HINT := 0
Jacky Baia6177002019-03-06 17:15:06 +0800137
138ERRATA_A53_835769 := 1
139ERRATA_A53_843419 := 1
140ERRATA_A53_855873 := 1
Jacky Bai2a763ba2019-07-18 13:34:09 +0800141
142BL32_BASE ?= 0xbe000000
143$(eval $(call add_define,BL32_BASE))
144
145BL32_SIZE ?= 0x2000000
146$(eval $(call add_define,BL32_SIZE))
Igor Opaniuk9fc5cb62020-03-05 22:10:41 +0200147
148IMX_BOOT_UART_BASE ?= 0x30890000
149$(eval $(call add_define,IMX_BOOT_UART_BASE))
Peng Fan57e982c2020-07-27 21:22:14 +0800150
Jacky Bai210ec7d2022-03-28 16:11:23 +0800151EL3_EXCEPTION_HANDLING := $(SDEI_SUPPORT)
152ifeq (${SDEI_SUPPORT}, 1)
153BL31_SOURCES += plat/imx/common/imx_ehf.c \
154 plat/imx/common/imx_sdei.c
155endif
Ying-Chun Liu (PaulLiu)ac6d8622021-10-06 09:27:00 +0800156
157ifeq (${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
162BL2_SOURCES += plat/imx/imx8m/imx8m_measured_boot.c \
163 plat/imx/imx8m/imx8m_dyn_cfg_helpers.c \
164 ${EVENT_LOG_SOURCES}
165
166endif