Go to the documentation of this file.
49 #include "debug/Checkpoint.hh"
50 #include "debug/LLSC.hh"
51 #include "debug/RiscvMisc.hh"
54 #include "params/RiscvISA.hh"
63 [[maybe_unused]]
const std::array<const char *, NUM_MISCREGS>
MiscRegNames = {{
252 if (hpmcounter < 0 || hpmcounter > 31)
253 panic(
"Illegal HPM counter %d\n", hpmcounter);
268 return (
miscRegFile[counteren] & (1ULL << (hpmcounter))) > 0;
276 panic(
"Illegal CSR index %#x\n", misc_reg);
279 DPRINTF(RiscvMisc,
"Reading MiscReg %s (%d): %#x.\n",
292 DPRINTF(RiscvMisc,
"Cycle counter at: %llu.\n",
296 warn(
"Cycle counter disabled.\n");
301 DPRINTF(RiscvMisc,
"Wall-clock counter at: %llu.\n",
305 warn(
"Wall clock disabled.\n");
310 DPRINTF(RiscvMisc,
"Instruction counter at: %llu.\n",
314 warn(
"Instruction counter disabled.\n");
347 DPRINTF(RiscvMisc,
"HPM counter %d: %llu.\n",
364 panic(
"Illegal CSR index %#x\n", misc_reg);
366 DPRINTF(RiscvMisc,
"Setting MiscReg %s (%d) to %#x.\n",
376 warn(
"Ignoring write to %s.\n",
CSRData.at(misc_reg).name);
398 for (
int i=0;
i <
sizeof(
val);
i++) {
400 uint8_t cfg_val = (
val >> (8*
i)) & 0xff;
410 mmu->getPMP()->pmpUpdateCfg(pmp_index,cfg_val);
424 mmu->getPMP()->pmpUpdateAddr(pmp_index,
val);
450 if (new_val.mode != AddrXlateMode::BARE &&
451 new_val.mode != AddrXlateMode::SV39)
452 new_val.mode = cur_val.mode;
494 DPRINTF(Checkpoint,
"Serializing Riscv Misc Registers\n");
501 DPRINTF(Checkpoint,
"Unserializing Riscv Misc Registers\n");
516 if (locked_addr_stack.empty())
519 DPRINTF(LLSC,
"Locked snoop on address %x.\n", snoop_addr);
520 if ((locked_addr_stack.top() & cacheBlockMask) == snoop_addr)
521 locked_addr_stack.pop();
530 locked_addr_stack.push(req->getPaddr() & ~0xF);
531 DPRINTF(LLSC,
"[cid:%d]: Reserved address %x.\n",
532 req->contextId(), req->getPaddr() & ~0xF);
545 DPRINTF(LLSC,
"[cid:%d]: locked_addrs empty? %s.\n", req->contextId(),
546 locked_addr_stack.empty() ?
"yes" :
"no");
547 if (!locked_addr_stack.empty()) {
548 DPRINTF(LLSC,
"[cid:%d]: addr = %x.\n", req->contextId(),
549 req->getPaddr() & ~0xF);
550 DPRINTF(LLSC,
"[cid:%d]: last locked addr = %x.\n", req->contextId(),
551 locked_addr_stack.top());
553 if (locked_addr_stack.empty()
554 || locked_addr_stack.top() != ((req->getPaddr() & ~0xF))) {
555 req->setExtraData(0);
559 warn(
"%i: context %d: %d consecutive SC failures.\n",
564 if (req->isUncacheable()) {
565 req->setExtraData(2);
virtual void setIntReg(RegIndex reg_idx, RegVal val)=0
Tick curTick()
The universal simulation clock.
const std::map< int, CSRMetadata > CSRData
virtual RegVal readFloatReg(RegIndex reg_idx) const =0
bool inUserMode() const override
#define UNSERIALIZE_CONTAINER(member)
void copyRegsFrom(ThreadContext *src) override
virtual BaseMMU * getMMUPtr()=0
virtual const PCStateBase & pcState() const =0
virtual ContextID contextId() const =0
constexpr T mbits(T val, unsigned first, unsigned last)
Mask off the given bits in place like bits() but without shifting.
std::unordered_map< int, std::stack< Addr > > locked_addrs
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.
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.
virtual void setFloatReg(RegIndex reg_idx, RegVal val)=0
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.
virtual RegVal readIntReg(RegIndex reg_idx) const =0
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
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
#define panic(...)
This implements a cprintf based panic() function.
void setMiscRegNoEffect(int misc_reg, RegVal val)
Generated on Wed May 4 2022 12:13:45 for gem5 by doxygen 1.8.17