blob: 795d924828b77ee35290964b4847ba3e7f043910 [file] [log] [blame]
Jiafei Pan46367ad2018-03-02 07:23:30 +00001#
2# Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7# indicate the reset vector address can be programmed
8PROGRAMMABLE_RESET_ADDRESS := 1
9USE_COHERENT_MEM := 0
10RESET_TO_BL31 := 0
11ENABLE_STACK_PROTECTOR := 0
12LS1043_GIC_SOURCES := drivers/arm/gic/common/gic_common.c \
13 drivers/arm/gic/v2/gicv2_main.c \
14 drivers/arm/gic/v2/gicv2_helpers.c \
15 plat/common/plat_gicv2.c \
16 plat/layerscape/board/ls1043/ls_gic.c
17
18
19LS1043_INTERCONNECT_SOURCES := drivers/arm/cci/cci.c
20
21LS1043_SECURITY_SOURCES := plat/layerscape/common/ls_tzc380.c \
22 plat/layerscape/board/ls1043/ls1043_security.c
23
24PLAT_INCLUDES := -Iplat/layerscape/board/ls1043/include \
Jiafei Pan46367ad2018-03-02 07:23:30 +000025 -Iplat/layerscape/common/include \
26 -Iinclude/drivers/arm \
27 -Iinclude/lib \
28 -Iinclude/drivers/io
29
30
Julius Werner6b88b652018-11-27 17:50:28 -080031PLAT_BL_COMMON_SOURCES := plat/layerscape/common/aarch64/ls_console.S
Jiafei Pan46367ad2018-03-02 07:23:30 +000032
33LS1043_CPU_LIBS := lib/cpus/${ARCH}/aem_generic.S
34
35LS1043_CPU_LIBS += lib/cpus/aarch64/cortex_a53.S
36
37BL1_SOURCES += plat/layerscape/board/ls1043/ls1043_bl1_setup.c \
38 plat/layerscape/board/ls1043/ls1043_err.c \
39 drivers/delay_timer/delay_timer.c \
40
41BL1_SOURCES += plat/layerscape/board/ls1043/${ARCH}/ls1043_helpers.S \
42 ${LS1043_CPU_LIBS} \
43 ${LS1043_INTERCONNECT_SOURCES} \
44 $(LS1043_SECURITY_SOURCES)
45
46
47BL2_SOURCES += drivers/delay_timer/delay_timer.c \
48 plat/layerscape/board/ls1043/ls1043_bl2_setup.c \
49 plat/layerscape/board/ls1043/ls1043_err.c \
50 ${LS1043_SECURITY_SOURCES}
51
52
53BL31_SOURCES += plat/layerscape/board/ls1043/ls1043_bl31_setup.c \
54 plat/layerscape/board/ls1043/ls1043_topology.c \
55 plat/layerscape/board/ls1043/aarch64/ls1043_helpers.S \
56 plat/layerscape/board/ls1043/ls1043_psci.c \
57 drivers/delay_timer/delay_timer.c \
58 ${LS1043_CPU_LIBS} \
59 ${LS1043_GIC_SOURCES} \
60 ${LS1043_INTERCONNECT_SOURCES} \
61 ${LS1043_SECURITY_SOURCES}
62
63# Disable the PSCI platform compatibility layer
Jiafei Pan46367ad2018-03-02 07:23:30 +000064MULTI_CONSOLE_API := 1
65
66# Enable workarounds for selected Cortex-A53 erratas.
67ERRATA_A53_855873 := 1
68
69ifneq (${ENABLE_STACK_PROTECTOR},0)
70PLAT_BL_COMMON_SOURCES += plat/layerscape/board/ls1043/ls1043_stack_protector.c
71endif
72
73ifeq (${ARCH},aarch32)
74 NEED_BL32 := yes
75endif
76
77include plat/layerscape/common/ls_common.mk