blob: b5d986760c80f0cc2bae67b246d3db051bfa228f [file] [log] [blame]
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +02001#
Antonio Nino Diaz6766bb12018-10-26 11:12:31 +01002# Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved.
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +02003#
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
Dimitris Papastamos8e5bd5e2018-01-24 16:41:14 +000049WORKAROUND_CVE_2017_5715 := 0
50
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020051PLAT_PL061_MAX_GPIOS := 104
52$(eval $(call add_define,PLAT_PL061_MAX_GPIOS))
53
54PLAT_INCLUDES := -Iplat/hisilicon/poplar/include \
Antonio Nino Diaz50a4d1a2019-02-01 12:22:22 +000055 -Iplat/hisilicon/poplar
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020056
57PLAT_BL_COMMON_SOURCES := \
Antonio Nino Diaze93cde12018-09-24 17:15:15 +010058 lib/xlat_tables/aarch64/xlat_tables.c \
59 lib/xlat_tables/xlat_tables_common.c \
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020060 drivers/delay_timer/generic_delay_timer.c \
61 drivers/arm/gic/common/gic_common.c \
62 drivers/arm/gic/v2/gicv2_helpers.c \
63 drivers/delay_timer/delay_timer.c \
Antonio Nino Diaze93cde12018-09-24 17:15:15 +010064 drivers/arm/pl011/aarch64/pl011_console.S \
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020065 drivers/arm/gic/v2/gicv2_main.c \
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020066 plat/common/plat_gicv2.c \
Antonio Nino Diaz6766bb12018-10-26 11:12:31 +010067 plat/hisilicon/poplar/aarch64/platform_common.c \
68 plat/hisilicon/poplar/aarch64/poplar_helpers.S \
69 plat/hisilicon/poplar/poplar_gicv2.c
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020070
71BL1_SOURCES += \
72 lib/cpus/aarch64/cortex_a53.S \
73 drivers/arm/pl061/pl061_gpio.c \
Haojian Zhuang3eff4092018-08-04 18:07:26 +080074 drivers/mmc/mmc.c \
Victor Chong539408d2018-01-03 01:53:08 +090075 drivers/synopsys/emmc/dw_mmc.c \
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020076 drivers/io/io_storage.c \
77 drivers/io/io_block.c \
78 drivers/gpio/gpio.c \
79 drivers/io/io_fip.c \
80 drivers/io/io_memmap.c \
81 plat/hisilicon/poplar/bl1_plat_setup.c \
Victor Chongf87b4362018-01-29 18:08:34 +090082 plat/hisilicon/poplar/plat_storage.c
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020083
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020084BL2_SOURCES += \
85 drivers/arm/pl061/pl061_gpio.c \
Haojian Zhuang3eff4092018-08-04 18:07:26 +080086 drivers/mmc/mmc.c \
Victor Chong539408d2018-01-03 01:53:08 +090087 drivers/synopsys/emmc/dw_mmc.c \
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +020088 drivers/io/io_storage.c \
89 drivers/io/io_block.c \
90 drivers/io/io_fip.c \
91 drivers/gpio/gpio.c \
92 drivers/io/io_memmap.c \
93 plat/hisilicon/poplar/bl2_plat_setup.c \
94 plat/hisilicon/poplar/plat_storage.c
95
Victor Chong175dd8a2018-02-01 00:35:22 +090096BL2_SOURCES += \
97 plat/hisilicon/poplar/bl2_plat_mem_params_desc.c \
98 plat/hisilicon/poplar/poplar_image_load.c \
99 common/desc_image_load.c
Victor Chongaa033472018-02-01 00:35:39 +0900100
101ifeq (${SPD},opteed)
102BL2_SOURCES += \
103 lib/optee/optee_utils.c
104endif
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +0200105
106BL31_SOURCES += \
107 lib/cpus/aarch64/aem_generic.S \
108 lib/cpus/aarch64/cortex_a53.S \
Antonio Nino Diaze93cde12018-09-24 17:15:15 +0100109 plat/common/plat_psci_common.c \
Jorge Ramirez-Ortiza29d9a62017-06-28 10:11:31 +0200110 plat/hisilicon/poplar/bl31_plat_setup.c \
111 plat/hisilicon/poplar/plat_topology.c \
112 plat/hisilicon/poplar/plat_pm.c