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 | |
Ambroise Vincent | fa42c9e | 2019-07-04 14:58:45 +0100 | [diff] [blame^] | 15 | BL1_SOURCES += ${SGI_CPU_SOURCES} \ |
| 16 | ${RDN1EDGE_BASE}/rdn1edge_err.c |
Chandni Cherukuri | f781323 | 2018-09-16 21:06:29 +0530 | [diff] [blame] | 17 | |
Chandni Cherukuri | 15ec1e5 | 2019-02-22 13:41:03 +0530 | [diff] [blame] | 18 | BL2_SOURCES += ${RDN1EDGE_BASE}/rdn1edge_plat.c \ |
| 19 | ${RDN1EDGE_BASE}/rdn1edge_security.c \ |
Ambroise Vincent | fa42c9e | 2019-07-04 14:58:45 +0100 | [diff] [blame^] | 20 | ${RDN1EDGE_BASE}/rdn1edge_err.c \ |
Vijayenthiran Subramaniam | 22141b6 | 2018-10-25 22:20:24 +0530 | [diff] [blame] | 21 | drivers/arm/tzc/tzc_dmc620.c \ |
| 22 | lib/utils/mem_region.c \ |
Chandni Cherukuri | f781323 | 2018-09-16 21:06:29 +0530 | [diff] [blame] | 23 | plat/arm/common/arm_nor_psci_mem_protect.c |
| 24 | |
| 25 | BL31_SOURCES += ${SGI_CPU_SOURCES} \ |
Chandni Cherukuri | 15ec1e5 | 2019-02-22 13:41:03 +0530 | [diff] [blame] | 26 | ${RDN1EDGE_BASE}/rdn1edge_plat.c \ |
Chandni Cherukuri | f781323 | 2018-09-16 21:06:29 +0530 | [diff] [blame] | 27 | drivers/cfi/v2m/v2m_flash.c \ |
| 28 | lib/utils/mem_region.c \ |
| 29 | plat/arm/common/arm_nor_psci_mem_protect.c |
| 30 | |
| 31 | # Add the FDT_SOURCES and options for Dynamic Config |
Chandni Cherukuri | 15ec1e5 | 2019-02-22 13:41:03 +0530 | [diff] [blame] | 32 | FDT_SOURCES += ${RDN1EDGE_BASE}/fdts/${PLAT}_tb_fw_config.dts |
Chandni Cherukuri | f781323 | 2018-09-16 21:06:29 +0530 | [diff] [blame] | 33 | TB_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_tb_fw_config.dtb |
| 34 | |
| 35 | # Add the TB_FW_CONFIG to FIP and specify the same to certtool |
| 36 | $(eval $(call TOOL_ADD_PAYLOAD,${TB_FW_CONFIG},--tb-fw-config)) |
| 37 | |
Chandni Cherukuri | 15ec1e5 | 2019-02-22 13:41:03 +0530 | [diff] [blame] | 38 | FDT_SOURCES += ${RDN1EDGE_BASE}/fdts/${PLAT}_nt_fw_config.dts |
Chandni Cherukuri | 29ea98d | 2018-11-28 11:26:19 +0530 | [diff] [blame] | 39 | NT_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_nt_fw_config.dtb |
Chandni Cherukuri | f781323 | 2018-09-16 21:06:29 +0530 | [diff] [blame] | 40 | |
Chandni Cherukuri | 29ea98d | 2018-11-28 11:26:19 +0530 | [diff] [blame] | 41 | # Add the NT_FW_CONFIG to FIP and specify the same to certtool |
| 42 | $(eval $(call TOOL_ADD_PAYLOAD,${NT_FW_CONFIG},--nt-fw-config)) |
Chandni Cherukuri | f781323 | 2018-09-16 21:06:29 +0530 | [diff] [blame] | 43 | |
| 44 | override CTX_INCLUDE_AARCH32_REGS := 0 |