gem5
v20.0.0.0
|
#include <dma_device.hh>
Classes | |
struct | DmaReqState |
Public Member Functions | |
DmaPort (ClockedObject *dev, System *s, uint32_t sid=0, uint32_t ssid=0) | |
RequestPtr | dmaAction (Packet::Command cmd, Addr addr, int size, Event *event, uint8_t *data, Tick delay, Request::Flags flag=0) |
RequestPtr | dmaAction (Packet::Command cmd, Addr addr, int size, Event *event, uint8_t *data, uint32_t sid, uint32_t ssid, Tick delay, Request::Flags flag=0) |
bool | dmaPending () const |
DrainState | drain () override |
Notify an object that it needs to drain its state. More... | |
![]() | |
MasterPort (const std::string &name, SimObject *_owner, PortID id=InvalidPortID) | |
Master port. More... | |
virtual | ~MasterPort () |
void | bind (Port &peer) override |
Bind this master port to a slave port. More... | |
void | unbind () override |
Unbind this master port and the associated slave port. More... | |
virtual bool | isSnooping () const |
Determine if this master port is snooping or not. More... | |
AddrRangeList | getAddrRanges () const |
Get the address ranges of the connected slave port. More... | |
void | printAddr (Addr a) |
Inject a PrintReq for the given address to print the state of that address throughout the memory system. More... | |
Tick | sendAtomic (PacketPtr pkt) |
Send an atomic request packet, where the data is moved and the state is updated in zero time, without interleaving with other memory accesses. More... | |
Tick | sendAtomicBackdoor (PacketPtr pkt, MemBackdoorPtr &backdoor) |
Send an atomic request packet like above, but also request a backdoor to the data being accessed. More... | |
void | sendFunctional (PacketPtr pkt) const |
Send a functional 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 | sendTimingReq (PacketPtr pkt) |
Attempt to send a timing request to the slave port by calling its corresponding receive function. More... | |
bool | tryTiming (PacketPtr pkt) const |
Check if the slave can handle a timing request. More... | |
bool | sendTimingSnoopResp (PacketPtr pkt) |
Attempt to send a timing snoop response packet to the slave port by calling its corresponding receive function. More... | |
virtual void | sendRetryResp () |
Send a retry to the slave port that previously attempted a sendTimingResp to this master port and failed. More... | |
![]() | |
virtual | ~Port () |
Virtual destructor due to inheritance. More... | |
Port & | getPeer () |
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... | |
![]() | |
DrainState | drainState () const |
Return the current drain state of an object. More... | |
virtual void | notifyFork () |
Notify a child process of a fork. More... | |
Public Attributes | |
ClockedObject *const | device |
The device that owns this port. More... | |
System *const | sys |
The system that device/port are in. More... | |
const MasterID | masterId |
Id for all requests. More... | |
Protected Member Functions | |
bool | recvTimingResp (PacketPtr pkt) override |
Receive a timing response from the peer. More... | |
void | recvReqRetry () override |
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on the peer) and was unsuccessful. More... | |
void | queueDma (PacketPtr pkt) |
![]() | |
virtual void | recvRangeChange () |
Called to receive an address range change from the peer slave port. More... | |
Tick | recvAtomicSnoop (PacketPtr pkt) override |
Default implementations. More... | |
void | recvFunctionalSnoop (PacketPtr pkt) override |
Receive a functional snoop request packet from the peer. More... | |
void | recvTimingSnoopReq (PacketPtr pkt) override |
Receive a timing snoop request from the peer. More... | |
void | recvRetrySnoopResp () override |
Called by the peer if sendTimingSnoopResp was called on this protocol (causing recvTimingSnoopResp to be called on the peer) and was unsuccessful. More... | |
![]() | |
Port (const std::string &_name, PortID _id) | |
Abstract base class for ports. More... | |
![]() | |
Tick | send (AtomicResponseProtocol *peer, PacketPtr pkt) |
Send an atomic request packet, where the data is moved and the state is updated in zero time, without interleaving with other memory accesses. More... | |
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. More... | |
![]() | |
bool | sendReq (TimingResponseProtocol *peer, PacketPtr pkt) |
Attempt to send a timing request to the peer by calling its corresponding receive function. More... | |
bool | trySend (TimingResponseProtocol *peer, PacketPtr pkt) const |
Check if the peer can handle a timing request. More... | |
bool | sendSnoopResp (TimingResponseProtocol *peer, PacketPtr pkt) |
Attempt to send a timing snoop response packet to it's peer by calling its corresponding receive function. More... | |
void | sendRetryResp (TimingResponseProtocol *peer) |
Send a retry to the peer that previously attempted a sendTimingResp to this protocol and failed. More... | |
![]() | |
void | send (FunctionalResponseProtocol *peer, PacketPtr pkt) const |
Send a functional 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... | |
![]() | |
Drainable () | |
virtual | ~Drainable () |
virtual void | drainResume () |
Resume execution after a successful drain. More... | |
void | signalDrainDone () const |
Signal that an object is drained. More... | |
Protected Attributes | |
std::deque< PacketPtr > | transmitList |
Use a deque as we never do any insertion or removal in the middle. More... | |
EventFunctionWrapper | sendEvent |
Event used to schedule a future sending from the transmit list. More... | |
uint32_t | pendingCount |
Number of outstanding packets the dma port has. More... | |
bool | inRetry |
If the port is currently waiting for a retry before it can send whatever it is that it's sending. More... | |
const uint32_t | defaultSid |
Default streamId. More... | |
const uint32_t | defaultSSid |
Default substreamId. More... | |
![]() | |
SimObject & | owner |
![]() | |
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 Member Functions | |
void | trySendTimingReq () |
Take the first packet of the transmit list and attempt to send it as a timing request. More... | |
void | sendDma () |
For timing, attempt to send the first item on the transmit list, and if it is successful and there are more packets waiting, then schedule the sending of the next packet. More... | |
void | handleResp (PacketPtr pkt, Tick delay=0) |
Handle a response packet by updating the corresponding DMA request state to reflect the bytes received, and also update the pending request counter. More... | |
Definition at line 55 of file dma_device.hh.
DmaPort::DmaPort | ( | ClockedObject * | dev, |
System * | s, | ||
uint32_t | sid = 0 , |
||
uint32_t | ssid = 0 |
||
) |
Definition at line 52 of file dma_device.cc.
References defaultSid, defaultSSid, inRetry, pendingCount, and sendDma().
RequestPtr DmaPort::dmaAction | ( | Packet::Command | cmd, |
Addr | addr, | ||
int | size, | ||
Event * | event, | ||
uint8_t * | data, | ||
Tick | delay, | ||
Request::Flags | flag = 0 |
||
) |
Definition at line 197 of file dma_device.cc.
Referenced by DmaDevice::dmaRead(), DmaDevice::dmaWrite(), CopyEngine::CopyEngineChannel::fetchDescriptor(), ArmISA::TableWalker::fetchDescriptor(), CopyEngine::CopyEngineChannel::fetchNextAddr(), Pl111::fillFifo(), ArmISA::Stage2MMU::Stage2Translation::finish(), CopyEngine::CopyEngineChannel::readCopyBytes(), UFSHostDevice::readDevice(), DmaReadFifo::resumeFillTiming(), CopyEngine::CopyEngineChannel::writeCompletionStatus(), CopyEngine::CopyEngineChannel::writeCopyBytes(), and UFSHostDevice::writeDevice().
RequestPtr DmaPort::dmaAction | ( | Packet::Command | cmd, |
Addr | addr, | ||
int | size, | ||
Event * | event, | ||
uint8_t * | data, | ||
uint32_t | sid, | ||
uint32_t | ssid, | ||
Tick | delay, | ||
Request::Flags | flag = 0 |
||
) |
Definition at line 148 of file dma_device.cc.
References System::cacheLineSize(), Packet::dataStatic(), ContextSwitchTaskId::DMA, ChunkGenerator::done(), DPRINTF, Event::scheduled(), Packet::senderState, and PioDevice::sys.
|
inline |
Definition at line 160 of file dma_device.hh.
References drain().
Referenced by DmaDevice::dmaPending().
|
overridevirtual |
Notify an object that it needs to drain its state.
If the object does not need further simulation to drain internal buffers, it returns DrainState::Drained and automatically switches to the Drained state. If the object needs more simulation, it returns DrainState::Draining and automatically enters the Draining state. Other return values are invalid.
Implements Drainable.
Definition at line 130 of file dma_device.cc.
References DPRINTF, Drained, and Draining.
Referenced by dmaPending().
Handle a response packet by updating the corresponding DMA request state to reflect the bytes received, and also update the pending request counter.
If the DMA request that this packet is part of is complete, then signal the completion event if present, potentially with a delay added to it.
pkt | Response packet to handler |
delay | Additional delay for scheduling the completion event |
Definition at line 63 of file dma_device.cc.
References Packet::cmdString(), curTick(), device, ContextSwitchTaskId::DMA, DPRINTF, Packet::getAddr(), Packet::isResponse(), pendingCount, Packet::req, EventManager::schedule(), Packet::senderState, and Drainable::signalDrainDone().
Referenced by recvTimingResp().
|
protected |
Definition at line 205 of file dma_device.cc.
|
overrideprotectedvirtual |
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on the peer) and was unsuccessful.
Implements TimingRequestProtocol.
Definition at line 141 of file dma_device.cc.
|
overrideprotectedvirtual |
Receive a timing response from the peer.
Implements TimingRequestProtocol.
Definition at line 106 of file dma_device.cc.
References Packet::cacheResponding(), handleResp(), Packet::hasSharers(), and Packet::req.
|
private |
For timing, attempt to send the first item on the transmit list, and if it is successful and there are more packets waiting, then schedule the sending of the next packet.
For atomic, simply send and process everything on the transmit list.
Definition at line 244 of file dma_device.cc.
References ContextSwitchTaskId::DMA, DPRINTF, System::isAtomicMode(), System::isTimingMode(), panic, Packet::req, ArmISA::sendEvent(), and PioDevice::sys.
Referenced by DmaPort().
|
private |
Take the first packet of the transmit list and attempt to send it as a timing request.
If it is successful, schedule the sending of the next packet, otherwise remember that we are waiting for a retry.
Definition at line 215 of file dma_device.cc.
References Packet::cmdString(), ContextSwitchTaskId::DMA, DPRINTF, Packet::getAddr(), and ArmISA::sendEvent().
|
protected |
|
protected |
ClockedObject* const DmaPort::device |
The device that owns this port.
Definition at line 110 of file dma_device.hh.
Referenced by handleResp().
|
protected |
If the port is currently waiting for a retry before it can send whatever it is that it's sending.
Definition at line 131 of file dma_device.hh.
Referenced by DmaPort().
const MasterID DmaPort::masterId |
Id for all requests.
Definition at line 117 of file dma_device.hh.
|
protected |
Number of outstanding packets the dma port has.
Definition at line 127 of file dma_device.hh.
Referenced by DmaPort(), and handleResp().
|
protected |
Event used to schedule a future sending from the transmit list.
Definition at line 124 of file dma_device.hh.
System* const DmaPort::sys |
The system that device/port are in.
This is used to select which mode we are currently operating in.
Definition at line 114 of file dma_device.hh.
Referenced by DmaDevice::cacheBlockSize(), DmaReadFifo::resumeFill(), and DmaReadFifo::resumeFillFunctional().
|
protected |
Use a deque as we never do any insertion or removal in the middle.
Definition at line 121 of file dma_device.hh.