blob: f5d547dd10b1c7b1de77988f0932a85065033750 [file] [log] [blame]
Nariman Poushinb44cfc62018-02-26 06:52:04 +00001#
Vijayenthiran Subramaniama9fbf132019-12-27 19:27:57 +05302# Copyright (c) 2018-2020, ARM Limited and Contributors. All rights reserved.
Nariman Poushinb44cfc62018-02-26 06:52:04 +00003#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7include plat/arm/css/sgi/sgi-common.mk
Roberto Vargas9d57a142018-08-06 13:35:31 +01008
Chandni Cherukuri91e6f262018-08-10 11:17:58 +05309SGI575_BASE = plat/arm/board/sgi575
10
11PLAT_INCLUDES += -I${SGI575_BASE}/include/
12
13SGI_CPU_SOURCES := lib/cpus/aarch64/cortex_a75.S
14
Ambroise Vincent37b70032019-07-04 14:58:45 +010015BL1_SOURCES += ${SGI_CPU_SOURCES} \
16 ${SGI575_BASE}/sgi575_err.c
Chandni Cherukuri91e6f262018-08-10 11:17:58 +053017
Chandni Cherukuri699223a2018-11-28 11:31:51 +053018BL2_SOURCES += ${SGI575_BASE}/sgi575_plat.c \
19 ${SGI575_BASE}/sgi575_security.c \
Ambroise Vincent37b70032019-07-04 14:58:45 +010020 ${SGI575_BASE}/sgi575_err.c \
Vijayenthiran Subramaniam9427c742018-10-25 22:20:24 +053021 drivers/arm/tzc/tzc_dmc620.c \
22 lib/utils/mem_region.c \
Roberto Vargas9d57a142018-08-06 13:35:31 +010023 plat/arm/common/arm_nor_psci_mem_protect.c
24
Chandni Cherukuri91e6f262018-08-10 11:17:58 +053025BL31_SOURCES += ${SGI_CPU_SOURCES} \
Chandni Cherukuri699223a2018-11-28 11:31:51 +053026 ${SGI575_BASE}/sgi575_plat.c \
Vijayenthiran Subramaniama9fbf132019-12-27 19:27:57 +053027 ${SGI575_BASE}/sgi575_topology.c \
Chandni Cherukuri91e6f262018-08-10 11:17:58 +053028 drivers/cfi/v2m/v2m_flash.c \
Antonio Nino Diazaa7877c2018-10-10 11:14:44 +010029 lib/utils/mem_region.c \
Roberto Vargas9d57a142018-08-06 13:35:31 +010030 plat/arm/common/arm_nor_psci_mem_protect.c
Chandni Cherukuri63197d02018-09-04 14:46:49 +053031
Max Shvetsova6ffdde2019-12-06 11:50:12 +000032ifeq (${TRUSTED_BOARD_BOOT}, 1)
33BL1_SOURCES += ${SGI575_BASE}/sgi575_trusted_boot.c
34BL2_SOURCES += ${SGI575_BASE}/sgi575_trusted_boot.c
35endif
36
Chandni Cherukuri63197d02018-09-04 14:46:49 +053037# Add the FDT_SOURCES and options for Dynamic Config
Manish V Badarkhe3cb84a52020-05-31 08:53:40 +010038FDT_SOURCES += ${SGI575_BASE}/fdts/${PLAT}_fw_config.dts \
39 ${SGI575_BASE}/fdts/${PLAT}_tb_fw_config.dts
Chandni Cherukuri63197d02018-09-04 14:46:49 +053040
Manish V Badarkhe3cb84a52020-05-31 08:53:40 +010041FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_fw_config.dtb
42TB_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_tb_fw_config.dtb
43
44# Add the FW_CONFIG to FIP and specify the same to certtool
45$(eval $(call TOOL_ADD_PAYLOAD,${FW_CONFIG},--fw-config))
Chandni Cherukuri63197d02018-09-04 14:46:49 +053046# Add the TB_FW_CONFIG to FIP and specify the same to certtool
47$(eval $(call TOOL_ADD_PAYLOAD,${TB_FW_CONFIG},--tb-fw-config))
48
Chandni Cherukuri77ab9692018-11-28 11:26:19 +053049FDT_SOURCES += ${SGI575_BASE}/fdts/${PLAT}_nt_fw_config.dts
50NT_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_nt_fw_config.dtb
Chandni Cherukuri63197d02018-09-04 14:46:49 +053051
Chandni Cherukuri77ab9692018-11-28 11:26:19 +053052# Add the NT_FW_CONFIG to FIP and specify the same to certtool
53$(eval $(call TOOL_ADD_PAYLOAD,${NT_FW_CONFIG},--nt-fw-config))
Vijayenthiran Subramaniam4d37aa72019-12-26 17:45:58 +053054
55ifneq ($(CSS_SGI_CHIP_COUNT),1)
56 $(error "Chip count for SGI575 should be 1, currently set to \
57 ${CSS_SGI_CHIP_COUNT}.")
58endif