blob: 3e7033049e4ad44f823045e49e5dbef3bebbf3fb [file] [log] [blame]
tony.xie54973e72017-04-24 16:18:10 +08001#
2# Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
3#
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
Antonio Nino Diaz58230902018-09-24 17:16:20 +010031PLAT_BL_COMMON_SOURCES := lib/xlat_tables/aarch64/xlat_tables.c \
32 lib/xlat_tables/xlat_tables_common.c \
Antonio Nino Diaza64b1522018-10-16 16:39:12 +010033 plat/common/aarch64/crash_console_helpers.S \
Antonio Nino Diaz58230902018-09-24 17:16:20 +010034 plat/common/plat_psci_common.c
tony.xie54973e72017-04-24 16:18:10 +080035
36BL31_SOURCES += ${RK_GIC_SOURCES} \
37 drivers/arm/cci/cci.c \
Antonio Nino Diaz58230902018-09-24 17:16:20 +010038 drivers/ti/uart/aarch64/16550_console.S \
tony.xie54973e72017-04-24 16:18:10 +080039 drivers/delay_timer/delay_timer.c \
40 drivers/delay_timer/generic_delay_timer.c \
41 lib/cpus/aarch64/aem_generic.S \
42 lib/cpus/aarch64/cortex_a53.S \
43 ${RK_PLAT_COMMON}/drivers/parameter/ddr_parameter.c \
44 ${RK_PLAT_COMMON}/aarch64/plat_helpers.S \
Christoph Müllner81bb0d92019-05-01 17:45:10 +020045 ${RK_PLAT_COMMON}/params_setup.c \
tony.xie54973e72017-04-24 16:18:10 +080046 ${RK_PLAT_COMMON}/bl31_plat_setup.c \
Heiko Stuebner385476e2019-03-05 13:46:41 +010047 ${RK_PLAT_COMMON}/aarch64/pmu_sram_cpus_on.S \
tony.xie54973e72017-04-24 16:18:10 +080048 ${RK_PLAT_COMMON}/plat_pm.c \
49 ${RK_PLAT_COMMON}/plat_topology.c \
50 ${RK_PLAT_COMMON}/aarch64/platform_common.c \
51 ${RK_PLAT_SOC}/drivers/pmu/pmu.c \
52 ${RK_PLAT_SOC}/drivers/soc/soc.c
53
Julius Wernerf39c8062017-08-02 16:31:04 -070054MULTI_CONSOLE_API := 1
tony.xie54973e72017-04-24 16:18:10 +080055
Julius Wernerc7087782017-06-09 15:22:44 -070056include lib/coreboot/coreboot.mk
Heiko Stuebner6fd5b942019-04-24 20:26:51 +020057include lib/libfdt/libfdt.mk
Julius Wernerc7087782017-06-09 15:22:44 -070058
tony.xie54973e72017-04-24 16:18:10 +080059$(eval $(call add_define,PLAT_EXTRA_LD_SCRIPT))
60$(eval $(call add_define,PLAT_SKIP_OPTEE_S_EL1_INT_REGISTER))
David Cunadoc5b0c0f2017-10-31 23:19:21 +000061
62# Do not enable SVE
63ENABLE_SVE_FOR_NS := 0
Dimitris Papastamos8e5bd5e2018-01-24 16:41:14 +000064
65WORKAROUND_CVE_2017_5715 := 0