47 #ifndef __MEM_BRIDGE_HH__ 48 #define __MEM_BRIDGE_HH__ 54 #include "params/Bridge.hh" 146 bool respQueueFull()
const;
153 void trySendTiming();
188 void retryStalledReq();
198 void recvRespRetry();
251 void trySendTiming();
276 bool reqQueueFull()
const;
319 void init()
override;
326 #endif //__MEM_BRIDGE_HH__ A MasterPort is a specialisation of a BaseMasterPort, which implements the default protocol for the t...
Ports are used to interface objects to each other.
bool retryReq
If we should send a retry when space becomes available.
Bridge & bridge
The bridge to which this port belongs.
Cycles is a wrapper class for representing cycle counts, i.e.
const PortID InvalidPortID
const Cycles delay
Minimum request delay though this bridge.
unsigned int outstandingResponses
Counter to track the outstanding responses.
const AddrRangeList ranges
Address ranges to pass through the bridge.
A SlavePort is a specialisation of a port.
std::deque< DeferredPacket > transmitList
Request packet queue.
BridgeMasterPort & masterPort
Master port on the other side of the bridge.
uint64_t Tick
Tick count type.
BridgeMasterPort masterPort
Master port of the bridge.
BridgeSlavePort slavePort
Slave port of the bridge.
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
ClockedObject declaration and implementation.
EventFunctionWrapper sendEvent
Send event for the request queue.
std::deque< DeferredPacket > transmitList
Response packet queue.
const unsigned int reqQueueLimit
Max queue size for request packets.
A deferred packet stores a packet along with its scheduled transmission time.
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
The port on the side that receives requests and sends responses.
EventFunctionWrapper sendEvent
Send event for the response queue.
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
unsigned int respQueueLimit
Max queue size for reserved responses.
A bridge is used to interface two different crossbars (or in general a memory-mapped master and slave...
Port on the side that forwards requests and receives responses.
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
BridgeSlavePort & slavePort
The slave port on the other side of the bridge.
DeferredPacket(PacketPtr _pkt, Tick _tick)
const Cycles delay
Minimum delay though this bridge.
Bridge & bridge
The bridge to which this port belongs.
std::unique_ptr< Packet > pendingDelete
Upstream caches need this packet until true is returned, so hold it for deletion until a subsequent c...