blob: 16390fa4e7e3e5d213f622f411441f1ce7d38e11 [file] [log] [blame]
Sandrine Bailleux798140d2014-07-17 16:06:39 +01001#
Summer Qin13b95c22018-03-02 15:51:14 +08002# Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved.
Sandrine Bailleux798140d2014-07-17 16:06:39 +01003#
dp-armfa3cf0b2017-05-03 09:38:09 +01004# SPDX-License-Identifier: BSD-3-Clause
Sandrine Bailleux798140d2014-07-17 16:06:39 +01005#
6
Achin Gupta1fa7eb62015-11-03 14:18:34 +00007JUNO_GIC_SOURCES := drivers/arm/gic/common/gic_common.c \
8 drivers/arm/gic/v2/gicv2_main.c \
9 drivers/arm/gic/v2/gicv2_helpers.c \
10 plat/common/plat_gicv2.c \
11 plat/arm/common/arm_gicv2.c
12
Vikram Kanigirifbb13012016-02-15 11:54:14 +000013JUNO_INTERCONNECT_SOURCES := drivers/arm/cci/cci.c \
14 plat/arm/common/arm_cci.c
15
Soby Mathew9c708b52016-02-26 14:23:19 +000016JUNO_SECURITY_SOURCES := drivers/arm/tzc/tzc400.c \
Vikram Kanigiri70752bb2016-02-10 14:50:53 +000017 plat/arm/board/juno/juno_security.c \
dp-arm8f59e152017-02-27 12:21:43 +000018 plat/arm/board/juno/juno_trng.c \
Vikram Kanigiri70752bb2016-02-10 14:50:53 +000019 plat/arm/common/arm_tzc400.c
20
dp-armb3263b32017-02-28 14:43:15 +000021ifneq (${ENABLE_STACK_PROTECTOR}, 0)
22JUNO_SECURITY_SOURCES += plat/arm/board/juno/juno_stack_protector.c
23endif
Vikram Kanigirifbb13012016-02-15 11:54:14 +000024
Dan Handley8e930fe2015-04-27 19:34:53 +010025PLAT_INCLUDES := -Iplat/arm/board/juno/include
Juan Castillo921b8772014-09-05 17:29:38 +010026
Yatharth Kocharede39cb2016-11-14 12:01:04 +000027PLAT_BL_COMMON_SOURCES := plat/arm/board/juno/${ARCH}/juno_helpers.S
Juan Castillo921b8772014-09-05 17:29:38 +010028
Yatharth Kocharede39cb2016-11-14 12:01:04 +000029# Flag to enable support for AArch32 state on JUNO
30JUNO_AARCH32_EL3_RUNTIME := 0
31$(eval $(call assert_boolean,JUNO_AARCH32_EL3_RUNTIME))
32$(eval $(call add_define,JUNO_AARCH32_EL3_RUNTIME))
33
Summer Qin13b95c22018-03-02 15:51:14 +080034# Flag to enable support for TZMP1 on JUNO
35JUNO_TZMP1 := 0
36$(eval $(call assert_boolean,JUNO_TZMP1))
37ifeq (${JUNO_TZMP1}, 1)
38$(eval $(call add_define,JUNO_TZMP1))
39endif
40
Soby Mathewbf169232017-11-14 14:10:10 +000041ifeq (${JUNO_AARCH32_EL3_RUNTIME}, 1)
42# Include BL32 in FIP
43NEED_BL32 := yes
44# BL31 is not required
45override BL31_SOURCES =
46
47# The BL32 needs to be built separately invoking the AARCH32 compiler and
48# be specifed via `BL32` build option.
49 ifneq (${ARCH}, aarch32)
50 override BL32_SOURCES =
51 endif
52endif
53
Yatharth Kocharede39cb2016-11-14 12:01:04 +000054ifeq (${ARCH},aarch64)
Dan Handley7bef8002015-03-19 19:22:44 +000055BL1_SOURCES += lib/cpus/aarch64/cortex_a53.S \
Brendan Jackmana443d222015-10-30 16:25:12 +000056 lib/cpus/aarch64/cortex_a57.S \
Juan Castillob6132f12015-10-06 14:01:35 +010057 lib/cpus/aarch64/cortex_a72.S \
Yatharth Kochar736a3bf2015-10-11 14:14:55 +010058 plat/arm/board/juno/juno_bl1_setup.c \
dp-armb3263b32017-02-28 14:43:15 +000059 ${JUNO_INTERCONNECT_SOURCES} \
60 ${JUNO_SECURITY_SOURCES}
Juan Castillo921b8772014-09-05 17:29:38 +010061
Roberto Vargasb96ee4b2018-08-06 13:35:31 +010062BL2_SOURCES += lib/utils/mem_region.c \
63 plat/arm/board/juno/juno_bl2_setup.c \
64 plat/arm/common/arm_nor_psci_mem_protect.c \
Vikram Kanigiri70752bb2016-02-10 14:50:53 +000065 ${JUNO_SECURITY_SOURCES}
Juan Castillo921b8772014-09-05 17:29:38 +010066
Vikram Kanigiri70752bb2016-02-10 14:50:53 +000067BL2U_SOURCES += ${JUNO_SECURITY_SOURCES}
Yatharth Kochar3a11eda2015-10-14 15:28:11 +010068
Dan Handley7bef8002015-03-19 19:22:44 +000069BL31_SOURCES += lib/cpus/aarch64/cortex_a53.S \
Soby Mathew61e8d0b2015-10-12 17:32:29 +010070 lib/cpus/aarch64/cortex_a57.S \
Brendan Jackmana443d222015-10-30 16:25:12 +000071 lib/cpus/aarch64/cortex_a72.S \
Roberto Vargasb96ee4b2018-08-06 13:35:31 +010072 lib/utils/mem_region.c \
Soby Mathew47e43f22016-02-01 14:04:34 +000073 plat/arm/board/juno/juno_topology.c \
Roberto Vargasb96ee4b2018-08-06 13:35:31 +010074 plat/arm/board/common/drivers/norflash/norflash.c \
75 plat/arm/common/arm_nor_psci_mem_protect.c \
Vikram Kanigiri70752bb2016-02-10 14:50:53 +000076 ${JUNO_GIC_SOURCES} \
Vikram Kanigirifbb13012016-02-15 11:54:14 +000077 ${JUNO_INTERCONNECT_SOURCES} \
Vikram Kanigiri70752bb2016-02-10 14:50:53 +000078 ${JUNO_SECURITY_SOURCES}
Yatharth Kocharede39cb2016-11-14 12:01:04 +000079endif
Juan Castillo921b8772014-09-05 17:29:38 +010080
Eleanor Bonnici8392aab2017-08-04 15:03:51 +010081# Errata workarounds for Cortex-A53:
82ERRATA_A53_826319 := 1
Douglas Raillardd56fb042017-06-19 15:38:02 +010083ERRATA_A53_835769 := 1
Eleanor Bonnici8392aab2017-08-04 15:03:51 +010084ERRATA_A53_836870 := 1
Douglas Raillardd56fb042017-06-19 15:38:02 +010085ERRATA_A53_843419 := 1
Andre Przywara00eefd92016-10-06 16:54:53 +010086ERRATA_A53_855873 := 1
Eleanor Bonnici8392aab2017-08-04 15:03:51 +010087
88# Errata workarounds for Cortex-A57:
Vikram Kanigirieade34c2016-01-20 15:57:35 +000089ERRATA_A57_806969 := 0
Antonio Nino Diaz3f13c352017-02-24 11:39:22 +000090ERRATA_A57_813419 := 1
Vikram Kanigirieade34c2016-01-20 15:57:35 +000091ERRATA_A57_813420 := 1
Douglas Raillard71d4fe22017-02-28 17:56:15 +000092ERRATA_A57_826974 := 1
93ERRATA_A57_826977 := 1
94ERRATA_A57_828024 := 1
95ERRATA_A57_829520 := 1
96ERRATA_A57_833471 := 1
Eleanor Bonnici8392aab2017-08-04 15:03:51 +010097ERRATA_A57_859972 := 0
Douglas Raillard71d4fe22017-02-28 17:56:15 +000098
Eleanor Bonnici8392aab2017-08-04 15:03:51 +010099# Errata workarounds for Cortex-A72:
100ERRATA_A72_859971 := 0
Soby Mathew937488b2014-09-22 14:13:34 +0100101
102# Enable option to skip L1 data cache flush during the Cortex-A57 cluster
103# power down sequence
104SKIP_A57_L1_FLUSH_PWR_DWN := 1
Dan Handley7bef8002015-03-19 19:22:44 +0000105
Soby Mathewfec4eb72015-07-01 16:16:20 +0100106# Disable the PSCI platform compatibility layer
Vikram Kanigirieade34c2016-01-20 15:57:35 +0000107ENABLE_PLAT_COMPAT := 0
108
109# Enable memory map related constants optimisation
Antonio Nino Diaz30ce3ad2016-07-25 12:04:31 +0100110ARM_BOARD_OPTIMISE_MEM := 1
Soby Mathewfec4eb72015-07-01 16:16:20 +0100111
David Cunadoc5b0c0f2017-10-31 23:19:21 +0000112# Do not enable SVE
113ENABLE_SVE_FOR_NS := 0
114
Sandrine Bailleux0fa6fdf2018-02-28 11:47:23 +0100115# Select SCMI/SDS drivers instead of SCPI/BOM driver for communicating with the
116# SCP during power management operations and for SCP RAM Firmware transfer.
117CSS_USE_SCMI_SDS_DRIVER := 1
118
Dan Handley7bef8002015-03-19 19:22:44 +0000119include plat/arm/board/common/board_css.mk
120include plat/arm/common/arm_common.mk
121include plat/arm/soc/common/soc_css.mk
122include plat/arm/css/common/css_common.mk
Juan Castilloa08a5e72015-05-19 11:54:12 +0100123