46 #ifndef __MEM_PORT_HH__ 47 #define __MEM_PORT_HH__ 222 panic(
"%s was not expecting an atomic snoop request\n",
name());
229 panic(
"%s was not expecting a functional snoop request\n",
name());
235 panic(
"%s was not expecting a timing snoop request.\n",
name());
241 panic(
"%s was not expecting a snoop retry.\n",
name());
285 "%s cannot sendRangeChange() without master port.",
name());
412 panic(
"%s was not expecting a %s\n",
name(), __func__);
418 panic(
"%s was not expecting a timing snoop response\n",
name());
464 #endif //__MEM_PORT_HH__ A MasterPort is a specialisation of a BaseMasterPort, which implements the default protocol for the t...
#define panic(...)
This implements a cprintf based panic() function.
virtual bool isSnooping() const
Determine if this master port is snooping or not.
Ports are used to interface objects to each other.
bool sendSnoopResp(TimingResponseProtocol *peer, PacketPtr pkt)
Attempt to send a timing snoop response packet to it's peer by calling its corresponding receive func...
void sendRangeChange() const
Called by the owner to send a range change.
virtual void recvRangeChange()
Called to receive an address range change from the peer slave port.
Tick recvAtomicSnoop(PacketPtr pkt) override
Default implementations.
const PortID InvalidPortID
void recvFunctionalSnoop(PacketPtr pkt) override
Receive a functional snoop request packet from the peer.
void sendRetryReq(TimingRequestProtocol *peer)
Send a retry to the peer that previously attempted a sendTimingReq to this protocol and failed...
bool defaultBackdoorWarned
bool sendTimingSnoopResp(PacketPtr pkt)
Attempt to send a timing snoop response packet to the slave port by calling its corresponding receive...
bool tryTiming(PacketPtr pkt) const
Check if the slave can handle a timing request.
Tick sendAtomicSnoop(PacketPtr pkt)
Send an atomic snoop request packet, where the data is moved and the state is updated in zero time...
void recvRetrySnoopResp() override
Called by the peer if sendTimingSnoopResp was called on this protocol (causing recvTimingSnoopResp to...
Tick sendAtomicBackdoor(PacketPtr pkt, MemBackdoorPtr &backdoor)
Send an atomic request packet like above, but also request a backdoor to the data being accessed...
void sendRetryResp(TimingResponseProtocol *peer)
Send a retry to the peer that previously attempted a sendTimingResp to this protocol and failed...
bool sendTimingReq(PacketPtr pkt)
Attempt to send a timing request to the slave port by calling its corresponding receive function...
A SlavePort is a specialisation of a port.
virtual void sendRetryResp()
Send a retry to the slave port that previously attempted a sendTimingResp to this master port and fai...
MasterPort(const std::string &name, SimObject *_owner, PortID id=InvalidPortID)
Master port.
void sendSnoopReq(TimingRequestProtocol *peer, PacketPtr pkt)
Attempt to send a timing snoop request packet to the peer by calling its corresponding receive functi...
void sendRetrySnoopResp()
Send a retry to the master port that previously attempted a sendTimingSnoopResp to this slave port an...
void unbind() override
We let the master port do the work, so these don't do anything.
void sendFunctionalSnoop(PacketPtr pkt) const
Send a functional snoop request packet, where the data is instantly updated everywhere in the memory ...
bool sendTimingResp(PacketPtr pkt)
Attempt to send a timing response to the master port by calling its corresponding receive function...
void sendSnoop(FunctionalRequestProtocol *peer, PacketPtr pkt) const
Send a functional snoop request packet, where the data is instantly updated everywhere in the memory ...
bool sendReq(TimingResponseProtocol *peer, PacketPtr pkt)
Attempt to send a timing request to the peer by calling its corresponding receive function...
void sendRetrySnoopResp(TimingRequestProtocol *peer)
Send a retry to the peer that previously attempted a sendTimingSnoopResp to this peer and failed...
Tick sendSnoop(AtomicRequestProtocol *peer, PacketPtr pkt)
Send an atomic snoop request packet, where the data is moved and the state is updated in zero time...
uint64_t Tick
Tick count type.
bool sendResp(TimingRequestProtocol *peer, PacketPtr pkt)
Attempt to send a timing response to the peer by calling its corresponding receive function...
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
void bind(Port &peer) override
Bind this master port to a slave port.
bool isSnooping() const
Find out if the peer master port is snooping or not.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
void printAddr(Addr a)
Inject a PrintReq for the given address to print the state of that address throughout the memory syst...
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
void recvTimingSnoopReq(PacketPtr pkt) override
Receive a timing snoop request from the peer.
bool tryTiming(PacketPtr pkt) override
Availability request from the peer.
bool trySend(TimingResponseProtocol *peer, PacketPtr pkt) const
Check if the peer can handle a timing request.
void bind(Port &peer) override
Attach to a peer port.
AddrRangeList getAddrRanges() const
Get the address ranges of the connected slave port.
Declaration of the Packet class.
void sendRetryReq()
Send a retry to the master port that previously attempted a sendTimingReq to this slave port and fail...
const std::string name() const
Return port name (for DPRINTF).
void send(FunctionalResponseProtocol *peer, PacketPtr pkt) const
Send a functional request packet, where the data is instantly updated everywhere in the memory system...
void sendTimingSnoopReq(PacketPtr pkt)
Attempt to send a timing snoop request packet to the master port by calling its corresponding receive...
Tick send(AtomicResponseProtocol *peer, PacketPtr pkt)
Send an atomic request packet, where the data is moved and the state is updated in zero time...
void sendFunctional(PacketPtr pkt) const
Send a functional request packet, where the data is instantly updated everywhere in the memory system...
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
void unbind() override
Unbind this master port and the associated slave port.
bool recvTimingSnoopResp(PacketPtr pkt) override
Receive a timing snoop response from the peer.
Tick sendAtomic(PacketPtr pkt)
Send an atomic request packet, where the data is moved and the state is updated in zero time...
Abstract superclass for simulation objects.
Tick sendBackdoor(AtomicResponseProtocol *peer, PacketPtr pkt, MemBackdoorPtr &backdoor)
Send an atomic request packet like above, but also request a backdoor to the data being accessed...