Go to the documentation of this file.
41 #ifndef __DEV_DMA_DEVICE_HH__
42 #define __DEV_DMA_DEVICE_HH__
52 #include "params/DmaDevice.hh"
98 uint8_t *
const data =
nullptr;
115 uint32_t _sid, uint32_t _ssid,
Event *
ce,
Tick _delay)
192 uint8_t *
data, uint32_t sid, uint32_t ssid,
Tick delay,
212 uint32_t sid, uint32_t ssid,
Tick delay=0)
226 uint32_t sid, uint32_t ssid,
Tick delay=0)
240 void init()
override;
260 virtual const std::string
name()
const {
return "DmaCallback"; }
365 unsigned max_req_size,
366 unsigned max_pending,
401 return tryGet(
static_cast<T *
>(&value),
sizeof(T));
412 void get(uint8_t *dst,
size_t len);
419 get(
static_cast<uint8_t *
>(&value),
sizeof(T));
568 #endif // __DEV_DMA_DEVICE_HH__
bool tryGet(uint8_t *dst, size_t len)
Try to read data from the FIFO.
const Packet::Command cmd
Command for the request.
void serialize(CheckpointOut &cp) const override
Serialize an object.
DmaReqState(Packet::Command _cmd, Addr addr, Addr chunk_sz, Addr tb, uint8_t *_data, Request::Flags _flags, RequestorID _id, uint32_t _sid, uint32_t _ssid, Event *ce, Tick _delay)
void startFill(Addr start, size_t size)
Start filling the FIFO.
void flush()
Flush the FIFO.
std::unique_ptr< DmaDoneEvent > DmaDoneEventUPtr
const PortID InvalidPortID
const uint8_t * data() const
virtual ~DmaCallback()=default
std::deque< DmaDoneEventUPtr > freeRequests
Basic support for object serialization.
uint8_t *const data
Pointer to a buffer for the data.
void handleResp(DmaReqState *state, Addr addr, Addr size, Tick delay=0)
DrainState drain() override
DmaPort ensures that all oustanding DMA accesses have completed before it finishes draining.
DrainState drain() override
Draining is the process of clearing out the states of SimObjects.These are the SimObjects that are pa...
void trySendTimingReq()
Take the first request on the transmit list and attempt to send a timing packet from it.
uint64_t Tick
Tick count type.
void chunkComplete()
Called by DMA engine completion event on each chunk completion.
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Addr numBytes
Number of bytes that have been acked for this transaction.
const Tick delay
Amount to delay completion of dma by.
std::deque< DmaReqState * > transmitList
Use a deque as we never do any insertion or removal in the middle.
unsigned int cacheBlockSize() const
const RequestorID requestorId
Id for all requests.
const uint32_t defaultSid
Default streamId.
void stopFill()
Stop the DMA engine.
bool sendAtomicBdReq(DmaReqState *state)
Send the next packet from a DMA request in atomic mode, and request and/or use memory backdoors if po...
void handlePending()
Handle pending requests that have been flagged as done.
EventFunctionWrapper sendEvent
Event used to schedule a future sending from the transmit list.
ClockedObject *const device
The device that owns this port.
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
const Request::Flags flags
The flags to use for requests.
const Request::Flags reqFlags
Request flags.
@ Drained
Buffers drained, ready for serialization/handover.
const Addr maxReqSize
Maximum request size in bytes.
Command
List of all commands associated with a packet.
DrainState
Object drain/handover states.
virtual void onIdle()
Last response received callback.
void dmaRead(Addr addr, int size, Event *event, uint8_t *data, uint32_t sid, uint32_t ssid, Tick delay=0)
This device is the base class which all devices senstive to an address range inherit from.
void resumeFillBypass()
Try to bypass DMA requests in non-caching mode.
void dmaWrite(Addr addr, int size, Event *event, uint8_t *data, uint32_t sid, uint32_t ssid, Tick delay=0)
A virtual base opaque structure used to hold state associated with the packet (e.g....
Interface for objects that might require draining before checkpointing.
DrainState drain() override
Draining is the process of clearing out the states of SimObjects.These are the SimObjects that are pa...
Ports are used to interface objects to each other.
size_t requestSize() const
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
virtual const std::string name() const
The AddrRangeMap uses an STL map to implement an interval tree for address decoding.
std::vector< uint8_t > _data
void signalDrainDone() const
Signal that an object is drained.
Buffered DMA engine helper class.
void dmaRead(Addr addr, int size, Event *event, uint8_t *data, Tick delay=0)
A RequestPort is a specialisation of a Port, which implements the default protocol for the three diff...
Event * getChunkEvent()
Request a chunk event.
void handleRespPacket(PacketPtr pkt, Tick delay=0)
Handle a response packet by updating the corresponding DMA request state to reflect the bytes receive...
const size_t fifoSize
Maximum FIFO size in bytes.
void dmaDone()
DMA request done, handle incoming data and issue new request.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
System *const sys
The system that device/port are in.
DmaDoneEvent(DmaReadFifo *_parent, size_t max_size)
void resumeFill()
Try to issue new DMA requests or bypass DMA requests.
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
void resumeFillTiming()
Try to issue new DMA requests during normal execution.
void dmaAction(Packet::Command cmd, Addr addr, int size, Event *event, uint8_t *data, Tick delay, Request::Flags flag=0)
Event * completionEvent
Event to call on the device when this transaction (all packets) complete.
void recvReqRetry() override
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
virtual void process()=0
Callback function invoked on completion of all chunks.
PacketPtr inRetry
The packet (if any) waiting for a retry to send.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
bool recvTimingResp(PacketPtr pkt) override
Receive a timing response from the peer.
const uint32_t sid
Stream IDs.
std::deque< DmaDoneEventUPtr > pendingRequests
virtual void onEndOfBlock()
End of block callback.
DmaDevice(const Params &p)
void dmaWrite(Addr addr, int size, Event *event, uint8_t *data, Tick delay=0)
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
uint32_t pendingCount
Number of outstanding packets the dma port has.
const RequestorID id
The requestor ID to use for requests.
AddrRangeMap< MemBackdoorPtr, 1 > memBackdoors
void sendDma()
For timing, attempt to send the first item on the transmit list, and if it is successful and there ar...
bool atEndOfBlock() const
Has the DMA engine sent out the last request for the active block?
size_t size() const
Get the amount of data stored in the FIFO.
const Addr totBytes
Total number of bytes that this transaction involves.
std::ostream CheckpointOut
bool isActive() const
Is the DMA engine active (i.e., are there still in-flight accesses)?
This class takes an arbitrary memory region (address/length pair) and generates a series of appropria...
const uint32_t defaultSSid
Default substreamId.
DmaPort(ClockedObject *dev, System *s, uint32_t sid=0, uint32_t ssid=0)
unsigned int cacheLineSize() const
Get the cache line size of the system.
DmaReadFifo(DmaPort &port, size_t size, unsigned max_req_size, unsigned max_pending, Request::Flags flags=0)
bool sendAtomicReq(DmaReqState *state)
Send the next packet from a DMA request in atomic mode.
@ Draining
Draining buffers pending serialization/handover.
ChunkGenerator gen
Object to track what chunks of bytes to send at a time.
virtual ~DmaDevice()=default
Generated on Tue Jun 22 2021 15:28:27 for gem5 by doxygen 1.8.17