mirror of https://github.com/xemu-project/xemu.git
hw/ppc/spapr_rtas: Update hflags after setting msr
Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20210315184615.1985590-16-richard.henderson@linaro.org> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
bd4160bc6a
commit
e81f17a3f6
|
@ -51,6 +51,7 @@
|
||||||
#include "target/ppc/mmu-hash64.h"
|
#include "target/ppc/mmu-hash64.h"
|
||||||
#include "target/ppc/mmu-book3s-v3.h"
|
#include "target/ppc/mmu-book3s-v3.h"
|
||||||
#include "migration/blocker.h"
|
#include "migration/blocker.h"
|
||||||
|
#include "helper_regs.h"
|
||||||
|
|
||||||
static void rtas_display_character(PowerPCCPU *cpu, SpaprMachineState *spapr,
|
static void rtas_display_character(PowerPCCPU *cpu, SpaprMachineState *spapr,
|
||||||
uint32_t token, uint32_t nargs,
|
uint32_t token, uint32_t nargs,
|
||||||
|
@ -163,6 +164,7 @@ static void rtas_start_cpu(PowerPCCPU *callcpu, SpaprMachineState *spapr,
|
||||||
cpu_synchronize_state(CPU(newcpu));
|
cpu_synchronize_state(CPU(newcpu));
|
||||||
|
|
||||||
env->msr = (1ULL << MSR_SF) | (1ULL << MSR_ME);
|
env->msr = (1ULL << MSR_SF) | (1ULL << MSR_ME);
|
||||||
|
hreg_compute_hflags(env);
|
||||||
|
|
||||||
/* Enable Power-saving mode Exit Cause exceptions for the new CPU */
|
/* Enable Power-saving mode Exit Cause exceptions for the new CPU */
|
||||||
lpcr = env->spr[SPR_LPCR];
|
lpcr = env->spr[SPR_LPCR];
|
||||||
|
|
Loading…
Reference in New Issue