50 :
SimObject(p), _stage1Tlb(p->
tlb), _stage2Tlb(p->stage2_tlb),
51 port(_stage1Tlb->getTableWalker(), p->sys),
52 masterId(p->sys->getMasterId(_stage1Tlb->getTableWalker()))
68 auto req = std::make_shared<Request>();
110 uint8_t *_data,
Event *_event,
Addr _oVAddr)
111 :
data(_data), numBytes(0),
event(_event), parent(_parent), oVAddr(_oVAddr),
114 req = std::make_shared<Request>();
144 ArmStage2MMUParams::create()
decltype(nullptr) constexpr NoFault
DmaPort & getDMAPort()
Get the port that ultimately belongs to the stage-two MMU, but is used by the two table walkers...
std::shared_ptr< Request > RequestPtr
virtual BaseCPU * getCpuPtr()=0
DmaPort port
Port to issue translation requests from.
ThreadContext is the external interface to all thread state for anything outside of the CPU...
void dataStatic(T *p)
Set the data pointer to the following value that should not be freed.
The request is a page table walk.
virtual void annotate(AnnotationIDs id, uint64_t val)
void translateTiming(ThreadContext *tc)
Fault readDataUntimed(ThreadContext *tc, Addr oVAddr, Addr descAddr, uint8_t *data, int numBytes, Request::Flags flags, bool isFunctional)
bool translateFunctional(ThreadContext *tc, Addr vaddr, Addr &paddr)
Do a functional lookup on the TLB (for debugging) and don't modify any internal state.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Stage2MMU(const Params *p)
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
ArmStage2MMUParams Params
RequestPtr dmaAction(Packet::Command cmd, Addr addr, int size, Event *event, uint8_t *data, Tick delay, Request::Flags flag=0)
This translation class is used to trigger the data fetch once a timing translation returns the transl...
The request should not cause a memory access.
Stage2Translation(Stage2MMU &_parent, uint8_t *_data, Event *_event, Addr _oVAddr)
void setMMU(Stage2MMU *m, MasterID master_id)
void finish(const Fault &fault, const RequestPtr &req, ThreadContext *tc, BaseTLB::Mode mode)
void setVirt(Addr vaddr, int size, Request::Flags flags, int masterId)
void sendFunctional(PacketPtr pkt) const
Send a functional request packet, where the data is instantly updated everywhere in the memory system...
void readDataTimed(ThreadContext *tc, Addr descAddr, Stage2Translation *translation, int numBytes, Request::Flags flags)
Tick sendAtomic(PacketPtr pkt)
Send an atomic request packet, where the data is moved and the state is updated in zero time...
std::shared_ptr< FaultBase > Fault
Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, Mode mode, ArmTranslationType tranType)
Abstract superclass for simulation objects.
ProbePointArg< PacketInfo > Packet
Packet probe point.
MasterID masterId
Request id for requests generated by this MMU.