platform.mk 2.25 KB
Newer Older
tony.xie's avatar
tony.xie committed
1
#
2
# Copyright (c) 2017-2019, ARM Limited and Contributors. All rights reserved.
tony.xie's avatar
tony.xie committed
3
#
4
# SPDX-License-Identifier: BSD-3-Clause
tony.xie's avatar
tony.xie committed
5
6
7
8
9
10
#

RK_PLAT			:=	plat/rockchip
RK_PLAT_SOC		:=	${RK_PLAT}/${PLAT}
RK_PLAT_COMMON		:=	${RK_PLAT}/common

11
12
DISABLE_BIN_GENERATION	:=	1

tony.xie's avatar
tony.xie committed
13
14
15
16
PLAT_INCLUDES		:=	-Idrivers/arm/gic/common/			\
				-Idrivers/arm/gic/v2/			\
				-I${RK_PLAT_COMMON}/                            \
				-I${RK_PLAT_COMMON}/include/                    \
17
				-I${RK_PLAT_COMMON}/aarch64/			\
tony.xie's avatar
tony.xie committed
18
19
20
21
22
23
24
25
26
27
28
29
30
				-I${RK_PLAT_COMMON}/drivers/pmu/                \
				-I${RK_PLAT_COMMON}/drivers/parameter/		\
				-I${RK_PLAT_SOC}/				\
				-I${RK_PLAT_SOC}/drivers/pmu/			\
				-I${RK_PLAT_SOC}/drivers/soc/			\
				-I${RK_PLAT_SOC}/include/

RK_GIC_SOURCES		:=	drivers/arm/gic/common/gic_common.c		\
				drivers/arm/gic/v2/gicv2_main.c			\
				drivers/arm/gic/v2/gicv2_helpers.c		\
				plat/common/plat_gicv2.c			\
				${RK_PLAT}/common/rockchip_gicv2.c

31
32
PLAT_BL_COMMON_SOURCES	:=	common/desc_image_load.c			\
				lib/bl_aux_params/bl_aux_params.c		\
33
				lib/xlat_tables/aarch64/xlat_tables.c		\
34
				lib/xlat_tables/xlat_tables_common.c		\
35
				plat/common/aarch64/crash_console_helpers.S	\
36
				plat/common/plat_psci_common.c
tony.xie's avatar
tony.xie committed
37
38
39

BL31_SOURCES		+=	${RK_GIC_SOURCES}				\
				drivers/arm/cci/cci.c				\
40
				drivers/ti/uart/aarch64/16550_console.S		\
tony.xie's avatar
tony.xie committed
41
42
43
44
45
				drivers/delay_timer/delay_timer.c		\
				drivers/delay_timer/generic_delay_timer.c	\
				lib/cpus/aarch64/aem_generic.S			\
				lib/cpus/aarch64/cortex_a53.S			\
				${RK_PLAT_COMMON}/aarch64/plat_helpers.S	\
46
				${RK_PLAT_COMMON}/params_setup.c		\
tony.xie's avatar
tony.xie committed
47
				${RK_PLAT_COMMON}/bl31_plat_setup.c		\
48
				${RK_PLAT_COMMON}/aarch64/pmu_sram_cpus_on.S	\
tony.xie's avatar
tony.xie committed
49
50
51
52
53
54
				${RK_PLAT_COMMON}/plat_pm.c			\
				${RK_PLAT_COMMON}/plat_topology.c		\
				${RK_PLAT_COMMON}/aarch64/platform_common.c	\
				${RK_PLAT_SOC}/drivers/pmu/pmu.c		\
				${RK_PLAT_SOC}/drivers/soc/soc.c

55
56
57
58
ifdef PLAT_RK_SECURE_DDR_MINILOADER
BL31_SOURCES		+=	${RK_PLAT_COMMON}/drivers/parameter/ddr_parameter.c
endif

59
include lib/coreboot/coreboot.mk
60
include lib/libfdt/libfdt.mk
61

62
63
64
# Enable workarounds for selected Cortex-A53 errata
ERRATA_A53_855873	:=	1

tony.xie's avatar
tony.xie committed
65
66
$(eval $(call add_define,PLAT_EXTRA_LD_SCRIPT))
$(eval $(call add_define,PLAT_SKIP_OPTEE_S_EL1_INT_REGISTER))
67
68
69

# Do not enable SVE
ENABLE_SVE_FOR_NS	:=	0
70
71

WORKAROUND_CVE_2017_5715	:=	0