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 | |
Chandni Cherukuri | d61a705 | 2018-08-01 15:58:48 +0530 | [diff] [blame] | 7 | CSS_USE_SCMI_SDS_DRIVER := 1 |
| 8 | |
Nariman Poushin | 0ece80f | 2018-02-26 06:52:04 +0000 | [diff] [blame] | 9 | CSS_ENT_BASE := plat/arm/css/sgi |
| 10 | |
Sughosh Ganu | 3f7e79d | 2018-05-16 18:48:56 +0530 | [diff] [blame] | 11 | RAS_EXTENSION := 0 |
| 12 | |
| 13 | ENABLE_SPM := 0 |
| 14 | |
| 15 | SDEI_SUPPORT := 0 |
| 16 | |
| 17 | EL3_EXCEPTION_HANDLING := 0 |
| 18 | |
| 19 | HANDLE_EA_EL3_FIRST := 0 |
| 20 | |
Nariman Poushin | 0ece80f | 2018-02-26 06:52:04 +0000 | [diff] [blame] | 21 | INTERCONNECT_SOURCES := ${CSS_ENT_BASE}/sgi_interconnect.c |
| 22 | |
| 23 | PLAT_INCLUDES += -I${CSS_ENT_BASE}/include |
| 24 | |
Nariman Poushin | 0ece80f | 2018-02-26 06:52:04 +0000 | [diff] [blame] | 25 | ENT_GIC_SOURCES := drivers/arm/gic/common/gic_common.c \ |
| 26 | drivers/arm/gic/v3/gicv3_main.c \ |
| 27 | drivers/arm/gic/v3/gicv3_helpers.c \ |
| 28 | plat/common/plat_gicv3.c \ |
| 29 | plat/arm/common/arm_gicv3.c \ |
Nariman Poushin | 0ece80f | 2018-02-26 06:52:04 +0000 | [diff] [blame] | 30 | drivers/arm/gic/v3/gic600.c |
| 31 | |
| 32 | |
| 33 | PLAT_BL_COMMON_SOURCES += ${CSS_ENT_BASE}/sgi_plat.c \ |
| 34 | ${CSS_ENT_BASE}/aarch64/sgi_helper.S |
| 35 | |
Aditya Angadi | 20b4841 | 2019-04-16 11:29:14 +0530 | [diff] [blame] | 36 | BL1_SOURCES += ${INTERCONNECT_SOURCES} \ |
| 37 | drivers/arm/sbsa/sbsa.c |
Nariman Poushin | 0ece80f | 2018-02-26 06:52:04 +0000 | [diff] [blame] | 38 | |
Vijayenthiran Subramaniam | 22141b6 | 2018-10-25 22:20:24 +0530 | [diff] [blame] | 39 | BL2_SOURCES += ${CSS_ENT_BASE}/sgi_image_load.c |
Nariman Poushin | 0ece80f | 2018-02-26 06:52:04 +0000 | [diff] [blame] | 40 | |
Chandni Cherukuri | a3f6613 | 2018-08-10 11:17:58 +0530 | [diff] [blame] | 41 | BL31_SOURCES += ${INTERCONNECT_SOURCES} \ |
Nariman Poushin | 0ece80f | 2018-02-26 06:52:04 +0000 | [diff] [blame] | 42 | ${ENT_GIC_SOURCES} \ |
| 43 | ${CSS_ENT_BASE}/sgi_bl31_setup.c \ |
Chandni Cherukuri | a5d44ec | 2018-08-14 15:25:34 +0530 | [diff] [blame] | 44 | ${CSS_ENT_BASE}/sgi_topology.c |
Nariman Poushin | 0ece80f | 2018-02-26 06:52:04 +0000 | [diff] [blame] | 45 | |
Sughosh Ganu | 18f513d | 2018-05-16 17:22:35 +0530 | [diff] [blame] | 46 | ifeq (${RAS_EXTENSION},1) |
| 47 | BL31_SOURCES += ${CSS_ENT_BASE}/sgi_ras.c |
| 48 | endif |
| 49 | |
Deepak Pandey | b0971f9 | 2018-05-25 12:43:30 +0530 | [diff] [blame] | 50 | ifneq (${RESET_TO_BL31},0) |
Sandrine Bailleux | 1e32d32 | 2019-01-07 15:35:37 +0100 | [diff] [blame] | 51 | $(error "Using BL31 as the reset vector is not supported on ${PLAT} platform. \ |
Deepak Pandey | b0971f9 | 2018-05-25 12:43:30 +0530 | [diff] [blame] | 52 | Please set RESET_TO_BL31 to 0.") |
| 53 | endif |
| 54 | |
Nariman Poushin | 0ece80f | 2018-02-26 06:52:04 +0000 | [diff] [blame] | 55 | $(eval $(call add_define,SGI_PLAT)) |
| 56 | |
| 57 | override CSS_LOAD_SCP_IMAGES := 0 |
| 58 | override NEED_BL2U := no |
| 59 | override ARM_BL31_IN_DRAM := 1 |
Sudipto Paul | c451010 | 2018-04-16 17:46:50 +0530 | [diff] [blame] | 60 | override ARM_PLAT_MT := 1 |
Nariman Poushin | 0ece80f | 2018-02-26 06:52:04 +0000 | [diff] [blame] | 61 | |
| 62 | # System coherency is managed in hardware |
| 63 | HW_ASSISTED_COHERENCY := 1 |
| 64 | |
| 65 | # When building for systems with hardware-assisted coherency, there's no need to |
| 66 | # use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too. |
| 67 | USE_COHERENT_MEM := 0 |
| 68 | |
| 69 | include plat/arm/common/arm_common.mk |
| 70 | include plat/arm/css/common/css_common.mk |
| 71 | include plat/arm/soc/common/soc_css.mk |
| 72 | include plat/arm/board/common/board_common.mk |