platform.mk 2.04 KB
Newer Older
tony.xie's avatar
tony.xie committed
1
2
3
#
# Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
#
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
include lib/libfdt/libfdt.mk

tony.xie's avatar
tony.xie committed
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
PLAT_INCLUDES		:=	-Idrivers/arm/gic/common/			\
				-Idrivers/arm/gic/v2/			\
				-I${RK_PLAT_COMMON}/                            \
				-I${RK_PLAT_COMMON}/include/                    \
				-I${RK_PLAT_COMMON}/pmusram                     \
				-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	:=	lib/xlat_tables/aarch64/xlat_tables.c		\
				lib/xlat_tables/xlat_tables_common.c		\
33
				plat/common/aarch64/crash_console_helpers.S	\
34
				plat/common/plat_psci_common.c
tony.xie's avatar
tony.xie committed
35
36
37

BL31_SOURCES		+=	${RK_GIC_SOURCES}				\
				drivers/arm/cci/cci.c				\
38
				drivers/ti/uart/aarch64/16550_console.S		\
tony.xie's avatar
tony.xie committed
39
40
41
42
				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			\
43
				$(LIBFDT_SRCS)					\
tony.xie's avatar
tony.xie committed
44
45
46
47
48
49
50
51
52
53
				${RK_PLAT_COMMON}/drivers/parameter/ddr_parameter.c	\
				${RK_PLAT_COMMON}/aarch64/plat_helpers.S	\
				${RK_PLAT_COMMON}/bl31_plat_setup.c		\
				${RK_PLAT_COMMON}/pmusram/pmu_sram_cpus_on.S	\
				${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

54
MULTI_CONSOLE_API	:=	1
tony.xie's avatar
tony.xie committed
55

56
57
include lib/coreboot/coreboot.mk

tony.xie's avatar
tony.xie committed
58
59
$(eval $(call add_define,PLAT_EXTRA_LD_SCRIPT))
$(eval $(call add_define,PLAT_SKIP_OPTEE_S_EL1_INT_REGISTER))
60
61
62

# Do not enable SVE
ENABLE_SVE_FOR_NS	:=	0
63
64

WORKAROUND_CVE_2017_5715	:=	0