[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC v12 19/65] target/arm: add temporary stub for arm_rebuild_hflags
From: |
Claudio Fontana |
Subject: |
[RFC v12 19/65] target/arm: add temporary stub for arm_rebuild_hflags |
Date: |
Fri, 26 Mar 2021 20:36:15 +0100 |
this should go away once the configuration and hw/arm is clean
Signed-off-by: Claudio Fontana <cfontana@suse.de>
---
hw/arm/boot.c | 5 ++++-
target/arm/arm-powerctl.c | 8 +++++---
target/arm/tcg/helper-stubs.c | 5 +++++
3 files changed, 14 insertions(+), 4 deletions(-)
diff --git a/hw/arm/boot.c b/hw/arm/boot.c
index e56c42ac22..1fb56a846f 100644
--- a/hw/arm/boot.c
+++ b/hw/arm/boot.c
@@ -27,6 +27,7 @@
#include "qemu/option.h"
#include "exec/address-spaces.h"
#include "qemu/units.h"
+#include "sysemu/tcg.h"
/* Kernel boot protocol is specified in the kernel docs
* Documentation/arm/Booting and Documentation/arm64/booting.txt
@@ -797,7 +798,9 @@ static void do_cpu_reset(void *opaque)
info->secondary_cpu_reset_hook(cpu, info);
}
}
- arm_rebuild_hflags(env);
+ if (tcg_enabled()) {
+ arm_rebuild_hflags(env);
+ }
}
}
diff --git a/target/arm/arm-powerctl.c b/target/arm/arm-powerctl.c
index b75f813b40..a00624876c 100644
--- a/target/arm/arm-powerctl.c
+++ b/target/arm/arm-powerctl.c
@@ -15,6 +15,7 @@
#include "arm-powerctl.h"
#include "qemu/log.h"
#include "qemu/main-loop.h"
+#include "sysemu/tcg.h"
#ifndef DEBUG_ARM_POWERCTL
#define DEBUG_ARM_POWERCTL 0
@@ -127,9 +128,10 @@ static void arm_set_cpu_on_async_work(CPUState
*target_cpu_state,
target_cpu->env.regs[0] = info->context_id;
}
- /* CP15 update requires rebuilding hflags */
- arm_rebuild_hflags(&target_cpu->env);
-
+ if (tcg_enabled()) {
+ /* CP15 update requires rebuilding hflags */
+ arm_rebuild_hflags(&target_cpu->env);
+ }
/* Start the new CPU at the requested address */
cpu_set_pc(target_cpu_state, info->entry);
diff --git a/target/arm/tcg/helper-stubs.c b/target/arm/tcg/helper-stubs.c
index 3df03a28da..5011576d47 100644
--- a/target/arm/tcg/helper-stubs.c
+++ b/target/arm/tcg/helper-stubs.c
@@ -19,3 +19,8 @@ void write_v7m_exception(CPUARMState *env, uint32_t new_exc)
{
g_assert_not_reached();
}
+
+void arm_rebuild_hflags(CPUARMState *env)
+{
+ g_assert_not_reached();
+}
--
2.26.2
- [RFC v12 11/65] target/arm: tcg: fix comment style before move to cpu-mmu, (continued)
- [RFC v12 11/65] target/arm: tcg: fix comment style before move to cpu-mmu, Claudio Fontana, 2021/03/26
- [RFC v12 15/65] target/arm: move cpu definitions to common cpu module, Claudio Fontana, 2021/03/26
- [RFC v12 12/65] target/arm: move physical address translation to cpu-mmu, Claudio Fontana, 2021/03/26
- [RFC v12 17/65] target/arm: tcg: add stubs for some helpers for non-tcg builds, Claudio Fontana, 2021/03/26
- [RFC v12 13/65] target/arm: fix style in preparation of new cpregs module, Claudio Fontana, 2021/03/26
- [RFC v12 18/65] target/arm: move cpsr_read, cpsr_write to cpu_common, Claudio Fontana, 2021/03/26
- [RFC v12 19/65] target/arm: add temporary stub for arm_rebuild_hflags,
Claudio Fontana <=
- [RFC v12 16/65] target/arm: only perform TCG cpu and machine inits if TCG enabled, Claudio Fontana, 2021/03/26
- [RFC v12 20/65] target/arm: move arm_hcr_el2_eff from tcg/ to common_cpu, Claudio Fontana, 2021/03/26
- [RFC v12 14/65] target/arm: split cpregs from tcg/helper.c, Claudio Fontana, 2021/03/26
- [RFC v12 21/65] target/arm: split vfp state setting from tcg helpers, Claudio Fontana, 2021/03/26
- [RFC v12 22/65] target/arm: move arm_mmu_idx* to cpu-mmu, Claudio Fontana, 2021/03/26
- [RFC v12 24/65] target/arm: move arm_sctlr away from tcg helpers, Claudio Fontana, 2021/03/26