plat_common.mk 2.23 KB
Newer Older
1
#
2
# Copyright (c) 2017-2020, ARM Limited and Contributors. All rights reserved.
3
4
5
6
7
8
9
10
11
12
13
14
#
# SPDX-License-Identifier: BSD-3-Clause
#

# We don't use BL1 or BL2, so BL31 is the first image to execute
RESET_TO_BL31		:=	1
# Only one core starts up at first
COLD_BOOT_SINGLE_CPU	:=	1
# We can choose where a core starts executing
PROGRAMMABLE_RESET_ADDRESS:=	1

# System coherency is managed in hardware
15
16
WARMBOOT_ENABLE_DCACHE_EARLY :=	1
USE_COHERENT_MEM	:=	1
17
18
19
20
21
22
23

# A53 erratum for SoC. (enable them all)
ERRATA_A53_826319	:=	1
ERRATA_A53_835769	:=	1
ERRATA_A53_836870	:=	1
ERRATA_A53_843419	:=	1
ERRATA_A53_855873	:=	1
24
ERRATA_A53_1530924	:=	1
25

26
27
# A72 Erratum for SoC
ERRATA_A72_859971	:=	1
28
ERRATA_A72_1319367	:=	1
29

30
31
32
CRASH_REPORTING		:= 1
HANDLE_EA_EL3_FIRST	:= 1

33
34
35
# Split out RO data into a non-executable section
SEPARATE_CODE_AND_RODATA :=    1

36
37
38
# Generate a Position Independent Executable
ENABLE_PIE		:=	1

39
40
41
TI_16550_MDR_QUIRK	:=	1
$(eval $(call add_define,TI_16550_MDR_QUIRK))

42
43
44
K3_USART		:=	0
$(eval $(call add_define,K3_USART))

45
46
47
48
# Allow customizing the UART baud rate
K3_USART_BAUD		:=	115200
$(eval $(call add_define,K3_USART_BAUD))

49
50
51
# Libraries
include lib/xlat_tables_v2/xlat_tables.mk

52
53
PLAT_INCLUDES		+=	\
				-I${PLAT_PATH}/include			\
54
				-I${PLAT_PATH}/common/drivers/sec_proxy	\
55
				-I${PLAT_PATH}/common/drivers/ti_sci	\
56

57
58
59
60
K3_CONSOLE_SOURCES	+=	\
				drivers/ti/uart/aarch64/16550_console.S	\
				${PLAT_PATH}/common/k3_console.c	\

61
62
63
# Include GICv3 driver files
include drivers/arm/gic/v3/gicv3.mk

64
K3_GIC_SOURCES		+=	\
65
				${GICV3_SOURCES}			\
66
67
68
				plat/common/plat_gicv3.c		\
				${PLAT_PATH}/common/k3_gicv3.c		\

Benjamin Fair's avatar
Benjamin Fair committed
69
70
71
72
K3_PSCI_SOURCES		+=	\
				plat/common/plat_psci_common.c		\
				${PLAT_PATH}/common/k3_psci.c		\

73
74
75
K3_SEC_PROXY_SOURCES	+=	\
				${PLAT_PATH}/common/drivers/sec_proxy/sec_proxy.c \

76
77
78
K3_TI_SCI_SOURCES	+=	\
				${PLAT_PATH}/common/drivers/ti_sci/ti_sci.c \

79
80
PLAT_BL_COMMON_SOURCES	+=	\
				lib/cpus/aarch64/cortex_a53.S		\
81
				lib/cpus/aarch64/cortex_a72.S		\
82
				${XLAT_TABLES_LIB_SRCS}			\
83
				${K3_CONSOLE_SOURCES}			\
84
85
86

BL31_SOURCES		+=	\
				${PLAT_PATH}/common/k3_bl31_setup.c	\
87
				${PLAT_PATH}/common/k3_helpers.S	\
88
				${PLAT_PATH}/common/k3_topology.c	\
89
				${K3_GIC_SOURCES}			\
Benjamin Fair's avatar
Benjamin Fair committed
90
				${K3_PSCI_SOURCES}			\
91
				${K3_SEC_PROXY_SOURCES}			\
92
				${K3_TI_SCI_SOURCES}			\