blob: 2be2be3da69cb45005c710f78e1ee482a5fef7bf [file] [log] [blame]
tony.xie54973e72017-04-24 16:18:10 +08001#
Julius Werner65d52672019-05-24 20:37:58 -07002# Copyright (c) 2017-2019, ARM Limited and Contributors. All rights reserved.
tony.xie54973e72017-04-24 16:18:10 +08003#
dp-armd91aaae2017-05-10 15:16:15 +01004# SPDX-License-Identifier: BSD-3-Clause
tony.xie54973e72017-04-24 16:18:10 +08005#
6
7RK_PLAT := plat/rockchip
8RK_PLAT_SOC := ${RK_PLAT}/${PLAT}
9RK_PLAT_COMMON := ${RK_PLAT}/common
10
Christoph Müllner05ceda72019-04-24 09:52:54 +020011DISABLE_BIN_GENERATION := 1
12
tony.xie54973e72017-04-24 16:18:10 +080013PLAT_INCLUDES := -Idrivers/arm/gic/common/ \
14 -Idrivers/arm/gic/v2/ \
tony.xie54973e72017-04-24 16:18:10 +080015 -I${RK_PLAT_COMMON}/ \
16 -I${RK_PLAT_COMMON}/include/ \
Heiko Stuebner385476e2019-03-05 13:46:41 +010017 -I${RK_PLAT_COMMON}/aarch64/ \
tony.xie54973e72017-04-24 16:18:10 +080018 -I${RK_PLAT_COMMON}/drivers/pmu/ \
19 -I${RK_PLAT_COMMON}/drivers/parameter/ \
20 -I${RK_PLAT_SOC}/ \
21 -I${RK_PLAT_SOC}/drivers/pmu/ \
22 -I${RK_PLAT_SOC}/drivers/soc/ \
23 -I${RK_PLAT_SOC}/include/
24
25RK_GIC_SOURCES := drivers/arm/gic/common/gic_common.c \
26 drivers/arm/gic/v2/gicv2_main.c \
27 drivers/arm/gic/v2/gicv2_helpers.c \
28 plat/common/plat_gicv2.c \
29 ${RK_PLAT}/common/rockchip_gicv2.c
30
Julius Werner65d52672019-05-24 20:37:58 -070031PLAT_BL_COMMON_SOURCES := lib/bl_aux_params/bl_aux_params.c \
32 lib/xlat_tables/aarch64/xlat_tables.c \
Antonio Nino Diaz58230902018-09-24 17:16:20 +010033 lib/xlat_tables/xlat_tables_common.c \
Antonio Nino Diaza64b1522018-10-16 16:39:12 +010034 plat/common/aarch64/crash_console_helpers.S \
Antonio Nino Diaz58230902018-09-24 17:16:20 +010035 plat/common/plat_psci_common.c
tony.xie54973e72017-04-24 16:18:10 +080036
37BL31_SOURCES += ${RK_GIC_SOURCES} \
38 drivers/arm/cci/cci.c \
Antonio Nino Diaz58230902018-09-24 17:16:20 +010039 drivers/ti/uart/aarch64/16550_console.S \
tony.xie54973e72017-04-24 16:18:10 +080040 drivers/delay_timer/delay_timer.c \
41 drivers/delay_timer/generic_delay_timer.c \
42 lib/cpus/aarch64/aem_generic.S \
43 lib/cpus/aarch64/cortex_a53.S \
44 ${RK_PLAT_COMMON}/drivers/parameter/ddr_parameter.c \
45 ${RK_PLAT_COMMON}/aarch64/plat_helpers.S \
Christoph Müllner81bb0d92019-05-01 17:45:10 +020046 ${RK_PLAT_COMMON}/params_setup.c \
tony.xie54973e72017-04-24 16:18:10 +080047 ${RK_PLAT_COMMON}/bl31_plat_setup.c \
Heiko Stuebner385476e2019-03-05 13:46:41 +010048 ${RK_PLAT_COMMON}/aarch64/pmu_sram_cpus_on.S \
tony.xie54973e72017-04-24 16:18:10 +080049 ${RK_PLAT_COMMON}/plat_pm.c \
50 ${RK_PLAT_COMMON}/plat_topology.c \
51 ${RK_PLAT_COMMON}/aarch64/platform_common.c \
52 ${RK_PLAT_SOC}/drivers/pmu/pmu.c \
53 ${RK_PLAT_SOC}/drivers/soc/soc.c
54
Julius Wernerc7087782017-06-09 15:22:44 -070055include lib/coreboot/coreboot.mk
Heiko Stuebner6fd5b942019-04-24 20:26:51 +020056include lib/libfdt/libfdt.mk
Julius Wernerc7087782017-06-09 15:22:44 -070057
tony.xie54973e72017-04-24 16:18:10 +080058$(eval $(call add_define,PLAT_EXTRA_LD_SCRIPT))
59$(eval $(call add_define,PLAT_SKIP_OPTEE_S_EL1_INT_REGISTER))
David Cunadoc5b0c0f2017-10-31 23:19:21 +000060
61# Do not enable SVE
62ENABLE_SVE_FOR_NS := 0
Dimitris Papastamos8e5bd5e2018-01-24 16:41:14 +000063
64WORKAROUND_CVE_2017_5715 := 0