blob: a903a165082ae5437844968f210a9aabb2ee671c [file] [log] [blame]
Yann Gautier4b0c72a2018-07-16 10:54:09 +02001#
Yann Gautier6d8c2442020-09-17 12:42:46 +02002# Copyright (c) 2015-2022, ARM Limited and Contributors. All rights reserved.
Yann Gautier4b0c72a2018-07-16 10:54:09 +02003#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7ARM_CORTEX_A7 := yes
8ARM_WITH_NEON := yes
Yann Gautier4b0c72a2018-07-16 10:54:09 +02009BL2_AT_EL3 := 1
Yann Gautier4b0c72a2018-07-16 10:54:09 +020010USE_COHERENT_MEM := 0
11
Yann Gautierd1435742021-10-18 10:55:23 +020012STM32MP_EARLY_CONSOLE ?= 0
Yann Gautierb02dd492022-03-02 14:31:55 +010013STM32MP_UART_BAUDRATE ?= 115200
Yann Gautierd1435742021-10-18 10:55:23 +020014
Yann Gautier0ed7b2a2021-05-19 18:48:16 +020015# Allow TF-A to concatenate BL2 & BL32 binaries in a single file,
16# share DTB file between BL2 and BL32
17# If it is set to 0, then FIP is used
18STM32MP_USE_STM32IMAGE ?= 0
19
Yann Gautier5c1dab32019-04-17 15:12:58 +020020# Please don't increment this value without good understanding of
21# the monotonic counter
Yann Gautier4b0c72a2018-07-16 10:54:09 +020022STM32_TF_VERSION ?= 0
23
Yann Gautiera55169b2020-01-10 18:18:59 +010024# Enable dynamic memory mapping
25PLAT_XLAT_TABLES_DYNAMIC := 1
Yann Gautiera55169b2020-01-10 18:18:59 +010026
Yann Gautier0c0e1032021-04-01 19:31:46 +020027# Default Device tree
28DTB_FILE_NAME ?= stm32mp157c-ev1.dtb
29
30STM32MP13 ?= 0
31STM32MP15 ?= 0
32
Sebastien Pasdeloup94389ef2020-12-18 11:50:40 +010033ifeq ($(STM32MP13),1)
Yann Gautier0c0e1032021-04-01 19:31:46 +020034ifeq ($(STM32MP15),1)
35$(error Cannot enable both flags STM32MP13 and STM32MP15)
36endif
Sebastien Pasdeloup94389ef2020-12-18 11:50:40 +010037STM32MP13 := 1
38STM32MP15 := 0
Yann Gautier0c0e1032021-04-01 19:31:46 +020039else ifeq ($(STM32MP15),1)
40STM32MP13 := 0
41STM32MP15 := 1
42else ifneq ($(findstring stm32mp13,$(DTB_FILE_NAME)),)
43STM32MP13 := 1
44STM32MP15 := 0
45else ifneq ($(findstring stm32mp15,$(DTB_FILE_NAME)),)
46STM32MP13 := 0
47STM32MP15 := 1
48endif
Sebastien Pasdeloup94389ef2020-12-18 11:50:40 +010049
Yann Gautier0c0e1032021-04-01 19:31:46 +020050ifeq ($(STM32MP13),1)
Sebastien Pasdeloup94389ef2020-12-18 11:50:40 +010051# DDR controller with single AXI port and 16-bit interface
52STM32MP_DDR_DUAL_AXI_PORT:= 0
53STM32MP_DDR_32BIT_INTERFACE:= 0
54
55# STM32 image header version v2.0
56STM32_HEADER_VERSION_MAJOR:= 2
57STM32_HEADER_VERSION_MINOR:= 0
Yann Gautier0c0e1032021-04-01 19:31:46 +020058endif
Sebastien Pasdeloup94389ef2020-12-18 11:50:40 +010059
Yann Gautier0c0e1032021-04-01 19:31:46 +020060ifeq ($(STM32MP15),1)
Yann Gautier6d8c2442020-09-17 12:42:46 +020061# DDR controller with dual AXI port and 32-bit interface
62STM32MP_DDR_DUAL_AXI_PORT:= 1
63STM32MP_DDR_32BIT_INTERFACE:= 1
64
Nicolas Le Bayondfa46cc2019-11-18 17:13:42 +010065# STM32 image header version v1.0
66STM32_HEADER_VERSION_MAJOR:= 1
67STM32_HEADER_VERSION_MINOR:= 0
Yann Gautierbc9f0fd2022-06-30 11:33:27 +020068
69# Add OP-TEE reserved shared memory area in mapping
70STM32MP15_OPTEE_RSV_SHM := 1
71$(eval $(call add_defines,STM32MP15_OPTEE_RSV_SHM))
Sebastien Pasdeloup94389ef2020-12-18 11:50:40 +010072endif
Nicolas Le Bayondfa46cc2019-11-18 17:13:42 +010073
74# STM32 image header binary type for BL2
75STM32_HEADER_BL2_BINARY_TYPE:= 0x10
76
Etienne Carriereca651fb2020-04-10 18:51:54 +020077ifeq ($(AARCH32_SP),sp_min)
78# Disable Neon support: sp_min runtime may conflict with non-secure world
Yann Gautier46f8e672020-09-18 10:32:37 +020079TF_CFLAGS += -mfloat-abi=soft
Etienne Carriereca651fb2020-04-10 18:51:54 +020080endif
81
Yann Gautier19cdaa82020-11-10 15:09:55 +010082TF_CFLAGS += -Wsign-compare
Yann Gautier3c7be342022-02-14 10:30:33 +010083TF_CFLAGS += -Wformat-signedness
Yann Gautier19cdaa82020-11-10 15:09:55 +010084
Yann Gautier4b0c72a2018-07-16 10:54:09 +020085# Not needed for Cortex-A7
86WORKAROUND_CVE_2017_5715:= 0
Bipin Ravicaa2e052022-02-23 23:45:50 -060087WORKAROUND_CVE_2022_23960:= 0
Yann Gautier4b0c72a2018-07-16 10:54:09 +020088
Sughosh Ganua1976842021-11-10 17:47:16 +053089ifeq (${PSA_FWU_SUPPORT},1)
90ifneq (${STM32MP_USE_STM32IMAGE},1)
91# Number of banks of updatable firmware
92NR_OF_FW_BANKS := 2
93NR_OF_IMAGES_IN_FW_BANK := 1
94
Yann Gautier8244e1d2018-10-15 09:36:58 +020095# Number of TF-A copies in the device
96STM32_TF_A_COPIES := 2
Sughosh Ganua1976842021-11-10 17:47:16 +053097STM32_BL33_PARTS_NUM := 2
98STM32_RUNTIME_PARTS_NUM := 4
99else
100$(error FWU Feature enabled only with FIP images)
101endif
102else
103# Number of TF-A copies in the device
104STM32_TF_A_COPIES := 2
Yann Gautier6916a442020-09-17 12:28:12 +0200105STM32_BL33_PARTS_NUM := 1
Yann Gautierb3386f72019-04-19 09:41:01 +0200106ifeq ($(AARCH32_SP),optee)
Yann Gautier6916a442020-09-17 12:28:12 +0200107STM32_RUNTIME_PARTS_NUM := 3
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200108else ifeq ($(STM32MP_USE_STM32IMAGE),1)
Yann Gautier6916a442020-09-17 12:28:12 +0200109STM32_RUNTIME_PARTS_NUM := 0
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200110else
111STM32_RUNTIME_PARTS_NUM := 1
Yann Gautierb3386f72019-04-19 09:41:01 +0200112endif
Sughosh Ganua1976842021-11-10 17:47:16 +0530113endif
Yann Gautier6916a442020-09-17 12:28:12 +0200114PLAT_PARTITION_MAX_ENTRIES := $(shell echo $$(($(STM32_TF_A_COPIES) + \
115 $(STM32_BL33_PARTS_NUM) + \
116 $(STM32_RUNTIME_PARTS_NUM))))
Yann Gautier8244e1d2018-10-15 09:36:58 +0200117
Nicolas Le Bayon3f42cad2019-09-03 09:52:05 +0200118# Boot devices
119STM32MP_EMMC ?= 0
120STM32MP_SDMMC ?= 0
Lionel Debieve402a46b2019-11-04 12:28:15 +0100121STM32MP_RAW_NAND ?= 0
Lionel Debieve186b0462019-09-24 18:30:12 +0200122STM32MP_SPI_NAND ?= 0
Lionel Debievecb0dbc42019-09-25 09:11:31 +0200123STM32MP_SPI_NOR ?= 0
Vyacheslav Yurkove43a0802021-06-04 10:10:51 +0200124STM32MP_EMMC_BOOT ?= 0
Nicolas Le Bayon3f42cad2019-09-03 09:52:05 +0200125
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200126# Serial boot devices
127STM32MP_USB_PROGRAMMER ?= 0
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200128STM32MP_UART_PROGRAMMER ?= 0
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200129
Yann Gautier5f400632020-02-12 09:30:49 +0100130# Device tree
Yann Gautierf03dee52020-02-25 17:08:10 +0100131ifeq ($(STM32MP13),1)
Yann Gautierf03dee52020-02-25 17:08:10 +0100132BL2_DTSI := stm32mp13-bl2.dtsi
133FDT_SOURCES := $(addprefix ${BUILD_PLAT}/fdts/, $(patsubst %.dtb,%-bl2.dts,$(DTB_FILE_NAME)))
134else
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200135ifeq ($(STM32MP_USE_STM32IMAGE),1)
136ifeq ($(AARCH32_SP),optee)
137BL2_DTSI := stm32mp15-bl2.dtsi
138FDT_SOURCES := $(addprefix ${BUILD_PLAT}/fdts/, $(patsubst %.dtb,%-bl2.dts,$(DTB_FILE_NAME)))
139else
Yann Gautier5f400632020-02-12 09:30:49 +0100140FDT_SOURCES := $(addprefix fdts/, $(patsubst %.dtb,%.dts,$(DTB_FILE_NAME)))
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200141endif
142else
143BL2_DTSI := stm32mp15-bl2.dtsi
144FDT_SOURCES := $(addprefix ${BUILD_PLAT}/fdts/, $(patsubst %.dtb,%-bl2.dts,$(DTB_FILE_NAME)))
145ifeq ($(AARCH32_SP),sp_min)
146BL32_DTSI := stm32mp15-bl32.dtsi
147FDT_SOURCES += $(addprefix ${BUILD_PLAT}/fdts/, $(patsubst %.dtb,%-bl32.dts,$(DTB_FILE_NAME)))
148endif
149endif
Yann Gautierf03dee52020-02-25 17:08:10 +0100150endif
Yann Gautierd82fca42021-03-09 10:42:02 +0100151
152$(eval DTC_V = $(shell $(DTC) -v | awk '{print $$NF}'))
Yann Gautierfb153372022-04-22 13:12:37 +0200153$(eval DTC_VERSION = $(shell printf "%d" $(shell echo ${DTC_V} | cut -d- -f1 | sed "s/\./0/g" | grep -o "[0-9]*")))
Yann Gautier658775c2021-07-06 10:00:44 +0200154DTC_CPPFLAGS += ${INCLUDES}
Yann Gautier5f400632020-02-12 09:30:49 +0100155DTC_FLAGS += -Wno-unit_address_vs_reg
Yann Gautierd82fca42021-03-09 10:42:02 +0100156ifeq ($(shell test $(DTC_VERSION) -ge 10601; echo $$?),0)
157DTC_FLAGS += -Wno-interrupt_provider
158endif
Yann Gautier5f400632020-02-12 09:30:49 +0100159
160# Macros and rules to build TF binary
161STM32_TF_ELF_LDFLAGS := --hash-style=gnu --as-needed
162STM32_TF_STM32 := $(addprefix ${BUILD_PLAT}/tf-a-, $(patsubst %.dtb,%.stm32,$(DTB_FILE_NAME)))
163STM32_TF_LINKERFILE := ${BUILD_PLAT}/stm32mp1.ld
164
165ASFLAGS += -DBL2_BIN_PATH=\"${BUILD_PLAT}/bl2.bin\"
166ifeq ($(AARCH32_SP),sp_min)
167# BL32 is built only if using SP_MIN
168BL32_DEP := bl32
169ASFLAGS += -DBL32_BIN_PATH=\"${BUILD_PLAT}/bl32.bin\"
170endif
171
172# Variables for use with stm32image
173STM32IMAGEPATH ?= tools/stm32image
174STM32IMAGE ?= ${STM32IMAGEPATH}/stm32image${BIN_EXT}
Yann Gautiere56f53f2021-06-09 09:36:35 +0200175STM32IMAGE_SRC := ${STM32IMAGEPATH}/stm32image.c
Yann Gautier5f400632020-02-12 09:30:49 +0100176
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200177ifneq (${STM32MP_USE_STM32IMAGE},1)
178FIP_DEPS += dtbs
179STM32MP_HW_CONFIG := ${BL33_CFG}
Yann Gautier658775c2021-07-06 10:00:44 +0200180STM32MP_FW_CONFIG_NAME := $(patsubst %.dtb,%-fw-config.dtb,$(DTB_FILE_NAME))
181STM32MP_FW_CONFIG := ${BUILD_PLAT}/fdts/$(STM32MP_FW_CONFIG_NAME)
182ifneq (${AARCH32_SP},none)
183FDT_SOURCES += $(addprefix fdts/, $(patsubst %.dtb,%.dts,$(STM32MP_FW_CONFIG_NAME)))
184endif
185# Add the FW_CONFIG to FIP and specify the same to certtool
186$(eval $(call TOOL_ADD_PAYLOAD,${STM32MP_FW_CONFIG},--fw-config))
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200187# Add the HW_CONFIG to FIP and specify the same to certtool
188$(eval $(call TOOL_ADD_PAYLOAD,${STM32MP_HW_CONFIG},--hw-config))
189ifeq ($(AARCH32_SP),sp_min)
190STM32MP_TOS_FW_CONFIG := $(addprefix ${BUILD_PLAT}/fdts/, $(patsubst %.dtb,%-bl32.dtb,$(DTB_FILE_NAME)))
191$(eval $(call TOOL_ADD_PAYLOAD,${STM32MP_TOS_FW_CONFIG},--tos-fw-config))
192else
193# Add the build options to pack Trusted OS Extra1 and Trusted OS Extra2 images
194# in the FIP if the platform requires.
195ifneq ($(BL32_EXTRA1),)
196$(eval $(call TOOL_ADD_IMG,BL32_EXTRA1,--tos-fw-extra1))
197endif
198ifneq ($(BL32_EXTRA2),)
199$(eval $(call TOOL_ADD_IMG,BL32_EXTRA2,--tos-fw-extra2))
200endif
201endif
202endif
203
Yann Gautier5f400632020-02-12 09:30:49 +0100204# Enable flags for C files
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -0500205$(eval $(call assert_booleans,\
Yann Gautier5f400632020-02-12 09:30:49 +0100206 $(sort \
Yann Gautier27f589d2021-10-15 17:59:38 +0200207 PLAT_XLAT_TABLES_DYNAMIC \
Yann Gautier6d8c2442020-09-17 12:42:46 +0200208 STM32MP_DDR_32BIT_INTERFACE \
209 STM32MP_DDR_DUAL_AXI_PORT \
Yann Gautierd1435742021-10-18 10:55:23 +0200210 STM32MP_EARLY_CONSOLE \
Yann Gautier5f400632020-02-12 09:30:49 +0100211 STM32MP_EMMC \
Yann Gautier27f589d2021-10-15 17:59:38 +0200212 STM32MP_EMMC_BOOT \
Yann Gautier5f400632020-02-12 09:30:49 +0100213 STM32MP_RAW_NAND \
Yann Gautier27f589d2021-10-15 17:59:38 +0200214 STM32MP_SDMMC \
Yann Gautier5f400632020-02-12 09:30:49 +0100215 STM32MP_SPI_NAND \
216 STM32MP_SPI_NOR \
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200217 STM32MP_UART_PROGRAMMER \
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200218 STM32MP_USB_PROGRAMMER \
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200219 STM32MP_USE_STM32IMAGE \
Sebastien Pasdeloup94389ef2020-12-18 11:50:40 +0100220 STM32MP13 \
221 STM32MP15 \
Yann Gautier5f400632020-02-12 09:30:49 +0100222)))
223
224$(eval $(call assert_numerics,\
225 $(sort \
Yann Gautier5f400632020-02-12 09:30:49 +0100226 PLAT_PARTITION_MAX_ENTRIES \
Yann Gautier27f589d2021-10-15 17:59:38 +0200227 STM32_TF_A_COPIES \
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200228 STM32_TF_VERSION \
Yann Gautierb02dd492022-03-02 14:31:55 +0100229 STM32MP_UART_BAUDRATE \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -0500230)))
231
232$(eval $(call add_defines,\
Yann Gautier5f400632020-02-12 09:30:49 +0100233 $(sort \
Yann Gautier27f589d2021-10-15 17:59:38 +0200234 PLAT_PARTITION_MAX_ENTRIES \
235 PLAT_XLAT_TABLES_DYNAMIC \
236 STM32_TF_A_COPIES \
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200237 STM32_TF_VERSION \
Yann Gautier6d8c2442020-09-17 12:42:46 +0200238 STM32MP_DDR_32BIT_INTERFACE \
239 STM32MP_DDR_DUAL_AXI_PORT \
Yann Gautierd1435742021-10-18 10:55:23 +0200240 STM32MP_EARLY_CONSOLE \
Yann Gautier5f400632020-02-12 09:30:49 +0100241 STM32MP_EMMC \
Yann Gautier27f589d2021-10-15 17:59:38 +0200242 STM32MP_EMMC_BOOT \
Yann Gautier5f400632020-02-12 09:30:49 +0100243 STM32MP_RAW_NAND \
Yann Gautier27f589d2021-10-15 17:59:38 +0200244 STM32MP_SDMMC \
Yann Gautier5f400632020-02-12 09:30:49 +0100245 STM32MP_SPI_NAND \
246 STM32MP_SPI_NOR \
Yann Gautierb02dd492022-03-02 14:31:55 +0100247 STM32MP_UART_BAUDRATE \
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200248 STM32MP_UART_PROGRAMMER \
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200249 STM32MP_USB_PROGRAMMER \
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200250 STM32MP_USE_STM32IMAGE \
Sebastien Pasdeloup94389ef2020-12-18 11:50:40 +0100251 STM32MP13 \
252 STM32MP15 \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -0500253)))
Nicolas Le Bayon3f42cad2019-09-03 09:52:05 +0200254
Yann Gautier5f400632020-02-12 09:30:49 +0100255# Include paths and source files
Yann Gautieree8f5422019-02-14 11:13:25 +0100256PLAT_INCLUDES := -Iplat/st/common/include/
257PLAT_INCLUDES += -Iplat/st/stm32mp1/include/
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200258
Yann Gautier0dc92312021-10-29 17:04:17 +0200259ifeq (${STM32MP_USE_STM32IMAGE},1)
Chris Kaye9272152021-09-28 15:52:14 +0100260include common/fdt_wrappers.mk
Yann Gautier0dc92312021-10-29 17:04:17 +0200261else
262include lib/fconf/fconf.mk
263endif
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200264include lib/libfdt/libfdt.mk
265
Chris Kaye9272152021-09-28 15:52:14 +0100266PLAT_BL_COMMON_SOURCES := common/uuid.c \
Andre Przywaracc99f3f2020-03-26 12:51:21 +0000267 plat/st/common/stm32mp_common.c \
Yann Gautieree8f5422019-02-14 11:13:25 +0100268 plat/st/stm32mp1/stm32mp1_private.c
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200269
Julius Werner6b88b652018-11-27 17:50:28 -0800270PLAT_BL_COMMON_SOURCES += drivers/st/uart/aarch32/stm32_console.S
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200271
272ifneq (${ENABLE_STACK_PROTECTOR},0)
273PLAT_BL_COMMON_SOURCES += plat/st/stm32mp1/stm32mp1_stack_protector.c
274endif
275
276include lib/xlat_tables_v2/xlat_tables.mk
277PLAT_BL_COMMON_SOURCES += ${XLAT_TABLES_LIB_SRCS}
278
279PLAT_BL_COMMON_SOURCES += lib/cpus/aarch32/cortex_a7.S
280
Yann Gautier2c1fa282019-05-09 11:56:30 +0200281PLAT_BL_COMMON_SOURCES += drivers/arm/tzc/tzc400.c \
Gabriel Fernandez8aac3072020-10-13 09:36:25 +0200282 drivers/clk/clk.c \
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200283 drivers/delay_timer/delay_timer.c \
284 drivers/delay_timer/generic_delay_timer.c \
Nicolas Le Bayon97287cd2019-05-20 18:35:02 +0200285 drivers/st/bsec/bsec2.c \
Yann Gautier4d429472019-02-14 11:15:20 +0100286 drivers/st/clk/stm32mp_clkfunc.c \
Nicolas Le Bayon8ce825f2021-05-18 10:01:30 +0200287 drivers/st/ddr/stm32mp_ddr.c \
Yann Gautiercaf575b2018-07-24 17:18:19 +0200288 drivers/st/ddr/stm32mp1_ddr_helpers.c \
Yann Gautierd0ca7f42018-07-13 21:33:09 +0200289 drivers/st/gpio/stm32_gpio.c \
Yann Gautier113f31e2019-01-17 09:34:18 +0100290 drivers/st/i2c/stm32_i2c.c \
Yann Gautier091eab52019-06-04 18:06:34 +0200291 drivers/st/iwdg/stm32_iwdg.c \
Yann Gautiera45433b2019-01-16 18:31:00 +0100292 drivers/st/pmic/stm32mp_pmic.c \
293 drivers/st/pmic/stpmic1.c \
Yann Gautierb1279e72021-12-15 13:16:15 +0100294 drivers/st/regulator/regulator_core.c \
Pascal Pailletfc7b8052021-01-29 14:48:49 +0100295 drivers/st/regulator/regulator_fixed.c \
Yann Gautier9aea69e2018-07-24 17:13:36 +0200296 drivers/st/reset/stm32mp1_reset.c \
Yann Gautieree8f5422019-02-14 11:13:25 +0100297 plat/st/common/stm32mp_dt.c \
Yann Gautier091eab52019-06-04 18:06:34 +0200298 plat/st/stm32mp1/stm32mp1_dbgmcu.c \
Yann Gautiercaf575b2018-07-24 17:18:19 +0200299 plat/st/stm32mp1/stm32mp1_helper.S \
Yann Gautier3edc7c32019-05-20 19:17:08 +0200300 plat/st/stm32mp1/stm32mp1_syscfg.c
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200301
Gabriel Fernandez1308d752020-03-11 11:30:34 +0100302ifeq ($(STM32MP13),1)
303PLAT_BL_COMMON_SOURCES += drivers/st/clk/clk-stm32-core.c \
304 drivers/st/clk/clk-stm32mp13.c
305else
306PLAT_BL_COMMON_SOURCES += drivers/st/clk/stm32mp1_clk.c
307endif
308
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200309ifneq (${STM32MP_USE_STM32IMAGE},1)
Yann Gautier0dc92312021-10-29 17:04:17 +0200310BL2_SOURCES += ${FCONF_SOURCES} ${FCONF_DYN_SOURCES}
311
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200312BL2_SOURCES += drivers/io/io_fip.c \
313 plat/st/common/bl2_io_storage.c \
Yann Gautier29f1f942021-07-13 18:07:41 +0200314 plat/st/common/stm32mp_fconf_io.c \
Lionel Debieve1dc5e2e2020-09-27 21:13:53 +0200315 plat/st/stm32mp1/plat_bl2_mem_params_desc.c \
316 plat/st/stm32mp1/stm32mp1_fconf_firewall.c
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200317else
Yann Gautier0dc92312021-10-29 17:04:17 +0200318BL2_SOURCES += ${FDT_WRAPPERS_SOURCES}
319
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200320BL2_SOURCES += drivers/io/io_dummy.c \
321 drivers/st/io/io_stm32image.c \
322 plat/st/common/bl2_stm32_io_storage.c \
Lionel Debieve1dc5e2e2020-09-27 21:13:53 +0200323 plat/st/stm32mp1/plat_bl2_stm32_mem_params_desc.c \
324 plat/st/stm32mp1/stm32mp1_security.c
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200325endif
326
Sughosh Ganua1976842021-11-10 17:47:16 +0530327include lib/zlib/zlib.mk
Rohit Nerf9f72d92022-05-18 00:55:02 -0700328
329ifeq (${PSA_FWU_SUPPORT},1)
Sughosh Ganua1976842021-11-10 17:47:16 +0530330include drivers/fwu/fwu.mk
Rohit Nerf9f72d92022-05-18 00:55:02 -0700331endif
332
Sughosh Ganua1976842021-11-10 17:47:16 +0530333
334BL2_SOURCES += $(ZLIB_SOURCES)
Sughosh Ganua1976842021-11-10 17:47:16 +0530335
Yann Gautier8244e1d2018-10-15 09:36:58 +0200336BL2_SOURCES += drivers/io/io_block.c \
Lionel Debieve402a46b2019-11-04 12:28:15 +0100337 drivers/io/io_mtd.c \
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200338 drivers/io/io_storage.c \
Lionel Debieve7bd96f42019-09-03 12:22:23 +0200339 drivers/st/crypto/stm32_hash.c \
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200340 plat/st/stm32mp1/bl2_plat_setup.c
341
Yann Gautiercc5f89a2020-02-12 09:36:23 +0100342
343ifeq ($(STM32MP15),1)
344BL2_SOURCES += plat/st/common/stm32mp_auth.c
345endif
346
Nicolas Le Bayon3f42cad2019-09-03 09:52:05 +0200347ifneq ($(filter 1,${STM32MP_EMMC} ${STM32MP_SDMMC}),)
Yann Gautier8244e1d2018-10-15 09:36:58 +0200348BL2_SOURCES += drivers/mmc/mmc.c \
349 drivers/partition/gpt.c \
350 drivers/partition/partition.c \
351 drivers/st/io/io_mmc.c \
352 drivers/st/mmc/stm32_sdmmc2.c
Nicolas Le Bayon3f42cad2019-09-03 09:52:05 +0200353endif
Yann Gautier8244e1d2018-10-15 09:36:58 +0200354
Lionel Debieve402a46b2019-11-04 12:28:15 +0100355ifeq (${STM32MP_RAW_NAND},1)
356$(eval $(call add_define_val,NAND_ONFI_DETECT,1))
357BL2_SOURCES += drivers/mtd/nand/raw_nand.c \
358 drivers/st/fmc/stm32_fmc2_nand.c
359endif
360
Lionel Debieve186b0462019-09-24 18:30:12 +0200361ifeq (${STM32MP_SPI_NAND},1)
362BL2_SOURCES += drivers/mtd/nand/spi_nand.c
363endif
364
Lionel Debievecb0dbc42019-09-25 09:11:31 +0200365ifeq (${STM32MP_SPI_NOR},1)
366BL2_SOURCES += drivers/mtd/nor/spi_nor.c
367endif
368
369ifneq ($(filter 1,${STM32MP_SPI_NAND} ${STM32MP_SPI_NOR}),)
Lionel Debieve186b0462019-09-24 18:30:12 +0200370BL2_SOURCES += drivers/mtd/spi-mem/spi_mem.c \
371 drivers/st/spi/stm32_qspi.c
372endif
373
374ifneq ($(filter 1,${STM32MP_RAW_NAND} ${STM32MP_SPI_NAND}),)
Lionel Debievecb0dbc42019-09-25 09:11:31 +0200375BL2_SOURCES += drivers/mtd/nand/core.c
376endif
377
378ifneq ($(filter 1,${STM32MP_RAW_NAND} ${STM32MP_SPI_NAND} ${STM32MP_SPI_NOR}),)
379BL2_SOURCES += plat/st/stm32mp1/stm32mp1_boot_device.c
Lionel Debieve402a46b2019-11-04 12:28:15 +0100380endif
381
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200382ifneq ($(filter 1,${STM32MP_UART_PROGRAMMER} ${STM32MP_USB_PROGRAMMER}),)
383BL2_SOURCES += drivers/io/io_memmap.c
384endif
385
386ifeq (${STM32MP_UART_PROGRAMMER},1)
387BL2_SOURCES += drivers/st/uart/stm32_uart.c \
388 plat/st/common/stm32cubeprogrammer_uart.c
389endif
390
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200391ifeq (${STM32MP_USB_PROGRAMMER},1)
392#The DFU stack uses only one end point, reduce the USB stack footprint
393$(eval $(call add_define_val,CONFIG_USBD_EP_NB,1U))
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200394BL2_SOURCES += drivers/st/usb/stm32mp1_usb.c \
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200395 drivers/usb/usb_device.c \
396 plat/st/common/stm32cubeprogrammer_usb.c \
397 plat/st/common/usb_dfu.c \
398 plat/st/stm32mp1/stm32mp1_usb_dfu.c
399endif
400
Nicolas Le Bayon620ce332021-03-02 11:19:36 +0100401BL2_SOURCES += drivers/st/ddr/stm32mp_ddr_test.c \
402 drivers/st/ddr/stm32mp_ram.c \
Nicolas Le Bayon8ce825f2021-05-18 10:01:30 +0200403 drivers/st/ddr/stm32mp1_ddr.c \
Yann Gautiercaf575b2018-07-24 17:18:19 +0200404 drivers/st/ddr/stm32mp1_ram.c
405
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200406BL2_SOURCES += common/desc_image_load.c \
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200407 plat/st/stm32mp1/plat_image_load.c
408
Yann Gautierb3386f72019-04-19 09:41:01 +0200409BL2_SOURCES += lib/optee/optee_utils.c
Yann Gautierb3386f72019-04-19 09:41:01 +0200410
Yann Gautier5f400632020-02-12 09:30:49 +0100411# Compilation rules
Yann Gautiercc785d82020-11-09 11:16:10 +0100412.PHONY: check_dtc_version stm32image clean_stm32image check_boot_device
Yann Gautier761797d2018-07-16 14:34:50 +0200413.SUFFIXES:
414
Yann Gautier3f10a2f2020-09-18 10:21:29 +0200415all: check_dtc_version stm32image ${STM32_TF_STM32}
Yann Gautier761797d2018-07-16 14:34:50 +0200416
Yann Gautier761797d2018-07-16 14:34:50 +0200417distclean realclean clean: clean_stm32image
418
Yann Gautiercc785d82020-11-09 11:16:10 +0100419bl2: check_boot_device
420
421check_boot_device:
422 @if [ ${STM32MP_EMMC} != 1 ] && \
423 [ ${STM32MP_SDMMC} != 1 ] && \
424 [ ${STM32MP_RAW_NAND} != 1 ] && \
425 [ ${STM32MP_SPI_NAND} != 1 ] && \
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200426 [ ${STM32MP_SPI_NOR} != 1 ] && \
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200427 [ ${STM32MP_UART_PROGRAMMER} != 1 ] && \
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200428 [ ${STM32MP_USB_PROGRAMMER} != 1 ]; then \
Yann Gautiercc785d82020-11-09 11:16:10 +0100429 echo "No boot device driver is enabled"; \
430 false; \
431 fi
432
Yann Gautier3f10a2f2020-09-18 10:21:29 +0200433stm32image: ${STM32IMAGE}
434
435${STM32IMAGE}: ${STM32IMAGE_SRC}
Yann Gautier761797d2018-07-16 14:34:50 +0200436 ${Q}${MAKE} CPPFLAGS="" --no-print-directory -C ${STM32IMAGEPATH}
437
438clean_stm32image:
439 ${Q}${MAKE} --no-print-directory -C ${STM32IMAGEPATH} clean
440
441check_dtc_version:
Yann Gautier761797d2018-07-16 14:34:50 +0200442 @if [ ${DTC_VERSION} -lt 10404 ]; then \
443 echo "dtc version too old (${DTC_V}), you need at least version 1.4.4"; \
444 false; \
445 fi
446
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200447ifeq ($(STM32MP_USE_STM32IMAGE)-$(AARCH32_SP),1-sp_min)
Yann Gautier46f8e672020-09-18 10:32:37 +0200448${BUILD_PLAT}/stm32mp1-%.o: ${BUILD_PLAT}/fdts/%.dtb plat/st/stm32mp1/stm32mp1.S bl2 ${BL32_DEP}
449 @echo " AS stm32mp1.S"
450 ${Q}${AS} ${ASFLAGS} ${TF_CFLAGS} \
451 -DDTB_BIN_PATH=\"$<\" \
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200452 -c $(word 2,$^) -o $@
453else
454# Create DTB file for BL2
455${BUILD_PLAT}/fdts/%-bl2.dts: fdts/%.dts fdts/${BL2_DTSI} | ${BUILD_PLAT} fdt_dirs
456 @echo '#include "$(patsubst fdts/%,%,$<)"' > $@
457 @echo '#include "${BL2_DTSI}"' >> $@
458
459${BUILD_PLAT}/fdts/%-bl2.dtb: ${BUILD_PLAT}/fdts/%-bl2.dts
460
461ifeq ($(AARCH32_SP),sp_min)
462# Create DTB file for BL32
463${BUILD_PLAT}/fdts/%-bl32.dts: fdts/%.dts fdts/${BL32_DTSI} | ${BUILD_PLAT} fdt_dirs
464 @echo '#include "$(patsubst fdts/%,%,$<)"' > $@
465 @echo '#include "${BL32_DTSI}"' >> $@
466
467${BUILD_PLAT}/fdts/%-bl32.dtb: ${BUILD_PLAT}/fdts/%-bl32.dts
468endif
469
470${BUILD_PLAT}/stm32mp1-%.o: ${BUILD_PLAT}/fdts/%-bl2.dtb plat/st/stm32mp1/stm32mp1.S bl2
471 @echo " AS stm32mp1.S"
472 ${Q}${AS} ${ASFLAGS} ${TF_CFLAGS} \
473 -DDTB_BIN_PATH=\"$<\" \
Yann Gautier46f8e672020-09-18 10:32:37 +0200474 -c plat/st/stm32mp1/stm32mp1.S -o $@
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200475endif
Yann Gautier761797d2018-07-16 14:34:50 +0200476
Yann Gautier3ab157a2021-10-07 14:19:48 +0200477$(eval $(call MAKE_LD,${STM32_TF_LINKERFILE},plat/st/stm32mp1/stm32mp1.ld.S,bl2))
Yann Gautier761797d2018-07-16 14:34:50 +0200478
Yann Gautier46f8e672020-09-18 10:32:37 +0200479tf-a-%.elf: stm32mp1-%.o ${STM32_TF_LINKERFILE}
480 @echo " LDS $<"
481 ${Q}${LD} -o $@ ${STM32_TF_ELF_LDFLAGS} -Map=$(@:.elf=.map) --script ${STM32_TF_LINKERFILE} $<
Yann Gautier761797d2018-07-16 14:34:50 +0200482
Yann Gautier46f8e672020-09-18 10:32:37 +0200483tf-a-%.bin: tf-a-%.elf
484 ${Q}${OC} -O binary $< $@
485 @echo
486 @echo "Built $@ successfully"
487 @echo
Yann Gautier761797d2018-07-16 14:34:50 +0200488
Yann Gautier46f8e672020-09-18 10:32:37 +0200489tf-a-%.stm32: ${STM32IMAGE} tf-a-%.bin
490 @echo
491 @echo "Generate $@"
492 $(eval LOADADDR = $(shell cat $(@:.stm32=.map) | grep RAM | awk '{print $$2}'))
493 $(eval ENTRY = $(shell cat $(@:.stm32=.map) | grep "__BL2_IMAGE_START" | awk '{print $$1}'))
494 ${Q}${STM32IMAGE} -s $(word 2,$^) -d $@ \
495 -l $(LOADADDR) -e ${ENTRY} \
Nicolas Le Bayondfa46cc2019-11-18 17:13:42 +0100496 -v ${STM32_TF_VERSION} \
497 -m ${STM32_HEADER_VERSION_MAJOR} \
498 -n ${STM32_HEADER_VERSION_MINOR} \
499 -b ${STM32_HEADER_BL2_BINARY_TYPE}
Yann Gautier46f8e672020-09-18 10:32:37 +0200500 @echo