Jacky Bai | 07ed02c | 2020-06-03 14:28:45 +0800 | [diff] [blame] | 1 | # |
| 2 | # Copyright 2019-2020 NXP |
| 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) | a61a5c2 | 2021-04-07 06:52:57 +0800 | [diff] [blame] | 9 | -Iplat/imx/imx8m/imx8mp/include \ |
| 10 | -Idrivers/imx/usdhc \ |
| 11 | -Iinclude/common/tbbr |
Jacky Bai | 07ed02c | 2020-06-03 14:28:45 +0800 | [diff] [blame] | 12 | # Translation tables library |
| 13 | include lib/xlat_tables_v2/xlat_tables.mk |
| 14 | |
| 15 | # Include GICv3 driver files |
| 16 | include drivers/arm/gic/v3/gicv3.mk |
| 17 | |
| 18 | IMX_GIC_SOURCES := ${GICV3_SOURCES} \ |
| 19 | plat/common/plat_gicv3.c \ |
| 20 | plat/common/plat_psci_common.c \ |
| 21 | plat/imx/common/plat_imx8_gic.c |
| 22 | |
| 23 | BL31_SOURCES += plat/imx/common/imx8_helpers.S \ |
| 24 | plat/imx/imx8m/gpc_common.c \ |
| 25 | plat/imx/imx8m/imx_aipstz.c \ |
| 26 | plat/imx/imx8m/imx_rdc.c \ |
| 27 | plat/imx/imx8m/imx8m_caam.c \ |
| 28 | plat/imx/imx8m/imx8m_psci_common.c \ |
| 29 | plat/imx/imx8m/imx8mp/imx8mp_bl31_setup.c \ |
| 30 | plat/imx/imx8m/imx8mp/imx8mp_psci.c \ |
| 31 | plat/imx/imx8m/imx8mp/gpc.c \ |
| 32 | plat/imx/common/imx8_topology.c \ |
Peng Fan | 5cbabbc | 2021-03-25 18:46:58 +0800 | [diff] [blame] | 33 | plat/imx/common/imx_ehf.c \ |
| 34 | plat/imx/common/imx_sdei.c \ |
Jacky Bai | 07ed02c | 2020-06-03 14:28:45 +0800 | [diff] [blame] | 35 | plat/imx/common/imx_sip_handler.c \ |
| 36 | plat/imx/common/imx_sip_svc.c \ |
| 37 | plat/imx/common/imx_uart_console.S \ |
| 38 | lib/cpus/aarch64/cortex_a53.S \ |
| 39 | drivers/arm/tzc/tzc380.c \ |
| 40 | drivers/delay_timer/delay_timer.c \ |
| 41 | drivers/delay_timer/generic_delay_timer.c \ |
| 42 | ${IMX_GIC_SOURCES} \ |
| 43 | ${XLAT_TABLES_LIB_SRCS} |
| 44 | |
Ying-Chun Liu (PaulLiu) | a61a5c2 | 2021-04-07 06:52:57 +0800 | [diff] [blame] | 45 | ifeq (${NEED_BL2},yes) |
| 46 | BL2_SOURCES += common/desc_image_load.c \ |
| 47 | plat/imx/common/imx8_helpers.S \ |
| 48 | plat/imx/common/imx_uart_console.S \ |
| 49 | plat/imx/imx8m/imx8mp/imx8mp_bl2_el3_setup.c \ |
| 50 | plat/imx/imx8m/imx8mp/gpc.c \ |
| 51 | plat/imx/imx8m/imx_aipstz.c \ |
| 52 | plat/imx/imx8m/imx_rdc.c \ |
| 53 | plat/imx/imx8m/imx8m_caam.c \ |
| 54 | plat/common/plat_psci_common.c \ |
| 55 | lib/cpus/aarch64/cortex_a53.S \ |
| 56 | drivers/arm/tzc/tzc380.c \ |
| 57 | drivers/delay_timer/delay_timer.c \ |
| 58 | drivers/delay_timer/generic_delay_timer.c \ |
| 59 | ${PLAT_GIC_SOURCES} \ |
| 60 | ${PLAT_DRAM_SOURCES} \ |
| 61 | ${XLAT_TABLES_LIB_SRCS} \ |
| 62 | drivers/mmc/mmc.c \ |
| 63 | drivers/io/io_block.c \ |
| 64 | drivers/io/io_fip.c \ |
| 65 | drivers/io/io_memmap.c \ |
| 66 | drivers/io/io_storage.c \ |
| 67 | drivers/imx/usdhc/imx_usdhc.c \ |
| 68 | plat/imx/imx8m/imx8mp/imx8mp_bl2_mem_params_desc.c \ |
| 69 | plat/imx/common/imx_io_storage.c \ |
| 70 | plat/imx/imx8m/imx8m_image_load.c \ |
| 71 | lib/optee/optee_utils.c |
| 72 | endif |
| 73 | |
| 74 | # Add the build options to pack BLx images and kernel device tree |
| 75 | # in the FIP if the platform requires. |
| 76 | ifneq ($(BL2),) |
| 77 | RESET_TO_BL31 := 0 |
| 78 | $(eval $(call TOOL_ADD_PAYLOAD,${BUILD_PLAT}/tb_fw.crt,--tb-fw-cert)) |
| 79 | endif |
| 80 | ifneq ($(BL32_EXTRA1),) |
| 81 | $(eval $(call TOOL_ADD_IMG,BL32_EXTRA1,--tos-fw-extra1)) |
| 82 | endif |
| 83 | ifneq ($(BL32_EXTRA2),) |
| 84 | $(eval $(call TOOL_ADD_IMG,BL32_EXTRA2,--tos-fw-extra2)) |
| 85 | endif |
| 86 | ifneq ($(HW_CONFIG),) |
| 87 | $(eval $(call TOOL_ADD_IMG,HW_CONFIG,--hw-config)) |
| 88 | endif |
| 89 | |
| 90 | ifeq (${NEED_BL2},yes) |
| 91 | $(eval $(call add_define,NEED_BL2)) |
| 92 | LOAD_IMAGE_V2 := 1 |
| 93 | # Non-TF Boot ROM |
| 94 | BL2_AT_EL3 := 1 |
| 95 | endif |
| 96 | |
Ying-Chun Liu (PaulLiu) | f70e289 | 2021-04-07 07:18:52 +0800 | [diff] [blame] | 97 | ifneq (${TRUSTED_BOARD_BOOT},0) |
| 98 | |
| 99 | include drivers/auth/mbedtls/mbedtls_crypto.mk |
| 100 | include drivers/auth/mbedtls/mbedtls_x509.mk |
| 101 | |
| 102 | AUTH_SOURCES := drivers/auth/auth_mod.c \ |
| 103 | drivers/auth/crypto_mod.c \ |
| 104 | drivers/auth/img_parser_mod.c \ |
| 105 | drivers/auth/tbbr/tbbr_cot_common.c \ |
| 106 | drivers/auth/tbbr/tbbr_cot_bl2.c |
| 107 | |
| 108 | BL2_SOURCES += ${AUTH_SOURCES} \ |
| 109 | plat/common/tbbr/plat_tbbr.c \ |
| 110 | plat/imx/imx8m/imx8mp/imx8mp_trusted_boot.c \ |
| 111 | plat/imx/imx8m/imx8mp/imx8mp_rotpk.S |
| 112 | |
| 113 | ROT_KEY = $(BUILD_PLAT)/rot_key.pem |
| 114 | ROTPK_HASH = $(BUILD_PLAT)/rotpk_sha256.bin |
| 115 | |
| 116 | $(eval $(call add_define_val,ROTPK_HASH,'"$(ROTPK_HASH)"')) |
| 117 | $(eval $(call MAKE_LIB_DIRS)) |
| 118 | |
| 119 | $(BUILD_PLAT)/bl2/imx8mp_rotpk.o: $(ROTPK_HASH) |
| 120 | |
| 121 | certificates: $(ROT_KEY) |
| 122 | |
| 123 | $(ROT_KEY): | $(BUILD_PLAT) |
| 124 | @echo " OPENSSL $@" |
| 125 | @if [ ! -f $(ROT_KEY) ]; then \ |
| 126 | openssl genrsa 2048 > $@ 2>/dev/null; \ |
| 127 | fi |
| 128 | |
| 129 | $(ROTPK_HASH): $(ROT_KEY) |
| 130 | @echo " OPENSSL $@" |
| 131 | $(Q)openssl rsa -in $< -pubout -outform DER 2>/dev/null |\ |
| 132 | openssl dgst -sha256 -binary > $@ 2>/dev/null |
| 133 | endif |
| 134 | |
Jacky Bai | 07ed02c | 2020-06-03 14:28:45 +0800 | [diff] [blame] | 135 | USE_COHERENT_MEM := 1 |
| 136 | RESET_TO_BL31 := 1 |
| 137 | A53_DISABLE_NON_TEMPORAL_HINT := 0 |
| 138 | |
| 139 | ERRATA_A53_835769 := 1 |
| 140 | ERRATA_A53_843419 := 1 |
| 141 | ERRATA_A53_855873 := 1 |
| 142 | |
| 143 | BL32_BASE ?= 0x56000000 |
| 144 | $(eval $(call add_define,BL32_BASE)) |
| 145 | |
| 146 | BL32_SIZE ?= 0x2000000 |
| 147 | $(eval $(call add_define,BL32_SIZE)) |
| 148 | |
| 149 | IMX_BOOT_UART_BASE ?= 0x30890000 |
| 150 | $(eval $(call add_define,IMX_BOOT_UART_BASE)) |
Peng Fan | 5cbabbc | 2021-03-25 18:46:58 +0800 | [diff] [blame] | 151 | |
| 152 | EL3_EXCEPTION_HANDLING := 1 |
| 153 | SDEI_SUPPORT := 1 |