mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-14 16:37:05 +02:00
This commit change the plat/qemu directory structure into: `-- plat `-- qemu |-- common (files shared with all qemu subplatforms) |-- qemu (original qemu platform) |-- qemu_sbsa (new sqemu_sbsa platform) |-- subplat1 `-- subplat2 This opens the possibility of adding new qemu sub-platforms which reuse existing common platform code. The first platform which will leverage new structure will be SBSA platform. Signed-off-by: Radoslaw Biernacki <radoslaw.biernacki@linaro.org> Signed-off-by: Sandrine Bailleux <sandrine.bailleux@arm.com> Change-Id: Id0d8133e1fffc1b574b69aa2770ebc02bb837a9b
23 lines
611 B
Makefile
23 lines
611 B
Makefile
#
|
|
# Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
BL32_SOURCES += plat/qemu/sp_min/sp_min_setup.c \
|
|
plat/qemu/aarch32/plat_helpers.S \
|
|
plat/qemu/qemu_pm.c \
|
|
plat/qemu/topology.c
|
|
|
|
BL32_SOURCES += lib/cpus/aarch32/aem_generic.S \
|
|
lib/cpus/aarch32/cortex_a15.S
|
|
|
|
BL32_SOURCES += plat/common/aarch32/platform_mp_stack.S \
|
|
plat/common/plat_psci_common.c \
|
|
plat/common/plat_gicv2.c
|
|
|
|
|
|
BL32_SOURCES += drivers/arm/gic/v2/gicv2_helpers.c \
|
|
drivers/arm/gic/v2/gicv2_main.c \
|
|
drivers/arm/gic/common/gic_common.c
|