Chandni Cherukuri | f781323 | 2018-09-16 21:06:29 +0530 | [diff] [blame] | 1 | # |
John Tsichritzis | 56369c1 | 2019-02-19 13:49:06 +0000 | [diff] [blame] | 2 | # Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved. |
Chandni Cherukuri | f781323 | 2018-09-16 21:06:29 +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 | 15ec1e5 | 2019-02-22 13:41:03 +0530 | [diff] [blame] | 9 | RDN1EDGE_BASE = plat/arm/board/rdn1edge |
Chandni Cherukuri | f781323 | 2018-09-16 21:06:29 +0530 | [diff] [blame] | 10 | |
Chandni Cherukuri | 15ec1e5 | 2019-02-22 13:41:03 +0530 | [diff] [blame] | 11 | PLAT_INCLUDES += -I${RDN1EDGE_BASE}/include/ |
Chandni Cherukuri | f781323 | 2018-09-16 21:06:29 +0530 | [diff] [blame] | 12 | |
John Tsichritzis | 56369c1 | 2019-02-19 13:49:06 +0000 | [diff] [blame] | 13 | SGI_CPU_SOURCES := lib/cpus/aarch64/neoverse_n1.S |
Chandni Cherukuri | f781323 | 2018-09-16 21:06:29 +0530 | [diff] [blame] | 14 | |
| 15 | BL1_SOURCES += ${SGI_CPU_SOURCES} |
| 16 | |
Chandni Cherukuri | 15ec1e5 | 2019-02-22 13:41:03 +0530 | [diff] [blame] | 17 | BL2_SOURCES += ${RDN1EDGE_BASE}/rdn1edge_plat.c \ |
| 18 | ${RDN1EDGE_BASE}/rdn1edge_security.c \ |
Vijayenthiran Subramaniam | 22141b6 | 2018-10-25 22:20:24 +0530 | [diff] [blame] | 19 | drivers/arm/tzc/tzc_dmc620.c \ |
| 20 | lib/utils/mem_region.c \ |
Chandni Cherukuri | f781323 | 2018-09-16 21:06:29 +0530 | [diff] [blame] | 21 | plat/arm/common/arm_nor_psci_mem_protect.c |
| 22 | |
| 23 | BL31_SOURCES += ${SGI_CPU_SOURCES} \ |
Chandni Cherukuri | 15ec1e5 | 2019-02-22 13:41:03 +0530 | [diff] [blame] | 24 | ${RDN1EDGE_BASE}/rdn1edge_plat.c \ |
Chandni Cherukuri | f781323 | 2018-09-16 21:06:29 +0530 | [diff] [blame] | 25 | drivers/cfi/v2m/v2m_flash.c \ |
| 26 | lib/utils/mem_region.c \ |
| 27 | plat/arm/common/arm_nor_psci_mem_protect.c |
| 28 | |
| 29 | # Add the FDT_SOURCES and options for Dynamic Config |
Chandni Cherukuri | 15ec1e5 | 2019-02-22 13:41:03 +0530 | [diff] [blame] | 30 | FDT_SOURCES += ${RDN1EDGE_BASE}/fdts/${PLAT}_tb_fw_config.dts |
Chandni Cherukuri | f781323 | 2018-09-16 21:06:29 +0530 | [diff] [blame] | 31 | TB_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_tb_fw_config.dtb |
| 32 | |
| 33 | # Add the TB_FW_CONFIG to FIP and specify the same to certtool |
| 34 | $(eval $(call TOOL_ADD_PAYLOAD,${TB_FW_CONFIG},--tb-fw-config)) |
| 35 | |
Chandni Cherukuri | 15ec1e5 | 2019-02-22 13:41:03 +0530 | [diff] [blame] | 36 | FDT_SOURCES += ${RDN1EDGE_BASE}/fdts/${PLAT}_nt_fw_config.dts |
Chandni Cherukuri | 29ea98d | 2018-11-28 11:26:19 +0530 | [diff] [blame] | 37 | NT_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_nt_fw_config.dtb |
Chandni Cherukuri | f781323 | 2018-09-16 21:06:29 +0530 | [diff] [blame] | 38 | |
Chandni Cherukuri | 29ea98d | 2018-11-28 11:26:19 +0530 | [diff] [blame] | 39 | # Add the NT_FW_CONFIG to FIP and specify the same to certtool |
| 40 | $(eval $(call TOOL_ADD_PAYLOAD,${NT_FW_CONFIG},--nt-fw-config)) |
Chandni Cherukuri | f781323 | 2018-09-16 21:06:29 +0530 | [diff] [blame] | 41 | |
| 42 | override CTX_INCLUDE_AARCH32_REGS := 0 |