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