You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
2.1 KiB
70 lines
2.1 KiB
#
|
|
# Copyright (c) 2017-2019, ARM Limited and Contributors. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
include lib/xlat_tables_v2/xlat_tables.mk
|
|
include lib/libfdt/libfdt.mk
|
|
include drivers/arm/gic/v2/gicv2.mk
|
|
|
|
AW_PLAT := plat/allwinner
|
|
|
|
PLAT_INCLUDES := -Iinclude/plat/arm/common/aarch64 \
|
|
-I${AW_PLAT}/common/include \
|
|
-I${AW_PLAT}/${PLAT}/include
|
|
|
|
PLAT_BL_COMMON_SOURCES := drivers/ti/uart/${ARCH}/16550_console.S \
|
|
${XLAT_TABLES_LIB_SRCS} \
|
|
${AW_PLAT}/common/plat_helpers.S \
|
|
${AW_PLAT}/common/sunxi_common.c
|
|
|
|
BL31_SOURCES += drivers/allwinner/axp/common.c \
|
|
drivers/allwinner/sunxi_msgbox.c \
|
|
drivers/arm/css/scpi/css_scpi.c \
|
|
${GICV2_SOURCES} \
|
|
drivers/delay_timer/delay_timer.c \
|
|
drivers/delay_timer/generic_delay_timer.c \
|
|
lib/cpus/${ARCH}/cortex_a53.S \
|
|
plat/common/plat_gicv2.c \
|
|
plat/common/plat_psci_common.c \
|
|
${AW_PLAT}/common/sunxi_bl31_setup.c \
|
|
${AW_PLAT}/common/sunxi_cpu_ops.c \
|
|
${AW_PLAT}/common/sunxi_pm.c \
|
|
${AW_PLAT}/${PLAT}/sunxi_power.c \
|
|
${AW_PLAT}/common/sunxi_security.c \
|
|
${AW_PLAT}/common/sunxi_topology.c
|
|
|
|
# The bootloader is guaranteed to only run on CPU 0 by the boot ROM.
|
|
COLD_BOOT_SINGLE_CPU := 1
|
|
|
|
# Do not enable SPE (not supported on ARM v8.0).
|
|
ENABLE_SPE_FOR_LOWER_ELS := 0
|
|
|
|
# Do not enable SVE (not supported on ARM v8.0).
|
|
ENABLE_SVE_FOR_NS := 0
|
|
|
|
# Enable workarounds for Cortex-A53 errata. Allwinner uses at least r0p4.
|
|
ERRATA_A53_835769 := 1
|
|
ERRATA_A53_843419 := 1
|
|
ERRATA_A53_855873 := 1
|
|
ERRATA_A53_1530924 := 1
|
|
|
|
# The traditional U-Boot load address is 160MB into DRAM.
|
|
PRELOADED_BL33_BASE ?= 0x4a000000
|
|
|
|
# The reset vector can be changed for each CPU.
|
|
PROGRAMMABLE_RESET_ADDRESS := 1
|
|
|
|
# Allow mapping read-only data as execute-never.
|
|
SEPARATE_CODE_AND_RODATA := 1
|
|
|
|
# Put NOBITS memory in SRAM A1, overwriting U-Boot's SPL.
|
|
SEPARATE_NOBITS_REGION := 1
|
|
|
|
# BL31 gets loaded alongside BL33 (U-Boot) by U-Boot's SPL
|
|
RESET_TO_BL31 := 1
|
|
|
|
# This platform is single-cluster and does not require coherency setup.
|
|
WARMBOOT_ENABLE_DCACHE_EARLY := 1
|