ppc/pnv: Move timebase state into PnvCore
The timebase state machine is per per-core state and can be driven by any thread in the core. It is currently implemented as a hack where the state is in a CPU structure and only thread 0's state is accessed by the chiptod, which limits programming the timebase side of the state machine to thread 0 of a core. Move the state out into PnvCore and share it among all threads. Reviewed-by: Harsh Prateek Bora <harshpb@linux.ibm.com> Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
This commit is contained in:
parent
060e614367
commit
0ca94b2f11
@ -364,8 +364,7 @@ static void pnv_chiptod_xscom_write(void *opaque, hwaddr addr,
|
|||||||
qemu_log_mask(LOG_GUEST_ERROR, "pnv_chiptod: xscom write reg"
|
qemu_log_mask(LOG_GUEST_ERROR, "pnv_chiptod: xscom write reg"
|
||||||
" TOD_MOVE_TOD_TO_TB_REG with no slave target\n");
|
" TOD_MOVE_TOD_TO_TB_REG with no slave target\n");
|
||||||
} else {
|
} else {
|
||||||
PowerPCCPU *cpu = chiptod->slave_pc_target->threads[0];
|
PnvCore *pc = chiptod->slave_pc_target;
|
||||||
CPUPPCState *env = &cpu->env;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Moving TOD to TB will set the TB of all threads in a
|
* Moving TOD to TB will set the TB of all threads in a
|
||||||
@ -377,8 +376,8 @@ static void pnv_chiptod_xscom_write(void *opaque, hwaddr addr,
|
|||||||
* thread 0.
|
* thread 0.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (env->pnv_tod_tbst.tb_ready_for_tod) {
|
if (pc->tod_state.tb_ready_for_tod) {
|
||||||
env->pnv_tod_tbst.tod_sent_to_tb = 1;
|
pc->tod_state.tod_sent_to_tb = 1;
|
||||||
} else {
|
} else {
|
||||||
qemu_log_mask(LOG_GUEST_ERROR, "pnv_chiptod: xscom write reg"
|
qemu_log_mask(LOG_GUEST_ERROR, "pnv_chiptod: xscom write reg"
|
||||||
" TOD_MOVE_TOD_TO_TB_REG with TB not ready to"
|
" TOD_MOVE_TOD_TO_TB_REG with TB not ready to"
|
||||||
|
@ -25,6 +25,20 @@
|
|||||||
#include "hw/ppc/pnv.h"
|
#include "hw/ppc/pnv.h"
|
||||||
#include "qom/object.h"
|
#include "qom/object.h"
|
||||||
|
|
||||||
|
/* Per-core ChipTOD / TimeBase state */
|
||||||
|
typedef struct PnvCoreTODState {
|
||||||
|
int tb_ready_for_tod; /* core TB ready to receive TOD from chiptod */
|
||||||
|
int tod_sent_to_tb; /* chiptod sent TOD to the core TB */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* "Timers" for async TBST events are simulated by mfTFAC because TFAC
|
||||||
|
* is polled for such events. These are just used to ensure firmware
|
||||||
|
* performs the polling at least a few times.
|
||||||
|
*/
|
||||||
|
int tb_state_timer;
|
||||||
|
int tb_sync_pulse_timer;
|
||||||
|
} PnvCoreTODState;
|
||||||
|
|
||||||
#define TYPE_PNV_CORE "powernv-cpu-core"
|
#define TYPE_PNV_CORE "powernv-cpu-core"
|
||||||
OBJECT_DECLARE_TYPE(PnvCore, PnvCoreClass,
|
OBJECT_DECLARE_TYPE(PnvCore, PnvCoreClass,
|
||||||
PNV_CORE)
|
PNV_CORE)
|
||||||
@ -38,6 +52,9 @@ struct PnvCore {
|
|||||||
uint32_t pir;
|
uint32_t pir;
|
||||||
uint32_t hwid;
|
uint32_t hwid;
|
||||||
uint64_t hrmor;
|
uint64_t hrmor;
|
||||||
|
|
||||||
|
PnvCoreTODState tod_state;
|
||||||
|
|
||||||
PnvChip *chip;
|
PnvChip *chip;
|
||||||
|
|
||||||
MemoryRegion xscom_regs;
|
MemoryRegion xscom_regs;
|
||||||
|
@ -1196,21 +1196,6 @@ DEXCR_ASPECT(SRAPD, 4)
|
|||||||
DEXCR_ASPECT(NPHIE, 5)
|
DEXCR_ASPECT(NPHIE, 5)
|
||||||
DEXCR_ASPECT(PHIE, 6)
|
DEXCR_ASPECT(PHIE, 6)
|
||||||
|
|
||||||
/*****************************************************************************/
|
|
||||||
/* PowerNV ChipTOD and TimeBase State Machine */
|
|
||||||
struct pnv_tod_tbst {
|
|
||||||
int tb_ready_for_tod; /* core TB ready to receive TOD from chiptod */
|
|
||||||
int tod_sent_to_tb; /* chiptod sent TOD to the core TB */
|
|
||||||
|
|
||||||
/*
|
|
||||||
* "Timers" for async TBST events are simulated by mfTFAC because TFAC
|
|
||||||
* is polled for such events. These are just used to ensure firmware
|
|
||||||
* performs the polling at least a few times.
|
|
||||||
*/
|
|
||||||
int tb_state_timer;
|
|
||||||
int tb_sync_pulse_timer;
|
|
||||||
};
|
|
||||||
|
|
||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
/* The whole PowerPC CPU context */
|
/* The whole PowerPC CPU context */
|
||||||
|
|
||||||
@ -1291,12 +1276,6 @@ struct CPUArchState {
|
|||||||
uint32_t tlb_need_flush; /* Delayed flush needed */
|
uint32_t tlb_need_flush; /* Delayed flush needed */
|
||||||
#define TLB_NEED_LOCAL_FLUSH 0x1
|
#define TLB_NEED_LOCAL_FLUSH 0x1
|
||||||
#define TLB_NEED_GLOBAL_FLUSH 0x2
|
#define TLB_NEED_GLOBAL_FLUSH 0x2
|
||||||
|
|
||||||
#if defined(TARGET_PPC64)
|
|
||||||
/* PowerNV chiptod / timebase facility state. */
|
|
||||||
/* Would be nice to put these into PnvCore */
|
|
||||||
struct pnv_tod_tbst pnv_tod_tbst;
|
|
||||||
#endif
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Other registers */
|
/* Other registers */
|
||||||
|
@ -217,7 +217,13 @@ void helper_store_booke_tsr(CPUPPCState *env, target_ulong val)
|
|||||||
store_booke_tsr(env, val);
|
store_booke_tsr(env, val);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(TARGET_PPC64)
|
#if defined(TARGET_PPC64) && !defined(CONFIG_USER_ONLY)
|
||||||
|
/*
|
||||||
|
* qemu-user breaks with pnv headers, so they go under ifdefs for now.
|
||||||
|
* A clean up may be to move powernv specific registers and helpers into
|
||||||
|
* target/ppc/pnv_helper.c
|
||||||
|
*/
|
||||||
|
#include "hw/ppc/pnv_core.h"
|
||||||
/*
|
/*
|
||||||
* POWER processor Timebase Facility
|
* POWER processor Timebase Facility
|
||||||
*/
|
*/
|
||||||
@ -298,8 +304,17 @@ static void write_tfmr(CPUPPCState *env, target_ulong val)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static PnvCoreTODState *cpu_get_tbst(PowerPCCPU *cpu)
|
||||||
|
{
|
||||||
|
PnvCore *pc = pnv_cpu_state(cpu)->pnv_core;
|
||||||
|
|
||||||
|
return &pc->tod_state;
|
||||||
|
}
|
||||||
|
|
||||||
static void tb_state_machine_step(CPUPPCState *env)
|
static void tb_state_machine_step(CPUPPCState *env)
|
||||||
{
|
{
|
||||||
|
PowerPCCPU *cpu = env_archcpu(env);
|
||||||
|
PnvCoreTODState *tod_state = cpu_get_tbst(cpu);
|
||||||
uint64_t tfmr = env->spr[SPR_TFMR];
|
uint64_t tfmr = env->spr[SPR_TFMR];
|
||||||
unsigned int tbst = tfmr_get_tb_state(tfmr);
|
unsigned int tbst = tfmr_get_tb_state(tfmr);
|
||||||
|
|
||||||
@ -307,15 +322,15 @@ static void tb_state_machine_step(CPUPPCState *env)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (env->pnv_tod_tbst.tb_sync_pulse_timer) {
|
if (tod_state->tb_sync_pulse_timer) {
|
||||||
env->pnv_tod_tbst.tb_sync_pulse_timer--;
|
tod_state->tb_sync_pulse_timer--;
|
||||||
} else {
|
} else {
|
||||||
tfmr |= TFMR_TB_SYNC_OCCURED;
|
tfmr |= TFMR_TB_SYNC_OCCURED;
|
||||||
write_tfmr(env, tfmr);
|
write_tfmr(env, tfmr);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (env->pnv_tod_tbst.tb_state_timer) {
|
if (tod_state->tb_state_timer) {
|
||||||
env->pnv_tod_tbst.tb_state_timer--;
|
tod_state->tb_state_timer--;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -332,20 +347,20 @@ static void tb_state_machine_step(CPUPPCState *env)
|
|||||||
} else if (tfmr & TFMR_MOVE_CHIP_TOD_TO_TB) {
|
} else if (tfmr & TFMR_MOVE_CHIP_TOD_TO_TB) {
|
||||||
if (tbst == TBST_SYNC_WAIT) {
|
if (tbst == TBST_SYNC_WAIT) {
|
||||||
tfmr = tfmr_new_tb_state(tfmr, TBST_GET_TOD);
|
tfmr = tfmr_new_tb_state(tfmr, TBST_GET_TOD);
|
||||||
env->pnv_tod_tbst.tb_state_timer = 3;
|
tod_state->tb_state_timer = 3;
|
||||||
} else if (tbst == TBST_GET_TOD) {
|
} else if (tbst == TBST_GET_TOD) {
|
||||||
if (env->pnv_tod_tbst.tod_sent_to_tb) {
|
if (tod_state->tod_sent_to_tb) {
|
||||||
tfmr = tfmr_new_tb_state(tfmr, TBST_TB_RUNNING);
|
tfmr = tfmr_new_tb_state(tfmr, TBST_TB_RUNNING);
|
||||||
tfmr &= ~TFMR_MOVE_CHIP_TOD_TO_TB;
|
tfmr &= ~TFMR_MOVE_CHIP_TOD_TO_TB;
|
||||||
env->pnv_tod_tbst.tb_ready_for_tod = 0;
|
tod_state->tb_ready_for_tod = 0;
|
||||||
env->pnv_tod_tbst.tod_sent_to_tb = 0;
|
tod_state->tod_sent_to_tb = 0;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
qemu_log_mask(LOG_GUEST_ERROR, "TFMR error: MOVE_CHIP_TOD_TO_TB "
|
qemu_log_mask(LOG_GUEST_ERROR, "TFMR error: MOVE_CHIP_TOD_TO_TB "
|
||||||
"state machine in invalid state 0x%x\n", tbst);
|
"state machine in invalid state 0x%x\n", tbst);
|
||||||
tfmr = tfmr_new_tb_state(tfmr, TBST_TB_ERROR);
|
tfmr = tfmr_new_tb_state(tfmr, TBST_TB_ERROR);
|
||||||
tfmr |= TFMR_FIRMWARE_CONTROL_ERROR;
|
tfmr |= TFMR_FIRMWARE_CONTROL_ERROR;
|
||||||
env->pnv_tod_tbst.tb_ready_for_tod = 0;
|
tod_state->tb_ready_for_tod = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -361,6 +376,8 @@ target_ulong helper_load_tfmr(CPUPPCState *env)
|
|||||||
|
|
||||||
void helper_store_tfmr(CPUPPCState *env, target_ulong val)
|
void helper_store_tfmr(CPUPPCState *env, target_ulong val)
|
||||||
{
|
{
|
||||||
|
PowerPCCPU *cpu = env_archcpu(env);
|
||||||
|
PnvCoreTODState *tod_state = cpu_get_tbst(cpu);
|
||||||
uint64_t tfmr = env->spr[SPR_TFMR];
|
uint64_t tfmr = env->spr[SPR_TFMR];
|
||||||
uint64_t clear_on_write;
|
uint64_t clear_on_write;
|
||||||
unsigned int tbst = tfmr_get_tb_state(tfmr);
|
unsigned int tbst = tfmr_get_tb_state(tfmr);
|
||||||
@ -384,14 +401,7 @@ void helper_store_tfmr(CPUPPCState *env, target_ulong val)
|
|||||||
* after the second mfspr.
|
* after the second mfspr.
|
||||||
*/
|
*/
|
||||||
tfmr &= ~TFMR_TB_SYNC_OCCURED;
|
tfmr &= ~TFMR_TB_SYNC_OCCURED;
|
||||||
env->pnv_tod_tbst.tb_sync_pulse_timer = 1;
|
tod_state->tb_sync_pulse_timer = 1;
|
||||||
|
|
||||||
if (ppc_cpu_tir(env_archcpu(env)) != 0 &&
|
|
||||||
(val & (TFMR_LOAD_TOD_MOD | TFMR_MOVE_CHIP_TOD_TO_TB))) {
|
|
||||||
qemu_log_mask(LOG_UNIMP, "TFMR timebase state machine can only be "
|
|
||||||
"driven by thread 0\n");
|
|
||||||
goto out;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (((tfmr | val) & (TFMR_LOAD_TOD_MOD | TFMR_MOVE_CHIP_TOD_TO_TB)) ==
|
if (((tfmr | val) & (TFMR_LOAD_TOD_MOD | TFMR_MOVE_CHIP_TOD_TO_TB)) ==
|
||||||
(TFMR_LOAD_TOD_MOD | TFMR_MOVE_CHIP_TOD_TO_TB)) {
|
(TFMR_LOAD_TOD_MOD | TFMR_MOVE_CHIP_TOD_TO_TB)) {
|
||||||
@ -399,7 +409,7 @@ void helper_store_tfmr(CPUPPCState *env, target_ulong val)
|
|||||||
"MOVE_CHIP_TOD_TO_TB both set\n");
|
"MOVE_CHIP_TOD_TO_TB both set\n");
|
||||||
tfmr = tfmr_new_tb_state(tfmr, TBST_TB_ERROR);
|
tfmr = tfmr_new_tb_state(tfmr, TBST_TB_ERROR);
|
||||||
tfmr |= TFMR_FIRMWARE_CONTROL_ERROR;
|
tfmr |= TFMR_FIRMWARE_CONTROL_ERROR;
|
||||||
env->pnv_tod_tbst.tb_ready_for_tod = 0;
|
tod_state->tb_ready_for_tod = 0;
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -413,8 +423,8 @@ void helper_store_tfmr(CPUPPCState *env, target_ulong val)
|
|||||||
tfmr &= ~TFMR_LOAD_TOD_MOD;
|
tfmr &= ~TFMR_LOAD_TOD_MOD;
|
||||||
tfmr &= ~TFMR_MOVE_CHIP_TOD_TO_TB;
|
tfmr &= ~TFMR_MOVE_CHIP_TOD_TO_TB;
|
||||||
tfmr &= ~TFMR_FIRMWARE_CONTROL_ERROR; /* XXX: should this be cleared? */
|
tfmr &= ~TFMR_FIRMWARE_CONTROL_ERROR; /* XXX: should this be cleared? */
|
||||||
env->pnv_tod_tbst.tb_ready_for_tod = 0;
|
tod_state->tb_ready_for_tod = 0;
|
||||||
env->pnv_tod_tbst.tod_sent_to_tb = 0;
|
tod_state->tod_sent_to_tb = 0;
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -427,19 +437,19 @@ void helper_store_tfmr(CPUPPCState *env, target_ulong val)
|
|||||||
|
|
||||||
if (tfmr & TFMR_LOAD_TOD_MOD) {
|
if (tfmr & TFMR_LOAD_TOD_MOD) {
|
||||||
/* Wait for an arbitrary 3 mfspr until the next state transition. */
|
/* Wait for an arbitrary 3 mfspr until the next state transition. */
|
||||||
env->pnv_tod_tbst.tb_state_timer = 3;
|
tod_state->tb_state_timer = 3;
|
||||||
} else if (tfmr & TFMR_MOVE_CHIP_TOD_TO_TB) {
|
} else if (tfmr & TFMR_MOVE_CHIP_TOD_TO_TB) {
|
||||||
if (tbst == TBST_NOT_SET) {
|
if (tbst == TBST_NOT_SET) {
|
||||||
tfmr = tfmr_new_tb_state(tfmr, TBST_SYNC_WAIT);
|
tfmr = tfmr_new_tb_state(tfmr, TBST_SYNC_WAIT);
|
||||||
env->pnv_tod_tbst.tb_ready_for_tod = 1;
|
tod_state->tb_ready_for_tod = 1;
|
||||||
env->pnv_tod_tbst.tb_state_timer = 3; /* arbitrary */
|
tod_state->tb_state_timer = 3; /* arbitrary */
|
||||||
} else {
|
} else {
|
||||||
qemu_log_mask(LOG_GUEST_ERROR, "TFMR error: MOVE_CHIP_TOD_TO_TB "
|
qemu_log_mask(LOG_GUEST_ERROR, "TFMR error: MOVE_CHIP_TOD_TO_TB "
|
||||||
"not in TB not set state 0x%x\n",
|
"not in TB not set state 0x%x\n",
|
||||||
tbst);
|
tbst);
|
||||||
tfmr = tfmr_new_tb_state(tfmr, TBST_TB_ERROR);
|
tfmr = tfmr_new_tb_state(tfmr, TBST_TB_ERROR);
|
||||||
tfmr |= TFMR_FIRMWARE_CONTROL_ERROR;
|
tfmr |= TFMR_FIRMWARE_CONTROL_ERROR;
|
||||||
env->pnv_tod_tbst.tb_ready_for_tod = 0;
|
tod_state->tb_ready_for_tod = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user