Nariman Poushin | 0ece80f | 2018-02-26 06:52:04 +0000 | [diff] [blame] | 1 | # |
| 2 | # Copyright (c) 2018, ARM Limited and Contributors. All rights reserved. |
| 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | |
| 7 | ENABLE_PLAT_COMPAT := 0 |
| 8 | |
| 9 | CSS_ENT_BASE := plat/arm/css/sgi |
| 10 | |
| 11 | INTERCONNECT_SOURCES := ${CSS_ENT_BASE}/sgi_interconnect.c |
| 12 | |
| 13 | PLAT_INCLUDES += -I${CSS_ENT_BASE}/include |
| 14 | |
| 15 | ENT_CPU_SOURCES := lib/cpus/aarch64/cortex_a75.S |
| 16 | |
| 17 | ENT_GIC_SOURCES := drivers/arm/gic/common/gic_common.c \ |
| 18 | drivers/arm/gic/v3/gicv3_main.c \ |
| 19 | drivers/arm/gic/v3/gicv3_helpers.c \ |
| 20 | plat/common/plat_gicv3.c \ |
| 21 | plat/arm/common/arm_gicv3.c \ |
Nariman Poushin | 0ece80f | 2018-02-26 06:52:04 +0000 | [diff] [blame] | 22 | drivers/arm/gic/v3/gic600.c |
| 23 | |
| 24 | |
| 25 | PLAT_BL_COMMON_SOURCES += ${CSS_ENT_BASE}/sgi_plat.c \ |
| 26 | ${CSS_ENT_BASE}/aarch64/sgi_helper.S |
| 27 | |
| 28 | BL1_SOURCES += ${INTERCONNECT_SOURCES} \ |
| 29 | ${ENT_CPU_SOURCES} \ |
| 30 | ${CSS_ENT_BASE}/sgi_bl1_setup.c \ |
| 31 | ${CSS_ENT_BASE}/sgi_plat_config.c |
| 32 | |
| 33 | BL2_SOURCES += ${CSS_ENT_BASE}/sgi_security.c |
| 34 | |
| 35 | BL31_SOURCES += ${ENT_CPU_SOURCES} \ |
| 36 | ${INTERCONNECT_SOURCES} \ |
| 37 | ${ENT_GIC_SOURCES} \ |
| 38 | ${CSS_ENT_BASE}/sgi_bl31_setup.c \ |
| 39 | ${CSS_ENT_BASE}/sgi_topology.c \ |
| 40 | ${CSS_ENT_BASE}/sgi_plat_config.c |
| 41 | |
| 42 | $(eval $(call add_define,SGI_PLAT)) |
| 43 | |
| 44 | override CSS_LOAD_SCP_IMAGES := 0 |
| 45 | override NEED_BL2U := no |
| 46 | override ARM_BL31_IN_DRAM := 1 |
Sudipto Paul | c451010 | 2018-04-16 17:46:50 +0530 | [diff] [blame] | 47 | override ARM_PLAT_MT := 1 |
Nariman Poushin | 0ece80f | 2018-02-26 06:52:04 +0000 | [diff] [blame] | 48 | |
| 49 | # System coherency is managed in hardware |
| 50 | HW_ASSISTED_COHERENCY := 1 |
| 51 | |
| 52 | # When building for systems with hardware-assisted coherency, there's no need to |
| 53 | # use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too. |
| 54 | USE_COHERENT_MEM := 0 |
| 55 | |
| 56 | include plat/arm/common/arm_common.mk |
| 57 | include plat/arm/css/common/css_common.mk |
| 58 | include plat/arm/soc/common/soc_css.mk |
| 59 | include plat/arm/board/common/board_common.mk |