xref: /rk3399_ARM-atf/plat/arm/common/sp_min/arm_sp_min.mk (revision 09d40e0e08283a249e7dce0e106c07c5141f9b7e)
1#
2# Copyright (c) 2016, ARM Limited and Contributors. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7# SP MIN source files common to ARM standard platforms
8
9# Skip building BL1 and BL2 if RESET_TO_SP_MIN flag is set.
10ifeq (${RESET_TO_SP_MIN},1)
11    BL1_SOURCES =
12    BL2_SOURCES =
13endif
14
15BL32_SOURCES		+=	plat/arm/common/arm_pm.c			\
16				plat/arm/common/arm_topology.c			\
17				plat/arm/common/sp_min/arm_sp_min_setup.c	\
18				plat/common/aarch32/platform_mp_stack.S		\
19				plat/common/plat_psci_common.c
20
21