gem5  v19.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Public Member Functions | Protected Member Functions | Protected Attributes | Private Attributes | Friends | List of all members
SlavePort Class Referenceabstract

A SlavePort is a specialisation of a port. More...

#include <port.hh>

Inheritance diagram for SlavePort:
Port AtomicResponseProtocol TimingResponseProtocol FunctionalResponseProtocol AddrMapper::MapperSlavePort Bridge::BridgeSlavePort CommMonitor::MonitorSlavePort DRAMSim2::MemoryPort ExternalSlave::ExternalPort LdsState::CuSidePort MemCheckerMonitor::MonitorSlavePort QueuedSlavePort sc_gem5::Gem5ToTlmBridge< BITWIDTH >::BridgeSlavePort SerialLink::SerialLinkSlavePort SimpleCache::CPUSidePort SimpleMemobj::CPUSidePort SimpleMemory::MemoryPort TLBCoalescer::CpuSidePort X86ISA::GpuTLB::CpuSidePort

Public Member Functions

 SlavePort (const std::string &name, SimObject *_owner, PortID id=InvalidPortID)
 Slave port. More...
 
virtual ~SlavePort ()
 
bool isSnooping () const
 Find out if the peer master port is snooping or not. More...
 
void sendRangeChange () const
 Called by the owner to send a range change. More...
 
virtual AddrRangeList getAddrRanges () const =0
 Get a list of the non-overlapping address ranges the owner is responsible for. More...
 
void unbind () override
 We let the master port do the work, so these don't do anything. More...
 
void bind (Port &peer) override
 Attach to a peer port. More...
 
Tick sendAtomicSnoop (PacketPtr pkt)
 Send an atomic snoop request packet, where the data is moved and the state is updated in zero time, without interleaving with other memory accesses. More...
 
void sendFunctionalSnoop (PacketPtr pkt) const
 Send a functional snoop request packet, where the data is instantly updated everywhere in the memory system, without affecting the current state of any block or moving the block. More...
 
bool sendTimingResp (PacketPtr pkt)
 Attempt to send a timing response to the master port by calling its corresponding receive function. More...
 
void sendTimingSnoopReq (PacketPtr pkt)
 Attempt to send a timing snoop request packet to the master port by calling its corresponding receive function. More...
 
void sendRetryReq ()
 Send a retry to the master port that previously attempted a sendTimingReq to this slave port and failed. More...
 
void sendRetrySnoopResp ()
 Send a retry to the master port that previously attempted a sendTimingSnoopResp to this slave port and failed. More...
 
- Public Member Functions inherited from Port
virtual ~Port ()
 Virtual destructor due to inheritance. More...
 
PortgetPeer ()
 Return a reference to this port's peer. More...
 
const std::string name () const
 Return port name (for DPRINTF). More...
 
PortID getId () const
 Get the port id. More...
 
bool isConnected () const
 Is this port currently connected to a peer? More...
 
void takeOverFrom (Port *old)
 A utility function to make it easier to swap out ports. More...
 

Protected Member Functions

void slaveUnbind ()
 Called by the master port to unbind. More...
 
void slaveBind (MasterPort &master_port)
 Called by the master port to bind. More...
 
Tick recvAtomicBackdoor (PacketPtr pkt, MemBackdoorPtr &backdoor) override
 Default implementations. More...
 
bool tryTiming (PacketPtr pkt) override
 Availability request from the peer. More...
 
bool recvTimingSnoopResp (PacketPtr pkt) override
 Receive a timing snoop response from the peer. More...
 
- Protected Member Functions inherited from Port
 Port (const std::string &_name, PortID _id)
 Abstract base class for ports. More...
 
- Protected Member Functions inherited from AtomicResponseProtocol
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, without interleaving with other memory accesses. More...
 
virtual Tick recvAtomic (PacketPtr pkt)=0
 Receive an atomic request packet from the peer. More...
 
- Protected Member Functions inherited from TimingResponseProtocol
bool sendResp (TimingRequestProtocol *peer, PacketPtr pkt)
 Attempt to send a timing response to the peer by calling its corresponding receive function. More...
 
void sendSnoopReq (TimingRequestProtocol *peer, PacketPtr pkt)
 Attempt to send a timing snoop request packet to the peer by calling its corresponding receive function. More...
 
void sendRetryReq (TimingRequestProtocol *peer)
 Send a retry to the peer that previously attempted a sendTimingReq to this protocol and failed. More...
 
void sendRetrySnoopResp (TimingRequestProtocol *peer)
 Send a retry to the peer that previously attempted a sendTimingSnoopResp to this peer and failed. More...
 
virtual bool recvTimingReq (PacketPtr pkt)=0
 Receive a timing request from the peer. More...
 
virtual void recvRespRetry ()=0
 Called by the peer if sendTimingResp was called on this protocol (causing recvTimingResp to be called on the peer) and was unsuccessful. More...
 
- Protected Member Functions inherited from FunctionalResponseProtocol
void sendSnoop (FunctionalRequestProtocol *peer, PacketPtr pkt) const
 Send a functional snoop request packet, where the data is instantly updated everywhere in the memory system, without affecting the current state of any block or moving the block. More...
 
virtual void recvFunctional (PacketPtr pkt)=0
 Receive a functional request packet from the peer. More...
 

Protected Attributes

SimObjectowner
 
- Protected Attributes inherited from Port
const PortID id
 A numeric identifier to distinguish ports in a vector, and set to InvalidPortID in case this port is not part of a vector. More...
 
Port_peer
 A pointer to this port's peer. More...
 
bool _connected
 Whether this port is currently connected to a peer port. More...
 

Private Attributes

MasterPort_masterPort
 
bool defaultBackdoorWarned
 

Friends

class MasterPort
 

Detailed Description

A SlavePort is a specialisation of a port.

In addition to the basic functionality of sending packets to its master peer, it also has functions specific to a slave, e.g. to send range changes and get the address ranges that the port responds to.

The three protocols are atomic, timing, and functional, each with its own header file.

Definition at line 258 of file port.hh.

Constructor & Destructor Documentation

◆ SlavePort()

SlavePort::SlavePort ( const std::string &  name,
SimObject _owner,
PortID  id = InvalidPortID 
)

Slave port.

Definition at line 114 of file port.cc.

◆ ~SlavePort()

SlavePort::~SlavePort ( )
virtual

Definition at line 120 of file port.cc.

Member Function Documentation

◆ bind()

void SlavePort::bind ( Port peer)
inlineoverridevirtual

Attach to a peer port.

Reimplemented from Port.

Definition at line 306 of file port.hh.

◆ getAddrRanges()

virtual AddrRangeList SlavePort::getAddrRanges ( ) const
pure virtual

◆ isSnooping()

bool SlavePort::isSnooping ( ) const
inline

◆ recvAtomicBackdoor()

Tick SlavePort::recvAtomicBackdoor ( PacketPtr  pkt,
MemBackdoorPtr backdoor 
)
overrideprotectedvirtual

◆ recvTimingSnoopResp()

bool SlavePort::recvTimingSnoopResp ( PacketPtr  pkt)
inlineoverrideprotectedvirtual

Receive a timing snoop response from the peer.

Implements TimingResponseProtocol.

Reimplemented in sc_gem5::Gem5ToTlmBridge< BITWIDTH >::BridgeSlavePort.

Definition at line 420 of file port.hh.

References Port::name(), and panic.

◆ sendAtomicSnoop()

Tick SlavePort::sendAtomicSnoop ( PacketPtr  pkt)
inline

Send an atomic snoop request packet, where the data is moved and the state is updated in zero time, without interleaving with other memory accesses.

Parameters
pktSnoop packet to send.
Returns
Estimated latency of access.

Definition at line 321 of file port.hh.

References AtomicResponseProtocol::sendSnoop().

Referenced by Cache::handleSnoop(), Cache::isCachedAbove(), MemDelay::MasterPort::recvAtomicSnoop(), AddrMapper::recvAtomicSnoop(), and CommMonitor::recvAtomicSnoop().

◆ sendFunctionalSnoop()

void SlavePort::sendFunctionalSnoop ( PacketPtr  pkt) const
inline

Send a functional snoop request packet, where the data is instantly updated everywhere in the memory system, without affecting the current state of any block or moving the block.

Parameters
pktSnoop packet to send.

Definition at line 337 of file port.hh.

References FunctionalResponseProtocol::sendSnoop().

Referenced by BaseCache::functionalAccess(), MemDelay::MasterPort::recvFunctionalSnoop(), MemCheckerMonitor::recvFunctionalSnoop(), AddrMapper::recvFunctionalSnoop(), and CommMonitor::recvFunctionalSnoop().

◆ sendRangeChange()

void SlavePort::sendRangeChange ( ) const
inline

◆ sendRetryReq()

void SlavePort::sendRetryReq ( )
inline

◆ sendRetrySnoopResp()

void SlavePort::sendRetrySnoopResp ( )
inline

Send a retry to the master port that previously attempted a sendTimingSnoopResp to this slave port and failed.

Definition at line 390 of file port.hh.

References TimingResponseProtocol::sendRetrySnoopResp().

Referenced by CommMonitor::recvRetrySnoopResp(), BaseXBar::SnoopRespLayer::sendRetry(), and CoherentXBar::SnoopRespPort::sendRetryResp().

◆ sendTimingResp()

bool SlavePort::sendTimingResp ( PacketPtr  pkt)
inline

Attempt to send a timing response to the master port by calling its corresponding receive function.

If the send does not succeed, as indicated by the return value, then the sender must wait for a recvRespRetry at which point it can re-issue a sendTimingResp.

Parameters
pktPacket to send.
Returns
If the send was succesful or not.

Definition at line 357 of file port.hh.

References TimingResponseProtocol::sendResp().

Referenced by SimpleMemory::dequeue(), LdsState::process(), StubSlavePort::processResponseEvent(), MemCheckerMonitor::recvTimingResp(), AddrMapper::recvTimingResp(), CommMonitor::recvTimingResp(), DRAMSim2::sendResponse(), RespPacketQueue::sendTiming(), and TLBCoalescer::updatePhysAddresses().

◆ sendTimingSnoopReq()

void SlavePort::sendTimingSnoopReq ( PacketPtr  pkt)
inline

Attempt to send a timing snoop request packet to the master port by calling its corresponding receive function.

Snoop requests always succeed and hence no return value is needed.

Parameters
pktPacket to send.

Definition at line 370 of file port.hh.

References TimingResponseProtocol::sendSnoopReq().

Referenced by Cache::handleSnoop(), Cache::isCachedAbove(), MemDelay::MasterPort::recvTimingSnoopReq(), MemCheckerMonitor::recvTimingSnoopReq(), AddrMapper::recvTimingSnoopReq(), CommMonitor::recvTimingSnoopReq(), and Cache::sendMSHRQueuePacket().

◆ slaveBind()

void SlavePort::slaveBind ( MasterPort master_port)
protected

Called by the master port to bind.

Should never be called directly.

Definition at line 132 of file port.cc.

References _masterPort, and Port::bind().

◆ slaveUnbind()

void SlavePort::slaveUnbind ( )
protected

Called by the master port to unbind.

Should never be called directly.

Definition at line 125 of file port.cc.

References _masterPort, and Port::unbind().

Referenced by MasterPort::unbind().

◆ tryTiming()

bool SlavePort::tryTiming ( PacketPtr  pkt)
inlineoverrideprotectedvirtual

Availability request from the peer.

Implements TimingResponseProtocol.

Reimplemented in sc_gem5::Gem5ToTlmBridge< BITWIDTH >::BridgeSlavePort.

Definition at line 414 of file port.hh.

References Port::name(), and panic.

◆ unbind()

void SlavePort::unbind ( )
inlineoverridevirtual

We let the master port do the work, so these don't do anything.

Reimplemented from Port.

Definition at line 305 of file port.hh.

Friends And Related Function Documentation

◆ MasterPort

friend class MasterPort
friend

Definition at line 261 of file port.hh.

Member Data Documentation

◆ _masterPort

MasterPort* SlavePort::_masterPort
private

Definition at line 264 of file port.hh.

Referenced by slaveBind(), and slaveUnbind().

◆ defaultBackdoorWarned

bool SlavePort::defaultBackdoorWarned
private

Definition at line 265 of file port.hh.

Referenced by recvAtomicBackdoor().

◆ owner

SimObject& SlavePort::owner
protected

The documentation for this class was generated from the following files:

Generated on Fri Feb 28 2020 16:27:16 for gem5 by doxygen 1.8.13