Marcin Juszkiewicz | a63cdc7 | 2023-07-24 20:56:29 +0200 | [diff] [blame] | 1 | # |
| 2 | # Copyright (c) 2023, Linaro Limited and Contributors. All rights reserved. |
| 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | |
| 7 | include lib/libfdt/libfdt.mk |
| 8 | include common/fdt_wrappers.mk |
| 9 | |
Marcin Juszkiewicz | 886688d | 2023-07-24 21:08:16 +0200 | [diff] [blame^] | 10 | PLAT_INCLUDES := -Iinclude/plat/arm/common/ \ |
| 11 | -I${PLAT_QEMU_COMMON_PATH}/include \ |
| 12 | -I${PLAT_QEMU_PATH}/include \ |
| 13 | -Iinclude/common/tbbr |
| 14 | |
| 15 | ifeq (${ARCH},aarch32) |
| 16 | QEMU_CPU_LIBS := lib/cpus/${ARCH}/cortex_a15.S |
| 17 | else |
| 18 | QEMU_CPU_LIBS := lib/cpus/aarch64/aem_generic.S \ |
| 19 | lib/cpus/aarch64/cortex_a53.S \ |
| 20 | lib/cpus/aarch64/cortex_a57.S \ |
| 21 | lib/cpus/aarch64/cortex_a72.S \ |
| 22 | lib/cpus/aarch64/cortex_a76.S \ |
| 23 | lib/cpus/aarch64/neoverse_n_common.S \ |
| 24 | lib/cpus/aarch64/neoverse_n1.S \ |
| 25 | lib/cpus/aarch64/neoverse_v1.S \ |
| 26 | lib/cpus/aarch64/qemu_max.S |
| 27 | |
| 28 | PLAT_INCLUDES += -Iinclude/plat/arm/common/${ARCH} |
| 29 | endif |