mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-28 16:11:49 +00:00

- Add basic platform setup. - Add MT8186 documentation at docs/plat/. - Add generic CPU helper functions. - Add basic register address. TEST=build pass BUG=b:202871018 Signed-off-by: Rex-BC Chen <rex-bc.chen@mediatek.com> Change-Id: Id3e2f46a8c3ab2f3e29137e508d4c671e8f4aad5
51 lines
1.9 KiB
Makefile
51 lines
1.9 KiB
Makefile
#
|
|
# Copyright (c) 2021, MediaTek Inc. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
MTK_PLAT := plat/mediatek
|
|
MTK_PLAT_SOC := ${MTK_PLAT}/${PLAT}
|
|
|
|
PLAT_INCLUDES := -I${MTK_PLAT}/common/ \
|
|
-I${MTK_PLAT_SOC}/include/
|
|
|
|
include drivers/arm/gic/v3/gicv3.mk
|
|
include lib/xlat_tables_v2/xlat_tables.mk
|
|
|
|
PLAT_BL_COMMON_SOURCES := ${GICV3_SOURCES} \
|
|
${XLAT_TABLES_LIB_SRCS} \
|
|
plat/common/aarch64/crash_console_helpers.S \
|
|
plat/common/plat_psci_common.c
|
|
|
|
|
|
BL31_SOURCES += common/desc_image_load.c \
|
|
drivers/ti/uart/aarch64/16550_console.S \
|
|
lib/bl_aux_params/bl_aux_params.c \
|
|
lib/cpus/aarch64/cortex_a55.S \
|
|
lib/cpus/aarch64/cortex_a76.S \
|
|
plat/common/plat_gicv3.c \
|
|
${MTK_PLAT}/common/mtk_plat_common.c \
|
|
${MTK_PLAT}/common/params_setup.c \
|
|
${MTK_PLAT_SOC}/aarch64/platform_common.c \
|
|
${MTK_PLAT_SOC}/aarch64/plat_helpers.S \
|
|
${MTK_PLAT_SOC}/bl31_plat_setup.c \
|
|
${MTK_PLAT_SOC}/plat_pm.c \
|
|
${MTK_PLAT_SOC}/plat_topology.c
|
|
|
|
# Configs for A76 and A55
|
|
HW_ASSISTED_COHERENCY := 1
|
|
USE_COHERENT_MEM := 0
|
|
CTX_INCLUDE_AARCH32_REGS := 0
|
|
ERRATA_A55_1530923 := 1
|
|
ERRATA_A55_1221012 := 1
|
|
|
|
# indicate the reset vector address can be programmed
|
|
PROGRAMMABLE_RESET_ADDRESS := 1
|
|
|
|
COLD_BOOT_SINGLE_CPU := 1
|
|
|
|
MACH_MT8186 := 1
|
|
$(eval $(call add_define,MACH_MT8186))
|
|
|
|
include lib/coreboot/coreboot.mk
|