Chandni Cherukuri | 626a52d | 2018-08-16 13:43:23 +0530 | [diff] [blame] | 1 | # |
Vijayenthiran Subramaniam | f5cb00f | 2019-12-27 19:27:57 +0530 | [diff] [blame] | 2 | # Copyright (c) 2018-2020, Arm Limited. All rights reserved. |
Chandni Cherukuri | 626a52d | 2018-08-16 13:43:23 +0530 | [diff] [blame] | 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | |
| 7 | include plat/arm/css/sgi/sgi-common.mk |
| 8 | |
Chandni Cherukuri | 533b554 | 2019-02-22 16:44:49 +0530 | [diff] [blame] | 9 | RDE1EDGE_BASE = plat/arm/board/rde1edge |
Chandni Cherukuri | 626a52d | 2018-08-16 13:43:23 +0530 | [diff] [blame] | 10 | |
Chandni Cherukuri | 533b554 | 2019-02-22 16:44:49 +0530 | [diff] [blame] | 11 | PLAT_INCLUDES += -I${RDE1EDGE_BASE}/include/ |
Chandni Cherukuri | 626a52d | 2018-08-16 13:43:23 +0530 | [diff] [blame] | 12 | |
John Tsichritzis | 16e6d9f | 2019-02-19 14:01:55 +0000 | [diff] [blame] | 13 | SGI_CPU_SOURCES := lib/cpus/aarch64/neoverse_e1.S |
Chandni Cherukuri | 626a52d | 2018-08-16 13:43:23 +0530 | [diff] [blame] | 14 | |
Ambroise Vincent | fa42c9e | 2019-07-04 14:58:45 +0100 | [diff] [blame] | 15 | BL1_SOURCES += ${SGI_CPU_SOURCES} \ |
| 16 | ${RDE1EDGE_BASE}/rde1edge_err.c |
Chandni Cherukuri | 626a52d | 2018-08-16 13:43:23 +0530 | [diff] [blame] | 17 | |
Chandni Cherukuri | 533b554 | 2019-02-22 16:44:49 +0530 | [diff] [blame] | 18 | BL2_SOURCES += ${RDE1EDGE_BASE}/rde1edge_plat.c \ |
| 19 | ${RDE1EDGE_BASE}/rde1edge_security.c \ |
Ambroise Vincent | fa42c9e | 2019-07-04 14:58:45 +0100 | [diff] [blame] | 20 | ${RDE1EDGE_BASE}/rde1edge_err.c \ |
Chandni Cherukuri | 626a52d | 2018-08-16 13:43:23 +0530 | [diff] [blame] | 21 | drivers/arm/tzc/tzc_dmc620.c \ |
| 22 | lib/utils/mem_region.c \ |
| 23 | plat/arm/common/arm_nor_psci_mem_protect.c |
| 24 | |
| 25 | BL31_SOURCES += ${SGI_CPU_SOURCES} \ |
Chandni Cherukuri | 533b554 | 2019-02-22 16:44:49 +0530 | [diff] [blame] | 26 | ${RDE1EDGE_BASE}/rde1edge_plat.c \ |
Vijayenthiran Subramaniam | f5cb00f | 2019-12-27 19:27:57 +0530 | [diff] [blame] | 27 | ${RDE1EDGE_BASE}/rde1edge_topology.c \ |
Chandni Cherukuri | 626a52d | 2018-08-16 13:43:23 +0530 | [diff] [blame] | 28 | drivers/cfi/v2m/v2m_flash.c \ |
| 29 | lib/utils/mem_region.c \ |
| 30 | plat/arm/common/arm_nor_psci_mem_protect.c |
| 31 | |
| 32 | # Add the FDT_SOURCES and options for Dynamic Config |
Chandni Cherukuri | 533b554 | 2019-02-22 16:44:49 +0530 | [diff] [blame] | 33 | FDT_SOURCES += ${RDE1EDGE_BASE}/fdts/${PLAT}_tb_fw_config.dts |
Chandni Cherukuri | 626a52d | 2018-08-16 13:43:23 +0530 | [diff] [blame] | 34 | TB_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_tb_fw_config.dtb |
| 35 | |
| 36 | # Add the TB_FW_CONFIG to FIP and specify the same to certtool |
| 37 | $(eval $(call TOOL_ADD_PAYLOAD,${TB_FW_CONFIG},--tb-fw-config)) |
| 38 | |
Chandni Cherukuri | 533b554 | 2019-02-22 16:44:49 +0530 | [diff] [blame] | 39 | FDT_SOURCES += ${RDE1EDGE_BASE}/fdts/${PLAT}_nt_fw_config.dts |
Chandni Cherukuri | 626a52d | 2018-08-16 13:43:23 +0530 | [diff] [blame] | 40 | NT_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_nt_fw_config.dtb |
| 41 | |
| 42 | # Add the NT_FW_CONFIG to FIP and specify the same to certtool |
| 43 | $(eval $(call TOOL_ADD_PAYLOAD,${NT_FW_CONFIG},--nt-fw-config)) |
| 44 | |
| 45 | override CTX_INCLUDE_AARCH32_REGS := 0 |