Chia-Wei Wang | a7556d8 | 2022-11-02 17:50:21 +0800 | [diff] [blame] | 1 | # |
| 2 | # Copyright (c) 2023, Aspeed Technology Inc. |
| 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | |
| 7 | include drivers/arm/gic/v3/gicv3.mk |
| 8 | include lib/xlat_tables_v2/xlat_tables.mk |
| 9 | |
| 10 | PLAT_AST2700 := plat/aspeed/ast2700 |
| 11 | |
| 12 | PLAT_INCLUDES := \ |
| 13 | -I${PLAT_AST2700}/include |
| 14 | |
| 15 | BL31_SOURCES += \ |
| 16 | common/desc_image_load.c \ |
| 17 | lib/cpus/aarch64/cortex_a35.S \ |
| 18 | plat/common/plat_gicv3.c \ |
| 19 | plat/common/plat_psci_common.c \ |
| 20 | drivers/ti/uart/aarch64/16550_console.S \ |
| 21 | ${PLAT_AST2700}/plat_helpers.S \ |
| 22 | ${PLAT_AST2700}/plat_topology.c \ |
| 23 | ${PLAT_AST2700}/plat_bl31_setup.c \ |
| 24 | ${PLAT_AST2700}/plat_pm.c \ |
| 25 | ${GICV3_SOURCES} \ |
| 26 | ${XLAT_TABLES_LIB_SRCS} |
| 27 | |
Chia-Wei Wang | a741460 | 2023-09-27 13:51:04 +0800 | [diff] [blame] | 28 | RESET_TO_BL31 := 1 |
| 29 | |
Chia-Wei Wang | a7556d8 | 2022-11-02 17:50:21 +0800 | [diff] [blame] | 30 | PROGRAMMABLE_RESET_ADDRESS := 1 |
| 31 | |
Chia-Wei Wang | a741460 | 2023-09-27 13:51:04 +0800 | [diff] [blame] | 32 | COLD_BOOT_SINGLE_CPU := 0 |
Chia-Wei Wang | a7556d8 | 2022-11-02 17:50:21 +0800 | [diff] [blame] | 33 | |
| 34 | ENABLE_SVE_FOR_NS := 0 |