Skip to content

Commit

Permalink
feat(pmp copy): provide api which could inject pmp regs and pmp cfg regs
Browse files Browse the repository at this point in the history
When we skip the difftest in the checkpoint restore phase,
the pmp and pmp cfg registers will not be set to the correct values,
this patch add two api to fix this problem
Signed-off-by: jiaxiaoyu <[email protected]>
  • Loading branch information
xyyy1420 committed Dec 16, 2024
1 parent 6888be9 commit 5bfb216
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
30 changes: 30 additions & 0 deletions difftest/difftest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -486,6 +486,28 @@ const std::vector<std::pair<reg_t, abstract_device_t*>> DifftestRef::create_devi
};
}

void DifftestRef::pmp_cfg_cpy(reg_t *dut, bool direction) {
auto xlen = p->get_isa().get_max_xlen();
for (int i = 0; i < state->max_pmp; i += xlen / 8) {
reg_t addr = CSR_PMPCFG0 + i / 4;
if (direction == DIFFTEST_TO_REF) {
state->csrmap[addr]->write(dut[addr]);
} else {
dut[addr] = state->csrmap[addr]->read();
}
}
}

void DifftestRef::pmp_cpy(reg_t* dut, bool direction) {
for (int i = 0; i < CONFIG_PMP_NUM; i++) {
if (direction == DIFFTEST_TO_REF) {
state->pmpaddr[i]->write(dut[i]);
}else{
dut[i] = state->pmpaddr[i]->read();
}
}
}

sim_t *DifftestRef::create_sim(const cfg_t *cfg) {
sim_t *s = new sim_t(
// const cfg_t *cfg,
Expand Down Expand Up @@ -544,7 +566,15 @@ void difftest_regcpy(diff_context_t* dut, bool direction, bool on_demand) {
}

void difftest_csrcpy(void *dut, bool direction) {
}


void difftest_pmpcpy(void *dut, bool direction) {
ref->pmp_cpy((reg_t*)dut, direction);
}

void difftest_pmp_cfg_cpy(void *dut, bool direction) {
ref->pmp_cfg_cpy((reg_t*)dut, direction);
}

void difftest_uarchstatus_sync(void *dut) {
Expand Down
2 changes: 2 additions & 0 deletions difftest/difftest.h
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ class DifftestRef {
~DifftestRef();
void step(uint64_t n);
void skip_one(bool isRVC, bool wen, uint32_t wdest, uint64_t wdata);
void pmp_cpy(reg_t *dut, bool direction);
void pmp_cfg_cpy(reg_t *dut, bool direction);
void get_regs(diff_context_t *ctx);
void set_regs(diff_context_t *ctx, bool on_demand);
void memcpy_from_dut(reg_t dest, void* src, size_t n);
Expand Down

0 comments on commit 5bfb216

Please sign in to comment.