Go to the documentation of this file.
56 class DefaultRequestPort :
public RequestPort
62 throw UnboundPortException();
66 DefaultRequestPort() : RequestPort(
"default_request_port", nullptr) {}
72 bool recvTimingResp(
PacketPtr)
override { blowUp(); }
73 void recvTimingSnoopReq(
PacketPtr)
override { blowUp(); }
74 void recvReqRetry()
override { blowUp(); }
75 void recvRetrySnoopResp()
override { blowUp(); }
78 void recvFunctionalSnoop(
PacketPtr)
override { blowUp(); }
81 class DefaultResponsePort :
public ResponsePort
87 throw UnboundPortException();
91 DefaultResponsePort() : ResponsePort(
"default_response_port", nullptr) {}
97 bool recvTimingReq(
PacketPtr)
override { blowUp(); }
98 bool tryTiming(
PacketPtr)
override { blowUp(); }
99 bool recvTimingSnoopResp(
PacketPtr)
override { blowUp(); }
100 void recvRespRetry()
override { blowUp(); }
103 void recvFunctional(
PacketPtr)
override { blowUp(); }
109 DefaultRequestPort defaultRequestPort;
110 DefaultResponsePort defaultResponsePort;
118 PortID _id) :
Port(
name, _id), _responsePort(&defaultResponsePort),
130 auto *response_port =
dynamic_cast<ResponsePort *
>(&peer);
131 fatal_if(!response_port,
"Can't bind port %s to non-response port %s.",
144 "not bound.",
name());
159 auto req = std::make_shared<Request>(
174 defaultBackdoorWarned(false), owner(*_owner)
200 warn(
"Port %s doesn't support requesting a back door.",
name());
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
void unbind() override
Unbind this request port and the associated response port.
const std::string name() const
Return port name (for DPRINTF).
void bind(Port &peer) override
Bind this request port to a response port.
RequestPort * _requestPort
std::list< AddrRange > AddrRangeList
Convenience typedef for a collection of address ranges.
RequestPort(const std::string &name, SimObject *_owner, PortID id=InvalidPortID)
Request port.
void responderUnbind()
Called by the request port to unbind.
virtual void bind(Port &peer)
Attach to a peer port.
A RequestPort is a specialisation of a Port, which implements the default protocol for the three diff...
void sendFunctional(PacketPtr pkt) const
Send a functional request packet, where the data is instantly updated everywhere in the memory system...
void responderBind(RequestPort &request_port)
Called by the request port to bind.
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
uint64_t Tick
Tick count type.
virtual Tick recvAtomic(PacketPtr pkt)=0
Receive an atomic request packet from the peer.
bool isConnected() const
Is this port currently connected to a peer?
AddrRangeList getAddrRanges() const
Get the address ranges of the connected responder port.
Abstract superclass for simulation objects.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
SenderState * senderState
This packet's sender state.
const std::string & name()
ResponsePort(const std::string &name, SimObject *_owner, PortID id=InvalidPortID)
Response port.
virtual void unbind()
Dettach from a peer port.
virtual AddrRangeList getAddrRanges() const =0
Get a list of the non-overlapping address ranges the owner is responsible for.
A ResponsePort is a specialization of a port.
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
@ funcRequestorId
This requestor id is used for functional requests that don't come from a particular device.
Ports are used to interface objects to each other.
ResponsePort * _responsePort
bool defaultBackdoorWarned
Tick recvAtomicBackdoor(PacketPtr pkt, MemBackdoorPtr &backdoor) override
Default implementations.
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
void printAddr(Addr a)
Inject a PrintReq for the given address to print the state of that address throughout the memory syst...
Object used to maintain state of a PrintReq.
Generated on Tue Sep 7 2021 14:53:48 for gem5 by doxygen 1.8.17