xref: /rk3399_ARM-atf/plat/arm/common/arm_common.mk (revision 436223def6e2ca5e9b9fe66c5e9217857280d44e)
1#
2# Copyright (c) 2015, ARM Limited and Contributors. All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are met:
6#
7# Redistributions of source code must retain the above copyright notice, this
8# list of conditions and the following disclaimer.
9#
10# Redistributions in binary form must reproduce the above copyright notice,
11# this list of conditions and the following disclaimer in the documentation
12# and/or other materials provided with the distribution.
13#
14# Neither the name of ARM nor the names of its contributors may be used
15# to endorse or promote products derived from this software without specific
16# prior written permission.
17#
18# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28# POSSIBILITY OF SUCH DAMAGE.
29#
30
31# On ARM standard platorms, the TSP can execute from Trusted SRAM, Trusted
32# DRAM (if available) or the TZC secured area of DRAM.
33# Trusted SRAM is the default.
34
35ARM_TSP_RAM_LOCATION	:=	tsram
36ifeq (${ARM_TSP_RAM_LOCATION}, tsram)
37  ARM_TSP_RAM_LOCATION_ID = ARM_TRUSTED_SRAM_ID
38else ifeq (${ARM_TSP_RAM_LOCATION}, tdram)
39  ARM_TSP_RAM_LOCATION_ID = ARM_TRUSTED_DRAM_ID
40else ifeq (${ARM_TSP_RAM_LOCATION}, dram)
41  ARM_TSP_RAM_LOCATION_ID = ARM_DRAM_ID
42else
43  $(error "Unsupported ARM_TSP_RAM_LOCATION value")
44endif
45
46# Process flags
47$(eval $(call add_define,ARM_TSP_RAM_LOCATION_ID))
48
49# For the original power-state parameter format, the State-ID can be encoded
50# according to the recommended encoding or zero. This flag determines which
51# State-ID encoding to be parsed.
52ARM_RECOM_STATE_ID_ENC := 0
53
54# If the PSCI_EXTENDED_STATE_ID is set, then the recommended state ID need to
55# be used. Else throw a build error.
56ifeq (${PSCI_EXTENDED_STATE_ID}, 1)
57  ifeq (${ARM_RECOM_STATE_ID_ENC}, 0)
58    $(error "Incompatible STATE_ID build option specified")
59  endif
60endif
61
62# Process ARM_RECOM_STATE_ID_ENC flag
63$(eval $(call assert_boolean,ARM_RECOM_STATE_ID_ENC))
64$(eval $(call add_define,ARM_RECOM_STATE_ID_ENC))
65
66# Process ARM_DISABLE_TRUSTED_WDOG flag
67# By default, Trusted Watchdog is always enabled unless SPIN_ON_BL1_EXIT is set
68ARM_DISABLE_TRUSTED_WDOG	:=	0
69ifeq (${SPIN_ON_BL1_EXIT}, 1)
70ARM_DISABLE_TRUSTED_WDOG	:=	1
71endif
72$(eval $(call assert_boolean,ARM_DISABLE_TRUSTED_WDOG))
73$(eval $(call add_define,ARM_DISABLE_TRUSTED_WDOG))
74
75PLAT_INCLUDES		+=	-Iinclude/common/tbbr				\
76				-Iinclude/plat/arm/common			\
77				-Iinclude/plat/arm/common/aarch64
78
79
80PLAT_BL_COMMON_SOURCES	+=	lib/aarch64/xlat_tables.c			\
81				plat/arm/common/aarch64/arm_common.c		\
82				plat/arm/common/aarch64/arm_helpers.S		\
83				plat/common/aarch64/plat_common.c
84
85BL1_SOURCES		+=	drivers/arm/cci/cci.c				\
86				drivers/arm/ccn/ccn.c				\
87				drivers/arm/sp805/sp805.c			\
88				drivers/io/io_fip.c				\
89				drivers/io/io_memmap.c				\
90				drivers/io/io_storage.c				\
91				plat/arm/common/arm_bl1_setup.c			\
92				plat/arm/common/arm_io_storage.c		\
93				plat/common/aarch64/platform_up_stack.S
94ifdef EL3_PAYLOAD_BASE
95# Need the arm_program_trusted_mailbox() function to release secondary CPUs from
96# their holding pen
97BL1_SOURCES		+=	plat/arm/common/arm_pm.c
98endif
99
100BL2_SOURCES		+=	drivers/arm/tzc400/tzc400.c			\
101				drivers/io/io_fip.c				\
102				drivers/io/io_memmap.c				\
103				drivers/io/io_storage.c				\
104				plat/arm/common/arm_bl2_setup.c			\
105				plat/arm/common/arm_io_storage.c		\
106				plat/arm/common/arm_security.c			\
107				plat/common/aarch64/platform_up_stack.S
108
109BL31_SOURCES		+=	drivers/arm/cci/cci.c				\
110				drivers/arm/ccn/ccn.c				\
111				drivers/arm/tzc400/tzc400.c			\
112				plat/arm/common/arm_bl31_setup.c		\
113				plat/arm/common/arm_pm.c			\
114				plat/arm/common/arm_security.c			\
115				plat/arm/common/arm_topology.c			\
116				plat/common/aarch64/platform_mp_stack.S		\
117				plat/common/aarch64/plat_psci_common.c
118
119ifneq (${TRUSTED_BOARD_BOOT},0)
120
121    # By default, ARM platforms use RSA keys
122    KEY_ALG		:=	rsa
123
124    # Include common TBB sources
125    AUTH_SOURCES	:=	drivers/auth/auth_mod.c				\
126				drivers/auth/crypto_mod.c			\
127				drivers/auth/img_parser_mod.c			\
128				drivers/auth/tbbr/tbbr_cot.c			\
129
130    PLAT_INCLUDES	+=	-Iinclude/bl1/tbbr
131
132    BL1_SOURCES		+=	${AUTH_SOURCES}			\
133				bl1/tbbr/tbbr_img_desc.c	\
134				plat/arm/common/arm_bl1_fwu.c
135
136    BL2_SOURCES		+=	${AUTH_SOURCES}
137
138    MBEDTLS_KEY_ALG	:=	${KEY_ALG}
139
140    # We expect to locate the *.mk files under the directories specified below
141    CRYPTO_LIB_MK := drivers/auth/mbedtls/mbedtls_crypto.mk
142    IMG_PARSER_LIB_MK := drivers/auth/mbedtls/mbedtls_x509.mk
143
144    $(info Including ${CRYPTO_LIB_MK})
145    include ${CRYPTO_LIB_MK}
146
147    $(info Including ${IMG_PARSER_LIB_MK})
148    include ${IMG_PARSER_LIB_MK}
149
150endif
151