Use cpu_set_pc() across the board for setting program counters. This removes instances of system level code having to reach into the CPU env.
Reviewed-by: Peter Maydell <peter.mayd...@linaro.org> Reviewed-by: Andreas Färber <afaer...@suse.de> Signed-off-by: Peter Crosthwaite <crosthwaite.pe...@gmail.com> --- Changed since v2: Add () to fn names in commit msg Drop error argument Changed since v1: Lease thumb masking in boot.c --- hw/arm/boot.c | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/hw/arm/boot.c b/hw/arm/boot.c index 1e7fd28..c9d7f7d 100644 --- a/hw/arm/boot.c +++ b/hw/arm/boot.c @@ -168,11 +168,9 @@ static void default_write_secondary(ARMCPU *cpu, static void default_reset_secondary(ARMCPU *cpu, const struct arm_boot_info *info) { - CPUARMState *env = &cpu->env; - address_space_stl_notdirty(&address_space_memory, info->smp_bootreg_addr, 0, MEMTXATTRS_UNSPECIFIED, NULL); - env->regs[15] = info->smp_loader_start; + cpu_set_pc(CPU(cpu), info->smp_loader_start); } static inline bool have_dtb(const struct arm_boot_info *info) @@ -452,12 +450,13 @@ static void do_cpu_reset(void *opaque) if (info) { if (!info->is_linux) { /* Jump to the entry point. */ - if (env->aarch64) { - env->pc = info->entry; - } else { - env->regs[15] = info->entry & 0xfffffffe; + uint64_t entry = info->entry; + + if (!env->aarch64) { env->thumb = info->entry & 1; + entry &= 0xfffffffe; } + cpu_set_pc(CPU(cpu), entry); } else { /* If we are booting Linux then we need to check whether we are * booting into secure or non-secure state and adjust the state @@ -488,11 +487,7 @@ static void do_cpu_reset(void *opaque) } if (CPU(cpu) == first_cpu) { - if (env->aarch64) { - env->pc = info->loader_start; - } else { - env->regs[15] = info->loader_start; - } + cpu_set_pc(CPU(cpu), info->loader_start); if (!have_dtb(info)) { if (old_param) { -- 1.9.1