Go to the documentation of this file.
49 #include "debug/Checkpoint.hh"
50 #include "debug/FloatRegs.hh"
51 #include "debug/IntRegs.hh"
52 #include "debug/LLSC.hh"
53 #include "debug/MiscRegs.hh"
54 #include "debug/RiscvMisc.hh"
57 #include "params/RiscvISA.hh"
66 [[maybe_unused]]
const std::array<const char *, NUM_MISCREGS>
MiscRegNames = {{
255 if (hpmcounter < 0 || hpmcounter > 31)
256 panic(
"Illegal HPM counter %d\n", hpmcounter);
271 return (
miscRegFile[counteren] & (1ULL << (hpmcounter))) > 0;
279 panic(
"Illegal CSR index %#x\n", misc_reg);
282 DPRINTF(RiscvMisc,
"Reading MiscReg %s (%d): %#x.\n",
295 DPRINTF(RiscvMisc,
"Cycle counter at: %llu.\n",
299 warn(
"Cycle counter disabled.\n");
304 DPRINTF(RiscvMisc,
"Wall-clock counter at: %llu.\n",
308 warn(
"Wall clock disabled.\n");
313 DPRINTF(RiscvMisc,
"Instruction counter at: %llu.\n",
317 warn(
"Instruction counter disabled.\n");
350 DPRINTF(RiscvMisc,
"HPM counter %d: %llu.\n",
367 panic(
"Illegal CSR index %#x\n", misc_reg);
369 DPRINTF(RiscvMisc,
"Setting MiscReg %s (%d) to %#x.\n",
379 warn(
"Ignoring write to %s.\n",
CSRData.at(misc_reg).name);
401 for (
int i=0;
i <
sizeof(
val);
i++) {
403 uint8_t cfg_val = (
val >> (8*
i)) & 0xff;
413 mmu->getPMP()->pmpUpdateCfg(pmp_index,cfg_val);
427 mmu->getPMP()->pmpUpdateAddr(pmp_index,
val);
453 if (new_val.mode != AddrXlateMode::BARE &&
454 new_val.mode != AddrXlateMode::SV39)
455 new_val.mode = cur_val.mode;
497 DPRINTF(Checkpoint,
"Serializing Riscv Misc Registers\n");
504 DPRINTF(Checkpoint,
"Unserializing Riscv Misc Registers\n");
521 DPRINTF(LLSC,
"Locked snoop on address %x.\n", snoop_addr);
522 if ((load_reservation_addr & cacheBlockMask) == snoop_addr)
532 load_reservation_addr = req->getPaddr() & ~0xF;
533 DPRINTF(LLSC,
"[cid:%d]: Reserved address %x.\n",
534 req->contextId(), req->getPaddr() & ~0xF);
548 DPRINTF(LLSC,
"[cid:%d]: load_reservation_addrs empty? %s.\n",
550 lr_addr_empty ?
"yes" :
"no");
551 if (!lr_addr_empty) {
552 DPRINTF(LLSC,
"[cid:%d]: addr = %x.\n", req->contextId(),
553 req->getPaddr() & ~0xF);
554 DPRINTF(LLSC,
"[cid:%d]: last locked addr = %x.\n", req->contextId(),
555 load_reservation_addr);
558 || load_reservation_addr != ((req->getPaddr() & ~0xF))) {
559 req->setExtraData(0);
563 warn(
"%i: context %d: %d consecutive SC failures.\n",
568 if (req->isUncacheable()) {
569 req->setExtraData(2);
589 return os <<
"PRV_U";
591 return os <<
"PRV_S";
593 return os <<
"PRV_M";
595 return os <<
"PRV_<invalid>";
Tick curTick()
The universal simulation clock.
RegVal readFloatReg(RegIndex reg_idx) const
const std::map< int, CSRMetadata > CSRData
bool inUserMode() const override
#define UNSERIALIZE_CONTAINER(member)
void copyRegsFrom(ThreadContext *src) override
virtual BaseMMU * getMMUPtr()=0
virtual const PCStateBase & pcState() const =0
std::ostream & operator<<(std::ostream &os, gem5::RiscvISA::PrivilegeMode pm)
virtual ContextID contextId() const =0
const Addr INVALID_RESERVATION_ADDR
constexpr T mbits(T val, unsigned first, unsigned last)
Mask off the given bits in place like bits() but without shifting.
const RegVal STATUS_UXL_MASK
RegVal readMiscReg(int misc_reg)
ThreadContext is the external interface to all thread state for anything outside of the CPU.
RegVal readIntReg(RegIndex reg_idx) const
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
void unserialize(CheckpointIn &cp) override
Unserialize an object.
const RegVal STATUS_SXL_MASK
std::shared_ptr< Request > RequestPtr
RegVal readMiscRegNoEffect(int misc_reg) const
constexpr T bits(T val, unsigned first, unsigned last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it.
std::vector< RegVal > miscRegFile
virtual unsigned readStCondFailures() const =0
void handleLockedRead(const RequestPtr &req) override
void handleLockedSnoop(PacketPtr pkt, Addr cacheBlockMask) override
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
void serialize(CheckpointOut &cp) const override
Serialize an object.
#define SERIALIZE_CONTAINER(member)
void globalClearExclusive() override
const std::array< const char *, NUM_MISCREGS > MiscRegNames
std::ostream CheckpointOut
void setMiscReg(int misc_reg, RegVal val)
virtual BaseCPU * getCpuPtr()=0
virtual int threadId() const =0
void setFloatReg(RegIndex reg_idx, RegVal val)
bool handleLockedWrite(const RequestPtr &req, Addr cacheBlockMask) override
virtual void setStCondFailures(unsigned sc_failures)=0
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
const RegVal ISA_EXT_C_MASK
bool hpmCounterEnabled(int counter) const
void setIntReg(RegIndex reg_idx, RegVal val)
#define panic(...)
This implements a cprintf based panic() function.
void setMiscRegNoEffect(int misc_reg, RegVal val)
std::unordered_map< int, Addr > load_reservation_addrs
Generated on Thu Jun 16 2022 10:41:35 for gem5 by doxygen 1.8.17