mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 01:24:27 +00:00

- Add basic platform setup. - Add MT8188 documentation at docs/plat/. - Add generic CPU helper functions. - Add basic register address. - Add mtk_pm.c in lib/pm TEST=build pass BUG=b:236331724 Signed-off-by: Bo-Chen Chen <rex-bc.chen@mediatek.com> Change-Id: I5f8617c42ffba2c9d3a16f3980cb75fda5624031
32 lines
718 B
Makefile
32 lines
718 B
Makefile
#
|
|
# Copyright (c) 2022, MediaTek Inc. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
# Separate text code and read only data
|
|
SEPARATE_CODE_AND_RODATA := 1
|
|
# ARMv8.2 and above need enable HW assist coherence
|
|
HW_ASSISTED_COHERENCY := 1
|
|
# No need coherency memory because of HW assistency
|
|
USE_COHERENT_MEM := 0
|
|
# GIC600
|
|
GICV3_SUPPORT_GIC600 := 1
|
|
#
|
|
# MTK options
|
|
#
|
|
PLAT_EXTRA_RODATA_INCLUDES := 1
|
|
|
|
# Configs for A78 and A55
|
|
CTX_INCLUDE_AARCH32_REGS := 0
|
|
ERRATA_A55_1530923 := 1
|
|
ERRATA_A55_1221012 := 1
|
|
ERRATA_A78_1688305 := 1
|
|
ERRATA_A78_1941498 := 1
|
|
ERRATA_A78_1951500 := 1
|
|
ERRATA_A78_1821534 := 1
|
|
ERRATA_A78_2132060 := 1
|
|
ERRATA_A78_2242635 := 1
|
|
|
|
MACH_MT8188 := 1
|
|
$(eval $(call add_define,MACH_MT8188))
|