51#include "debug/Checkpoint.hh"
52#include "debug/LLSC.hh"
53#include "debug/MatRegs.hh"
54#include "debug/RiscvMisc.hh"
57#include "params/RiscvISA.hh"
66[[maybe_unused]]
const std::array<const char *, NUM_MISCREGS>
MiscRegNames = {{
295 misa.rvi = misa.rvm = misa.rva = misa.rvf = misa.rvd = misa.rvc = 1;
297 misa.rvs = misa.rvu = 1;
336 if (hpmcounter < 0 || hpmcounter > 31)
337 panic(
"Illegal HPM counter %d\n", hpmcounter);
352 return (
miscRegFile[counteren] & (1ULL << (hpmcounter))) > 0;
360 DPRINTF(RiscvMisc,
"Reading MiscReg %s (%d): %#x.\n",
373 DPRINTF(RiscvMisc,
"Cycle counter at: %llu.\n",
377 warn(
"Cycle counter disabled.\n");
382 DPRINTF(RiscvMisc,
"Cycle counter at: %llu.\n",
386 warn(
"Cycle counter disabled.\n");
391 DPRINTF(RiscvMisc,
"Wall-clock counter at: %llu.\n",
395 warn(
"Wall clock disabled.\n");
400 DPRINTF(RiscvMisc,
"Wall-clock counter at: %llu.\n",
404 warn(
"Wall clock disabled.\n");
409 DPRINTF(RiscvMisc,
"Instruction counter at: %llu.\n",
413 warn(
"Instruction counter disabled.\n");
418 DPRINTF(RiscvMisc,
"Instruction counter at: %llu.\n",
422 warn(
"Instruction counter disabled.\n");
488 DPRINTF(RiscvMisc,
"HPM counter %d: %llu.\n",
498 DPRINTF(RiscvMisc,
"HPM counter %d: %llu.\n",
515 DPRINTF(RiscvMisc,
"Setting MiscReg %s (%d) to %#x.\n",
563 for (
int i=0;
i < regSize;
i++) {
565 uint8_t cfg_val = (
val >> (8*
i)) & 0xff;
572 bool result = mmu->getPMP()->pmpUpdateCfg(pmp_index,cfg_val);
574 res |= ((
RegVal)cfg_val << (8*
i));
576 res |= (old_val & (0xFF << (8*
i)));
591 if (mmu->getPMP()->pmpUpdateAddr(pmp_index,
val)) {
617 if (new_val.mode != AddrXlateMode::BARE &&
618 new_val.mode != AddrXlateMode::SV39)
619 new_val.mode = cur_val.mode;
633 MISA new_misa = (MISA)
val;
636 if (new_misa.rvc == 0 &&
639 new_misa.rvc = new_misa.rvc | cur_misa.rvc;
664 DPRINTF(Checkpoint,
"Serializing Riscv Misc Registers\n");
671 DPRINTF(Checkpoint,
"Unserializing Riscv Misc Registers\n");
683 DPRINTF(LLSC,
"Locked snoop on address %x.\n", snoop_addr);
684 if ((load_reservation_addr & cacheBlockMask) == snoop_addr)
694 load_reservation_addr = req->getPaddr();
695 DPRINTF(LLSC,
"[cid:%d]: Reserved address %x.\n",
696 req->contextId(), req->getPaddr());
710 DPRINTF(LLSC,
"[cid:%d]: load_reservation_addrs empty? %s.\n",
712 lr_addr_empty ?
"yes" :
"no");
713 if (!lr_addr_empty) {
714 DPRINTF(LLSC,
"[cid:%d]: addr = %x.\n", req->contextId(),
715 req->getPaddr() & cacheBlockMask);
716 DPRINTF(LLSC,
"[cid:%d]: last locked addr = %x.\n", req->contextId(),
717 load_reservation_addr & cacheBlockMask);
720 (load_reservation_addr & cacheBlockMask)
721 != ((req->getPaddr() & cacheBlockMask))) {
722 req->setExtraData(0);
726 warn(
"%i: context %d: %d consecutive SC failures.\n",
735 if (req->isUncacheable()) {
736 req->setExtraData(2);
742 DPRINTF(LLSC,
"[cid:%d]: SC success! Current locked addr = %x.\n",
743 req->contextId(), load_reservation_addr & cacheBlockMask);
769 return os <<
"PRV_U";
771 return os <<
"PRV_S";
773 return os <<
"PRV_M";
775 return os <<
"PRV_<invalid>";
BaseInterrupts * getInterruptController(ThreadID tid)
virtual Counter totalInsts() const =0
virtual void wakeup(ThreadID tid)=0
Cycles curCycle() const
Determine the current cycle, corresponding to a tick aligned to a clock edge.
virtual std::string name() const
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
void setMiscReg(RegIndex idx, RegVal val) override
void handleLockedSnoop(PacketPtr pkt, Addr cacheBlockMask) override
RegVal readMiscReg(RegIndex idx) override
void globalClearExclusive() override
void serialize(CheckpointOut &cp) const override
Serialize an object.
void resetThread() override
void setMiscRegNoEffect(RegIndex idx, RegVal val) override
RegVal readMiscRegNoEffect(RegIndex idx) const override
bool hpmCounterEnabled(int counter) const
void copyRegsFrom(ThreadContext *src) override
bool handleLockedWrite(const RequestPtr &req, Addr cacheBlockMask) override
std::vector< RegVal > miscRegFile
bool inUserMode() const override
void unserialize(CheckpointIn &cp) override
Unserialize an object.
const Addr INVALID_RESERVATION_ADDR
std::unordered_map< int, Addr > load_reservation_addrs
void handleLockedRead(const RequestPtr &req) override
void invoke(ThreadContext *tc, const StaticInstPtr &inst=nullStaticInstPtr) override
ThreadContext is the external interface to all thread state for anything outside of the CPU.
virtual RegVal getReg(const RegId ®) const
virtual BaseCPU * getCpuPtr()=0
virtual void setReg(const RegId ®, RegVal val)
virtual void setStCondFailures(unsigned sc_failures)=0
virtual unsigned readStCondFailures() const =0
virtual const PCStateBase & pcState() const =0
virtual int threadId() const =0
virtual BaseMMU * getMMUPtr()=0
virtual ContextID contextId() const =0
constexpr T bits(T val, unsigned first, unsigned last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it.
constexpr T mbits(T val, unsigned first, unsigned last)
Mask off the given bits in place like bits() but without shifting.
#define panic(...)
This implements a cprintf based panic() function.
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
#define UNSERIALIZE_CONTAINER(member)
#define SERIALIZE_CONTAINER(member)
constexpr RegClass matRegClass
constexpr RegClass vecElemClass
constexpr RegClass intRegClass
constexpr RegClass vecPredRegClass
constexpr RegClass ccRegClass
constexpr RegClass miscRegClass
constexpr RegClass vecRegClass
constexpr enums::RiscvType RV32
const RegVal STATUS_SXL_MASK
const RegVal STATUS_UXL_MASK
const std::array< const char *, NUM_MISCREGS > MiscRegNames
constexpr enums::RiscvType RV64
constexpr RegClass floatRegClass
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
std::shared_ptr< Request > RequestPtr
constexpr char CCRegClassName[]
constexpr char VecPredRegClassName[]
Tick curTick()
The universal simulation clock.
std::ostream CheckpointOut
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
constexpr char VecRegClassName[]
constexpr char MatRegClassName[]
@ MatRegClass
Matrix Register.
@ CCRegClass
Condition-code register.
@ VecRegClass
Vector Register.
@ VecElemClass
Vector Register Native Elem lane.
constexpr char VecElemClassName[]
Declaration of the Packet class.
Declaration of a request, the overall memory request consisting of the parts of the request that are ...