[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 11/20] target/arm: Move psci.c into the tcg directory
From: |
Fabiano Rosas |
Subject: |
[PATCH 11/20] target/arm: Move psci.c into the tcg directory |
Date: |
Wed, 18 Jan 2023 16:35:09 -0300 |
From: Claudio Fontana <cfontana@suse.de>
Signed-off-by: Claudio Fontana <cfontana@suse.de>
Signed-off-by: Fabiano Rosas <farosas@suse.de>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
---
target/arm/meson.build | 1 -
target/arm/tcg/meson.build | 4 ++++
target/arm/{ => tcg}/psci.c | 0
3 files changed, 4 insertions(+), 1 deletion(-)
rename target/arm/{ => tcg}/psci.c (100%)
diff --git a/target/arm/meson.build b/target/arm/meson.build
index 01143a805c..595d22a099 100644
--- a/target/arm/meson.build
+++ b/target/arm/meson.build
@@ -22,7 +22,6 @@ arm_softmmu_ss.add(files(
'arm-powerctl.c',
'machine.c',
'monitor.c',
- 'psci.c',
'ptw.c',
))
diff --git a/target/arm/tcg/meson.build b/target/arm/tcg/meson.build
index c27ac2939c..47006f903c 100644
--- a/target/arm/tcg/meson.build
+++ b/target/arm/tcg/meson.build
@@ -44,3 +44,7 @@ arm_ss.add(when: 'TARGET_AARCH64', if_true: files(
'sme_helper.c',
'sve_helper.c',
))
+
+arm_softmmu_ss.add(files(
+ 'psci.c',
+))
diff --git a/target/arm/psci.c b/target/arm/tcg/psci.c
similarity index 100%
rename from target/arm/psci.c
rename to target/arm/tcg/psci.c
--
2.35.3
- [PATCH 03/20] target/arm: wrap call to aarch64_sve_change_el in tcg_enabled(), (continued)
- [PATCH 03/20] target/arm: wrap call to aarch64_sve_change_el in tcg_enabled(), Fabiano Rosas, 2023/01/18
- [PATCH 02/20] target/arm: wrap psci call with tcg_enabled, Fabiano Rosas, 2023/01/18
- [PATCH 01/20] target/arm: rename handle_semihosting to tcg_handle_semihosting, Fabiano Rosas, 2023/01/18
- [PATCH 09/20] target/arm: move translate modules to tcg/, Fabiano Rosas, 2023/01/18
- [PATCH 05/20] target/arm: Move cpregs code out of cpu.h, Fabiano Rosas, 2023/01/18
- [PATCH 08/20] target/arm: Wrap breakpoint/watchpoint updates with tcg_enabled, Fabiano Rosas, 2023/01/18
- [PATCH 06/20] target/arm: Move cpregs code into cpregs.c, Fabiano Rosas, 2023/01/18
- [PATCH 07/20] target/arm: Move define_debug_regs() to cpregs.c, Fabiano Rosas, 2023/01/18
- [PATCH 04/20] target/arm: Move PC alignment check, Fabiano Rosas, 2023/01/18
- [PATCH 13/20] target/arm: Move hflags code into the tcg directory, Fabiano Rosas, 2023/01/18
- [PATCH 11/20] target/arm: Move psci.c into the tcg directory,
Fabiano Rosas <=
- [PATCH 10/20] target/arm: move helpers to tcg/, Fabiano Rosas, 2023/01/18
- [PATCH 12/20] target/arm: Wrap arm_rebuild_hflags calls with tcg_enabled, Fabiano Rosas, 2023/01/18
- [PATCH 14/20] target/arm: Move regime_using_lpae_format into internal.h, Fabiano Rosas, 2023/01/18
- [PATCH 17/20] target/arm: Move cortex sysregs into cpregs.c, Fabiano Rosas, 2023/01/18
- [PATCH 15/20] target/arm: Don't access TCG code when debugging with KVM, Fabiano Rosas, 2023/01/18
- [PATCH 16/20] cpu-defs.h: Expose CPUTLBEntryFull to non-TCG code, Fabiano Rosas, 2023/01/18
- [PATCH 18/20] tests/qtest: Restrict bcm2835-dma-test to CONFIG_RASPI, Fabiano Rosas, 2023/01/18
- [PATCH 19/20] tests/avocado: Skip tests that require a missing accelerator, Fabiano Rosas, 2023/01/18
- [PATCH 20/20] tests/avocado: Tag TCG tests with accel:tcg, Fabiano Rosas, 2023/01/18
- Re: [PATCH 00/20] target/arm: CONFIG_TCG=n part 1, Philippe Mathieu-Daudé, 2023/01/18