blob: 34fdaf61786302e4ba7b39fa342885ca73d6d18f [file] [log] [blame]
Andre Przywara452b2b62018-09-28 00:37:19 +01001#
Andre Przywara50bb4172021-01-20 00:09:44 +00002# Copyright (c) 2017-2021, ARM Limited and Contributors. All rights reserved.
Andre Przywara452b2b62018-09-28 00:37:19 +01003#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7include lib/xlat_tables_v2/xlat_tables.mk
Andre Przywara92b4c9b2020-08-03 00:25:03 +01008include lib/libfdt/libfdt.mk
9include drivers/arm/gic/v2/gicv2.mk
Andre Przywara452b2b62018-09-28 00:37:19 +010010
11AW_PLAT := plat/allwinner
12
Samuel Holland4a024712019-11-27 13:09:40 -060013PLAT_INCLUDES := -Iinclude/plat/arm/common/aarch64 \
Andre Przywara452b2b62018-09-28 00:37:19 +010014 -I${AW_PLAT}/common/include \
15 -I${AW_PLAT}/${PLAT}/include
16
Julius Werner6b88b652018-11-27 17:50:28 -080017PLAT_BL_COMMON_SOURCES := drivers/ti/uart/${ARCH}/16550_console.S \
Andre Przywara452b2b62018-09-28 00:37:19 +010018 ${XLAT_TABLES_LIB_SRCS} \
19 ${AW_PLAT}/common/plat_helpers.S \
20 ${AW_PLAT}/common/sunxi_common.c
21
Samuel Holland1dad2652019-10-20 21:34:38 -050022BL31_SOURCES += drivers/allwinner/axp/common.c \
Andre Przywara92b4c9b2020-08-03 00:25:03 +010023 ${GICV2_SOURCES} \
Andre Przywara452b2b62018-09-28 00:37:19 +010024 drivers/delay_timer/delay_timer.c \
25 drivers/delay_timer/generic_delay_timer.c \
26 lib/cpus/${ARCH}/cortex_a53.S \
27 plat/common/plat_gicv2.c \
28 plat/common/plat_psci_common.c \
29 ${AW_PLAT}/common/sunxi_bl31_setup.c \
Andre Przywara452b2b62018-09-28 00:37:19 +010030 ${AW_PLAT}/common/sunxi_pm.c \
31 ${AW_PLAT}/${PLAT}/sunxi_power.c \
32 ${AW_PLAT}/common/sunxi_security.c \
33 ${AW_PLAT}/common/sunxi_topology.c
34
Andre Przywara50bb4172021-01-20 00:09:44 +000035# By default, attempt to use SCPI to the ARISC management processor. If SCPI
36# is not enabled or SCP firmware is not loaded, fall back to a simpler native
37# implementation that does not support CPU or system suspend.
38#
39# If SCP firmware will always be present (or absent), the unused implementation
40# can be compiled out.
41SUNXI_PSCI_USE_NATIVE ?= 1
42SUNXI_PSCI_USE_SCPI ?= 1
43
44$(eval $(call assert_boolean,SUNXI_PSCI_USE_NATIVE))
45$(eval $(call assert_boolean,SUNXI_PSCI_USE_SCPI))
46$(eval $(call add_define,SUNXI_PSCI_USE_NATIVE))
47$(eval $(call add_define,SUNXI_PSCI_USE_SCPI))
48
49ifeq (${SUNXI_PSCI_USE_NATIVE}${SUNXI_PSCI_USE_SCPI},00)
50$(error "At least one of SCPI or native PSCI ops must be enabled")
51endif
52
53ifeq (${SUNXI_PSCI_USE_NATIVE},1)
54BL31_SOURCES += ${AW_PLAT}/common/sunxi_cpu_ops.c \
55 ${AW_PLAT}/common/sunxi_native_pm.c
56endif
57
58ifeq (${SUNXI_PSCI_USE_SCPI},1)
59BL31_SOURCES += drivers/allwinner/sunxi_msgbox.c \
60 drivers/arm/css/scpi/css_scpi.c \
61 ${AW_PLAT}/common/sunxi_scpi_pm.c
62endif
63
Andre Przywara71b5a1d2021-11-01 00:17:37 +000064SUNXI_SETUP_REGULATORS ?= 1
65$(eval $(call assert_boolean,SUNXI_SETUP_REGULATORS))
66$(eval $(call add_define,SUNXI_SETUP_REGULATORS))
67
Andre Przywara452b2b62018-09-28 00:37:19 +010068# The bootloader is guaranteed to only run on CPU 0 by the boot ROM.
69COLD_BOOT_SINGLE_CPU := 1
70
Samuel Hollandc47f00e2019-06-08 16:03:32 -050071# Do not enable SPE (not supported on ARM v8.0).
72ENABLE_SPE_FOR_LOWER_ELS := 0
73
74# Do not enable SVE (not supported on ARM v8.0).
75ENABLE_SVE_FOR_NS := 0
76
Andre Przywara452b2b62018-09-28 00:37:19 +010077# Enable workarounds for Cortex-A53 errata. Allwinner uses at least r0p4.
78ERRATA_A53_835769 := 1
79ERRATA_A53_843419 := 1
80ERRATA_A53_855873 := 1
Samuel Holland3784ec92020-12-13 22:22:17 -060081ERRATA_A53_1530924 := 1
Andre Przywara452b2b62018-09-28 00:37:19 +010082
Samuel Hollandafe21732020-12-13 20:05:11 -060083# The traditional U-Boot load address is 160MB into DRAM.
84PRELOADED_BL33_BASE ?= 0x4a000000
85
Andre Przywara452b2b62018-09-28 00:37:19 +010086# The reset vector can be changed for each CPU.
87PROGRAMMABLE_RESET_ADDRESS := 1
88
89# Allow mapping read-only data as execute-never.
90SEPARATE_CODE_AND_RODATA := 1
91
92# BL31 gets loaded alongside BL33 (U-Boot) by U-Boot's SPL
93RESET_TO_BL31 := 1
Andre Przywara647a2e12018-10-11 22:14:30 +010094
Samuel Hollandc47f00e2019-06-08 16:03:32 -050095# This platform is single-cluster and does not require coherency setup.
96WARMBOOT_ENABLE_DCACHE_EARLY := 1