blob: 9d2b61700e8446fef674f8b5aa2ca8914c92b141 [file] [log] [blame]
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +02001#
2# Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
Victor Chong662556a2017-10-28 01:59:41 +09007# On Poplar, the TSP can execute from TZC secure area in DRAM.
Victor Chong4d64c2b2018-02-01 00:37:49 +09008POPLAR_TSP_RAM_LOCATION ?= dram
Victor Chong662556a2017-10-28 01:59:41 +09009ifeq (${POPLAR_TSP_RAM_LOCATION}, dram)
10 POPLAR_TSP_RAM_LOCATION_ID = POPLAR_DRAM_ID
Victor Chongf87b4362018-01-29 18:08:34 +090011else ifeq (${POPLAR_TSP_RAM_LOCATION}, sram)
Victor Chong4d64c2b2018-02-01 00:37:49 +090012 POPLAR_TSP_RAM_LOCATION_ID = POPLAR_SRAM_ID
Victor Chong662556a2017-10-28 01:59:41 +090013else
14 $(error "Currently unsupported POPLAR_TSP_RAM_LOCATION value")
15endif
16$(eval $(call add_define,POPLAR_TSP_RAM_LOCATION_ID))
17
Victor Chong50d695d2018-01-29 18:11:02 +090018POPLAR_DRAM_SIZE ?= two_gig
19ifeq (${POPLAR_DRAM_SIZE}, two_gig)
20 POPLAR_DRAM_SIZE_ID = POPLAR_DRAM_SIZE_2G
21else ifeq (${POPLAR_DRAM_SIZE}, one_gig)
22 POPLAR_DRAM_SIZE_ID = POPLAR_DRAM_SIZE_1G
23else
24 $(error "Currently unsupported POPLAR_DRAM_SIZE value")
25endif
26$(eval $(call add_define,POPLAR_DRAM_SIZE_ID))
27
Victor Chongf0c7c612018-01-16 00:29:47 +090028POPLAR_RECOVERY := 0
29$(eval $(call add_define,POPLAR_RECOVERY))
30
Victor Chongaa033472018-02-01 00:35:39 +090031# Add the build options to pack Trusted OS Extra1 and Trusted OS Extra2 images
32# in the FIP if the platform requires.
33ifneq ($(BL32_EXTRA1),)
Victor Chong27083432018-04-23 15:52:51 +010034$(eval $(call TOOL_ADD_IMG,BL32_EXTRA1,--tos-fw-extra1))
Victor Chongaa033472018-02-01 00:35:39 +090035endif
36ifneq ($(BL32_EXTRA2),)
Victor Chong27083432018-04-23 15:52:51 +010037$(eval $(call TOOL_ADD_IMG,BL32_EXTRA2,--tos-fw-extra2))
Victor Chongaa033472018-02-01 00:35:39 +090038endif
39
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020040NEED_BL33 := yes
41
42COLD_BOOT_SINGLE_CPU := 1
43PROGRAMMABLE_RESET_ADDRESS := 1
44CTX_INCLUDE_FPREGS := 1
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020045ERRATA_A53_855873 := 1
46ERRATA_A53_835769 := 1
47ERRATA_A53_843419 := 1
David Cunadoc5b0c0f2017-10-31 23:19:21 +000048ENABLE_SVE_FOR_NS := 0
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020049
Dimitris Papastamos8e5bd5e2018-01-24 16:41:14 +000050WORKAROUND_CVE_2017_5715 := 0
51
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020052PLAT_PL061_MAX_GPIOS := 104
53$(eval $(call add_define,PLAT_PL061_MAX_GPIOS))
54
55PLAT_INCLUDES := -Iplat/hisilicon/poplar/include \
56 -Iinclude/plat/arm/common/ \
57 -Iplat/hisilicon/poplar \
58 -Iinclude/common/tbbr \
Victor Chong539408d2018-01-03 01:53:08 +090059 -Iinclude/drivers/synopsys \
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020060 -Iinclude/drivers/io
61
62PLAT_BL_COMMON_SOURCES := \
Antonio Nino Diaze93cde12018-09-24 17:15:15 +010063 lib/xlat_tables/aarch64/xlat_tables.c \
64 lib/xlat_tables/xlat_tables_common.c \
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020065 drivers/delay_timer/generic_delay_timer.c \
66 drivers/arm/gic/common/gic_common.c \
67 drivers/arm/gic/v2/gicv2_helpers.c \
68 drivers/delay_timer/delay_timer.c \
Antonio Nino Diaze93cde12018-09-24 17:15:15 +010069 drivers/arm/pl011/aarch64/pl011_console.S \
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020070 drivers/arm/gic/v2/gicv2_main.c \
71 plat/arm/common/aarch64/arm_helpers.S \
72 plat/arm/common/arm_gicv2.c \
73 plat/common/plat_gicv2.c \
74 plat/hisilicon/poplar/aarch64/platform_common.c
75
76BL1_SOURCES += \
77 lib/cpus/aarch64/cortex_a53.S \
78 drivers/arm/pl061/pl061_gpio.c \
Haojian Zhuang3eff4092018-08-04 18:07:26 +080079 drivers/mmc/mmc.c \
Victor Chong539408d2018-01-03 01:53:08 +090080 drivers/synopsys/emmc/dw_mmc.c \
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020081 drivers/io/io_storage.c \
82 drivers/io/io_block.c \
83 drivers/gpio/gpio.c \
84 drivers/io/io_fip.c \
85 drivers/io/io_memmap.c \
86 plat/hisilicon/poplar/bl1_plat_setup.c \
Victor Chongf87b4362018-01-29 18:08:34 +090087 plat/hisilicon/poplar/plat_storage.c
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020088
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020089BL2_SOURCES += \
90 drivers/arm/pl061/pl061_gpio.c \
Haojian Zhuang3eff4092018-08-04 18:07:26 +080091 drivers/mmc/mmc.c \
Victor Chong539408d2018-01-03 01:53:08 +090092 drivers/synopsys/emmc/dw_mmc.c \
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020093 drivers/io/io_storage.c \
94 drivers/io/io_block.c \
95 drivers/io/io_fip.c \
96 drivers/gpio/gpio.c \
97 drivers/io/io_memmap.c \
98 plat/hisilicon/poplar/bl2_plat_setup.c \
99 plat/hisilicon/poplar/plat_storage.c
100
Victor Chong175dd8a2018-02-01 00:35:22 +0900101BL2_SOURCES += \
102 plat/hisilicon/poplar/bl2_plat_mem_params_desc.c \
103 plat/hisilicon/poplar/poplar_image_load.c \
104 common/desc_image_load.c
Victor Chongaa033472018-02-01 00:35:39 +0900105
106ifeq (${SPD},opteed)
107BL2_SOURCES += \
108 lib/optee/optee_utils.c
109endif
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +0200110
111BL31_SOURCES += \
112 lib/cpus/aarch64/aem_generic.S \
113 lib/cpus/aarch64/cortex_a53.S \
Antonio Nino Diaze93cde12018-09-24 17:15:15 +0100114 plat/common/plat_psci_common.c \
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +0200115 plat/hisilicon/poplar/bl31_plat_setup.c \
116 plat/hisilicon/poplar/plat_topology.c \
117 plat/hisilicon/poplar/plat_pm.c