Deepak Pandey | 9cbacf6 | 2018-08-08 10:32:51 +0530 | [diff] [blame] | 1 | # |
Alexei Fedorov | 2f13d6c | 2020-02-21 10:17:26 +0000 | [diff] [blame] | 2 | # Copyright (c) 2018-2020, ARM Limited and Contributors. All rights reserved. |
Deepak Pandey | 9cbacf6 | 2018-08-08 10:32:51 +0530 | [diff] [blame] | 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | |
| 7 | |
| 8 | N1SDP_BASE := plat/arm/board/n1sdp |
| 9 | |
| 10 | INTERCONNECT_SOURCES := ${N1SDP_BASE}/n1sdp_interconnect.c |
| 11 | |
| 12 | PLAT_INCLUDES := -I${N1SDP_BASE}/include |
| 13 | |
| 14 | |
John Tsichritzis | 56369c1 | 2019-02-19 13:49:06 +0000 | [diff] [blame] | 15 | N1SDP_CPU_SOURCES := lib/cpus/aarch64/neoverse_n1.S |
Deepak Pandey | 9cbacf6 | 2018-08-08 10:32:51 +0530 | [diff] [blame] | 16 | |
Alexei Fedorov | 84f1b5d | 2020-03-23 18:45:17 +0000 | [diff] [blame] | 17 | # GIC-600 configuration |
Andre Przywara | e1cc130 | 2020-03-25 15:50:38 +0000 | [diff] [blame] | 18 | GICV3_SUPPORT_GIC600 := 1 |
Alexei Fedorov | 84f1b5d | 2020-03-23 18:45:17 +0000 | [diff] [blame] | 19 | GICV3_IMPL_GIC600_MULTICHIP := 1 |
Deepak Pandey | 9cbacf6 | 2018-08-08 10:32:51 +0530 | [diff] [blame] | 20 | |
Alexei Fedorov | 84f1b5d | 2020-03-23 18:45:17 +0000 | [diff] [blame] | 21 | # Include GICv3 driver files |
| 22 | include drivers/arm/gic/v3/gicv3.mk |
| 23 | |
| 24 | N1SDP_GIC_SOURCES := ${GICV3_SOURCES} \ |
Deepak Pandey | 9cbacf6 | 2018-08-08 10:32:51 +0530 | [diff] [blame] | 25 | plat/common/plat_gicv3.c \ |
| 26 | plat/arm/common/arm_gicv3.c \ |
Deepak Pandey | 9cbacf6 | 2018-08-08 10:32:51 +0530 | [diff] [blame] | 27 | |
| 28 | PLAT_BL_COMMON_SOURCES := ${N1SDP_BASE}/n1sdp_plat.c \ |
| 29 | ${N1SDP_BASE}/aarch64/n1sdp_helper.S |
| 30 | |
Aditya Angadi | 20b4841 | 2019-04-16 11:29:14 +0530 | [diff] [blame] | 31 | BL1_SOURCES += drivers/arm/sbsa/sbsa.c |
Deepak Pandey | 9cbacf6 | 2018-08-08 10:32:51 +0530 | [diff] [blame] | 32 | |
| 33 | BL31_SOURCES := ${N1SDP_CPU_SOURCES} \ |
| 34 | ${INTERCONNECT_SOURCES} \ |
| 35 | ${N1SDP_GIC_SOURCES} \ |
| 36 | ${N1SDP_BASE}/n1sdp_bl31_setup.c \ |
| 37 | ${N1SDP_BASE}/n1sdp_topology.c \ |
Manoj Kumar | 69bebd8 | 2019-06-21 17:07:13 +0100 | [diff] [blame] | 38 | ${N1SDP_BASE}/n1sdp_security.c \ |
| 39 | drivers/arm/css/sds/sds.c |
Deepak Pandey | 9cbacf6 | 2018-08-08 10:32:51 +0530 | [diff] [blame] | 40 | |
Andre Przywara | c2db651 | 2020-07-06 11:19:41 +0530 | [diff] [blame] | 41 | FDT_SOURCES += fdts/${PLAT}-single-chip.dts \ |
| 42 | fdts/${PLAT}-multi-chip.dts |
Deepak Pandey | 9cbacf6 | 2018-08-08 10:32:51 +0530 | [diff] [blame] | 43 | |
| 44 | # TF-A not required to load the SCP Images |
| 45 | override CSS_LOAD_SCP_IMAGES := 0 |
| 46 | |
| 47 | # BL1/BL2 Image not a part of the capsule Image for n1sdp |
| 48 | override NEED_BL1 := no |
| 49 | override NEED_BL2 := no |
| 50 | override NEED_BL2U := no |
| 51 | |
| 52 | #TFA for n1sdp starts from BL31 |
| 53 | override RESET_TO_BL31 := 1 |
| 54 | |
| 55 | # 32 bit mode not supported |
| 56 | override CTX_INCLUDE_AARCH32_REGS := 0 |
| 57 | |
| 58 | override ARM_PLAT_MT := 1 |
| 59 | |
| 60 | # Select SCMI/SDS drivers instead of SCPI/BOM driver for communicating with the |
| 61 | # SCP during power management operations and for SCP RAM Firmware transfer. |
| 62 | CSS_USE_SCMI_SDS_DRIVER := 1 |
| 63 | |
| 64 | # System coherency is managed in hardware |
| 65 | HW_ASSISTED_COHERENCY := 1 |
| 66 | |
| 67 | # When building for systems with hardware-assisted coherency, there's no need to |
| 68 | # use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too. |
| 69 | USE_COHERENT_MEM := 0 |
Chandni Cherukuri | b912087 | 2020-03-05 11:49:57 +0530 | [diff] [blame] | 70 | |
| 71 | # Enable the flag since N1SDP has a system level cache |
Javier Almansa Sobrino | 9faad3c | 2020-10-23 13:22:07 +0100 | [diff] [blame] | 72 | NEOVERSE_Nx_EXTERNAL_LLC := 1 |
Deepak Pandey | 9cbacf6 | 2018-08-08 10:32:51 +0530 | [diff] [blame] | 73 | include plat/arm/common/arm_common.mk |
| 74 | include plat/arm/css/common/css_common.mk |
Deepak Pandey | 9cbacf6 | 2018-08-08 10:32:51 +0530 | [diff] [blame] | 75 | include plat/arm/board/common/board_common.mk |
| 76 | |