gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
dma_device.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012-2013, 2015, 2017, 2019 ARM Limited
3  * All rights reserved.
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2004-2005 The Regents of The University of Michigan
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
41 #ifndef __DEV_DMA_DEVICE_HH__
42 #define __DEV_DMA_DEVICE_HH__
43 
44 #include <deque>
45 #include <memory>
46 
47 #include "base/addr_range_map.hh"
48 #include "base/chunk_generator.hh"
49 #include "base/circlebuf.hh"
50 #include "dev/io_device.hh"
51 #include "mem/backdoor.hh"
52 #include "params/DmaDevice.hh"
53 #include "sim/drain.hh"
54 #include "sim/system.hh"
55 
56 class ClockedObject;
57 
58 class DmaPort : public RequestPort, public Drainable
59 {
60  private:
62 
68  void trySendTimingReq();
69 
77  void sendDma();
78 
80  {
84 
86  const Addr totBytes;
87 
90 
92  const Tick delay;
93 
96 
98  uint8_t *const data = nullptr;
99 
102 
105 
107  const uint32_t sid;
108  const uint32_t ssid;
109 
112 
114  uint8_t *_data, Request::Flags _flags, RequestorID _id,
115  uint32_t _sid, uint32_t _ssid, Event *ce, Tick _delay)
116  : completionEvent(ce), totBytes(tb), delay(_delay),
117  gen(addr, tb, chunk_sz), data(_data), flags(_flags), id(_id),
118  sid(_sid), ssid(_ssid), cmd(_cmd)
119  {}
120 
122  };
123 
125  bool sendAtomicReq(DmaReqState *state);
130  bool sendAtomicBdReq(DmaReqState *state);
131 
142  void handleRespPacket(PacketPtr pkt, Tick delay=0);
143  void handleResp(DmaReqState *state, Addr addr, Addr size, Tick delay=0);
144 
145  public:
148 
151  System *const sys;
152 
155 
156  protected:
159 
162 
164  uint32_t pendingCount = 0;
165 
167  PacketPtr inRetry = nullptr;
168 
170  const uint32_t defaultSid;
171 
173  const uint32_t defaultSSid;
174 
175  const int cacheLineSize;
176 
177  protected:
178 
179  bool recvTimingResp(PacketPtr pkt) override;
180  void recvReqRetry() override;
181 
182  public:
183 
184  DmaPort(ClockedObject *dev, System *s, uint32_t sid=0, uint32_t ssid=0);
185 
186  void
187  dmaAction(Packet::Command cmd, Addr addr, int size, Event *event,
188  uint8_t *data, Tick delay, Request::Flags flag=0);
189 
190  void
191  dmaAction(Packet::Command cmd, Addr addr, int size, Event *event,
192  uint8_t *data, uint32_t sid, uint32_t ssid, Tick delay,
193  Request::Flags flag=0);
194 
195  bool dmaPending() const { return pendingCount > 0; }
196 
197  DrainState drain() override;
198 };
199 
200 class DmaDevice : public PioDevice
201 {
202  protected:
204 
205  public:
206  typedef DmaDeviceParams Params;
207  DmaDevice(const Params &p);
208  virtual ~DmaDevice() = default;
209 
210  void
211  dmaWrite(Addr addr, int size, Event *event, uint8_t *data,
212  uint32_t sid, uint32_t ssid, Tick delay=0)
213  {
215  sid, ssid, delay);
216  }
217 
218  void
219  dmaWrite(Addr addr, int size, Event *event, uint8_t *data, Tick delay=0)
220  {
221  dmaPort.dmaAction(MemCmd::WriteReq, addr, size, event, data, delay);
222  }
223 
224  void
225  dmaRead(Addr addr, int size, Event *event, uint8_t *data,
226  uint32_t sid, uint32_t ssid, Tick delay=0)
227  {
229  sid, ssid, delay);
230  }
231 
232  void
233  dmaRead(Addr addr, int size, Event *event, uint8_t *data, Tick delay=0)
234  {
235  dmaPort.dmaAction(MemCmd::ReadReq, addr, size, event, data, delay);
236  }
237 
238  bool dmaPending() const { return dmaPort.dmaPending(); }
239 
240  void init() override;
241 
242  unsigned int cacheBlockSize() const { return sys->cacheLineSize(); }
243 
244  Port &getPort(const std::string &if_name,
245  PortID idx=InvalidPortID) override;
246 
247 };
248 
257 class DmaCallback : public Drainable
258 {
259  public:
260  virtual const std::string name() const { return "DmaCallback"; }
261 
269  DrainState
270  drain() override
271  {
273  }
274 
275  protected:
276  int count = 0;
277 
278  virtual ~DmaCallback() = default;
279 
283  virtual void process() = 0;
284 
285  private:
291  void
293  {
294  if (--count == 0) {
295  process();
296  // Need to notify DrainManager that this object is finished
297  // draining, even though it is immediately deleted.
298  signalDrainDone();
299  delete this;
300  }
301  }
302 
303  public:
304 
309  Event *
311  {
312  ++count;
313  return new EventFunctionWrapper([this]{ chunkComplete(); }, name(),
314  true);
315  }
316 };
317 
361 class DmaReadFifo : public Drainable, public Serializable
362 {
363  public:
364  DmaReadFifo(DmaPort &port, size_t size,
365  unsigned max_req_size,
366  unsigned max_pending,
367  Request::Flags flags=0);
368 
369  ~DmaReadFifo();
370 
371  public: // Serializable
372  void serialize(CheckpointOut &cp) const override;
373  void unserialize(CheckpointIn &cp) override;
374 
375  public: // Drainable
376  DrainState drain() override;
377 
378  public: // FIFO access
395  bool tryGet(uint8_t *dst, size_t len);
396 
397  template<typename T>
398  bool
399  tryGet(T &value)
400  {
401  return tryGet(static_cast<T *>(&value), sizeof(T));
402  };
403 
412  void get(uint8_t *dst, size_t len);
413 
414  template<typename T>
415  T
416  get()
417  {
418  T value;
419  get(static_cast<uint8_t *>(&value), sizeof(T));
420  return value;
421  };
422 
424  size_t size() const { return buffer.size(); }
426  void flush() { buffer.flush(); }
427 
429  public: // FIFO fill control
444  void startFill(Addr start, size_t size);
445 
454  void stopFill();
455 
460  bool atEndOfBlock() const { return nextAddr == endAddr; }
461 
466  bool
467  isActive() const
468  {
469  return !(pendingRequests.empty() && atEndOfBlock());
470  }
471 
473  protected: // Callbacks
485  virtual void onEndOfBlock() {};
486 
498  virtual void onIdle() {};
499 
501  private: // Configuration
503  const Addr maxReqSize;
505  const size_t fifoSize;
508 
510 
511  const int cacheLineSize;
512 
513  private:
514  class DmaDoneEvent : public Event
515  {
516  public:
517  DmaDoneEvent(DmaReadFifo *_parent, size_t max_size);
518 
519  void kill();
520  void cancel();
521  bool canceled() const { return _canceled; }
522  void reset(size_t size);
523  void process();
524 
525  bool done() const { return _done; }
526  size_t requestSize() const { return _requestSize; }
527  const uint8_t *data() const { return _data.data(); }
528  uint8_t *data() { return _data.data(); }
529 
530  private:
532  bool _done = false;
533  bool _canceled = false;
534  size_t _requestSize;
536  };
537 
538  typedef std::unique_ptr<DmaDoneEvent> DmaDoneEventUPtr;
539 
544  void dmaDone();
545 
547  void handlePending();
548 
550  void resumeFill();
551 
553  void resumeFillTiming();
554 
556  void resumeFillBypass();
557 
558  private: // Internal state
560 
563 
566 };
567 
568 #endif // __DEV_DMA_DEVICE_HH__
DmaReadFifo::tryGet
bool tryGet(uint8_t *dst, size_t len)
Try to read data from the FIFO.
Definition: dma_device.cc:417
DmaPort::DmaReqState::cmd
const Packet::Command cmd
Command for the request.
Definition: dma_device.hh:111
DmaReadFifo::nextAddr
Addr nextAddr
Definition: dma_device.hh:561
DmaReadFifo::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: dma_device.cc:399
DmaPort::DmaReqState::DmaReqState
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)
Definition: dma_device.hh:113
DmaReadFifo::startFill
void startFill(Addr start, size_t size)
Start filling the FIFO.
Definition: dma_device.cc:435
io_device.hh
system.hh
DmaReadFifo::flush
void flush()
Flush the FIFO.
Definition: dma_device.hh:426
DmaReadFifo::DmaDoneEventUPtr
std::unique_ptr< DmaDoneEvent > DmaDoneEventUPtr
Definition: dma_device.hh:538
data
const char data[]
Definition: circlebuf.test.cc:47
InvalidPortID
const PortID InvalidPortID
Definition: types.hh:244
DmaReadFifo::DmaDoneEvent::data
const uint8_t * data() const
Definition: dma_device.hh:527
circlebuf.hh
DmaCallback::~DmaCallback
virtual ~DmaCallback()=default
DmaReadFifo::freeRequests
std::deque< DmaDoneEventUPtr > freeRequests
Definition: dma_device.hh:565
Flags< FlagsType >
Serializable
Basic support for object serialization.
Definition: serialize.hh:175
DmaPort::DmaReqState::data
uint8_t *const data
Pointer to a buffer for the data.
Definition: dma_device.hh:98
DmaPort::handleResp
void handleResp(DmaReqState *state, Addr addr, Addr size, Tick delay=0)
Definition: dma_device.cc:79
DmaCallback::drain
DrainState drain() override
DmaPort ensures that all oustanding DMA accesses have completed before it finishes draining.
Definition: dma_device.hh:270
DmaReadFifo::DmaDoneEvent::done
bool done() const
Definition: dma_device.hh:525
DmaPort::drain
DrainState drain() override
Draining is the process of clearing out the states of SimObjects.These are the SimObjects that are pa...
Definition: dma_device.cc:153
DmaPort::trySendTimingReq
void trySendTimingReq()
Take the first request on the transmit list and attempt to send a timing packet from it.
Definition: dma_device.cc:201
MemCmd::ReadReq
@ ReadReq
Definition: packet.hh:83
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
DmaReadFifo::port
DmaPort & port
Definition: dma_device.hh:509
DmaPort::DmaReqState::createPacket
PacketPtr createPacket()
Definition: dma_device.cc:111
DmaCallback::chunkComplete
void chunkComplete()
Called by DMA engine completion event on each chunk completion.
Definition: dma_device.hh:292
PortID
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:243
DmaPort::DmaReqState::numBytes
Addr numBytes
Number of bytes that have been acked for this transaction.
Definition: dma_device.hh:89
DmaPort::DmaReqState::delay
const Tick delay
Amount to delay completion of dma by.
Definition: dma_device.hh:92
DmaPort::transmitList
std::deque< DmaReqState * > transmitList
Use a deque as we never do any insertion or removal in the middle.
Definition: dma_device.hh:158
DmaDevice::cacheBlockSize
unsigned int cacheBlockSize() const
Definition: dma_device.hh:242
std::vector< uint8_t >
DmaPort::requestorId
const RequestorID requestorId
Id for all requests.
Definition: dma_device.hh:154
DmaPort::defaultSid
const uint32_t defaultSid
Default streamId.
Definition: dma_device.hh:170
MipsISA::ce
Bitfield< 29, 28 > ce
Definition: pra_constants.hh:177
backdoor.hh
DmaReadFifo::stopFill
void stopFill()
Stop the DMA engine.
Definition: dma_device.cc:445
DmaReadFifo::DmaDoneEvent
Definition: dma_device.hh:514
DmaPort::DmaReqState
Definition: dma_device.hh:79
DmaReadFifo::get
T get()
Definition: dma_device.hh:416
DmaPort::sendAtomicBdReq
bool sendAtomicBdReq(DmaReqState *state)
Send the next packet from a DMA request in atomic mode, and request and/or use memory backdoors if po...
Definition: dma_device.cc:255
DmaReadFifo::handlePending
void handlePending()
Handle pending requests that have been flagged as done.
Definition: dma_device.cc:537
DmaPort::sendEvent
EventFunctionWrapper sendEvent
Event used to schedule a future sending from the transmit list.
Definition: dma_device.hh:161
DmaPort::device
ClockedObject *const device
The device that owns this port.
Definition: dma_device.hh:147
DmaReadFifo::endAddr
Addr endAddr
Definition: dma_device.hh:562
ClockedObject
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
Definition: clocked_object.hh:231
Fifo::flush
void flush()
Definition: circlebuf.hh:222
DmaPort::DmaReqState::flags
const Request::Flags flags
The flags to use for requests.
Definition: dma_device.hh:101
DmaReadFifo::reqFlags
const Request::Flags reqFlags
Request flags.
Definition: dma_device.hh:507
EventFunctionWrapper
Definition: eventq.hh:1112
PioDevice::sys
System * sys
Definition: io_device.hh:102
DmaReadFifo::buffer
Fifo< uint8_t > buffer
Definition: dma_device.hh:559
DmaReadFifo::~DmaReadFifo
~DmaReadFifo()
Definition: dma_device.cc:382
DrainState::Drained
@ Drained
Buffers drained, ready for serialization/handover.
DmaReadFifo::maxReqSize
const Addr maxReqSize
Maximum request size in bytes.
Definition: dma_device.hh:498
MemCmd::Command
Command
List of all commands associated with a packet.
Definition: packet.hh:80
DmaDevice::dmaPort
DmaPort dmaPort
Definition: dma_device.hh:203
MemCmd::WriteReq
@ WriteReq
Definition: packet.hh:86
DrainState
DrainState
Object drain/handover states.
Definition: drain.hh:71
DmaReadFifo::cacheLineSize
const int cacheLineSize
Definition: dma_device.hh:511
RequestorID
uint16_t RequestorID
Definition: request.hh:89
DmaReadFifo::onIdle
virtual void onIdle()
Last response received callback.
Definition: dma_device.hh:498
DmaDevice::dmaRead
void dmaRead(Addr addr, int size, Event *event, uint8_t *data, uint32_t sid, uint32_t ssid, Tick delay=0)
Definition: dma_device.hh:225
cp
Definition: cprintf.cc:37
PioDevice
This device is the base class which all devices senstive to an address range inherit from.
Definition: io_device.hh:99
Fifo::size
size_t size() const
Definition: circlebuf.hh:219
DmaReadFifo::resumeFillBypass
void resumeFillBypass()
Try to bypass DMA requests in non-caching mode.
Definition: dma_device.cc:477
DmaDevice::dmaWrite
void dmaWrite(Addr addr, int size, Event *event, uint8_t *data, uint32_t sid, uint32_t ssid, Tick delay=0)
Definition: dma_device.hh:211
Packet::SenderState
A virtual base opaque structure used to hold state associated with the packet (e.g....
Definition: packet.hh:432
Drainable
Interface for objects that might require draining before checkpointing.
Definition: drain.hh:230
Event
Definition: eventq.hh:248
Fifo< uint8_t >
DmaReadFifo::drain
DrainState drain() override
Draining is the process of clearing out the states of SimObjects.These are the SimObjects that are pa...
Definition: dma_device.cc:556
addr_range_map.hh
DmaReadFifo::DmaDoneEvent::parent
DmaReadFifo * parent
Definition: dma_device.hh:531
DmaPort::DmaReqState::ssid
const uint32_t ssid
Definition: dma_device.hh:108
DmaReadFifo::DmaDoneEvent::canceled
bool canceled() const
Definition: dma_device.hh:521
System
Definition: system.hh:73
DmaPort::dmaPending
bool dmaPending() const
Definition: dma_device.hh:195
MipsISA::event
Bitfield< 10, 5 > event
Definition: pra_constants.hh:297
DmaReadFifo::DmaDoneEvent::_done
bool _done
Definition: dma_device.hh:532
Port
Ports are used to interface objects to each other.
Definition: port.hh:56
DmaReadFifo::DmaDoneEvent::requestSize
size_t requestSize() const
Definition: dma_device.hh:526
DmaDevice::getPort
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
Definition: dma_device.cc:360
DmaCallback::name
virtual const std::string name() const
Definition: dma_device.hh:260
AddrRangeMap
The AddrRangeMap uses an STL map to implement an interval tree for address decoding.
Definition: addr_range_map.hh:59
DmaReadFifo::DmaDoneEvent::_data
std::vector< uint8_t > _data
Definition: dma_device.hh:535
DmaReadFifo::DmaDoneEvent::reset
void reset(size_t size)
Definition: dma_device.cc:582
Drainable::signalDrainDone
void signalDrainDone() const
Signal that an object is drained.
Definition: drain.hh:301
DmaReadFifo::DmaDoneEvent::kill
void kill()
Definition: dma_device.cc:569
DmaReadFifo
Buffered DMA engine helper class.
Definition: dma_device.hh:361
DmaDevice::dmaRead
void dmaRead(Addr addr, int size, Event *event, uint8_t *data, Tick delay=0)
Definition: dma_device.hh:233
RequestPort
A RequestPort is a specialisation of a Port, which implements the default protocol for the three diff...
Definition: port.hh:74
DmaCallback::getChunkEvent
Event * getChunkEvent()
Request a chunk event.
Definition: dma_device.hh:310
DmaPort::handleRespPacket
void handleRespPacket(PacketPtr pkt, Tick delay=0)
Handle a response packet by updating the corresponding DMA request state to reflect the bytes receive...
Definition: dma_device.cc:64
DmaReadFifo::fifoSize
const size_t fifoSize
Maximum FIFO size in bytes.
Definition: dma_device.hh:505
DmaReadFifo::dmaDone
void dmaDone()
DMA request done, handle incoming data and issue new request.
Definition: dma_device.cc:525
DmaPort::cacheLineSize
const int cacheLineSize
Definition: dma_device.hh:175
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
DmaReadFifo::tryGet
bool tryGet(T &value)
Definition: dma_device.hh:399
DmaPort::sys
System *const sys
The system that device/port are in.
Definition: dma_device.hh:151
DmaReadFifo::DmaDoneEvent::DmaDoneEvent
DmaDoneEvent(DmaReadFifo *_parent, size_t max_size)
Definition: dma_device.cc:563
DmaReadFifo::resumeFill
void resumeFill()
Try to issue new DMA requests or bypass DMA requests.
Definition: dma_device.cc:458
DmaDevice::init
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: dma_device.cc:145
DmaReadFifo::resumeFillTiming
void resumeFillTiming()
Try to issue new DMA requests during normal execution.
Definition: dma_device.cc:499
DmaPort::dmaAction
void dmaAction(Packet::Command cmd, Addr addr, int size, Event *event, uint8_t *data, Tick delay, Request::Flags flag=0)
Definition: dma_device.cc:193
X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:80
DmaReadFifo::DmaDoneEvent::_canceled
bool _canceled
Definition: dma_device.hh:533
DmaPort::DmaReqState::completionEvent
Event * completionEvent
Event to call on the device when this transaction (all packets) complete.
Definition: dma_device.hh:83
DmaReadFifo::DmaDoneEvent::data
uint8_t * data()
Definition: dma_device.hh:528
DmaPort::recvReqRetry
void recvReqRetry() override
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
Definition: dma_device.cc:164
DmaCallback::process
virtual void process()=0
Callback function invoked on completion of all chunks.
DmaPort::inRetry
PacketPtr inRetry
The packet (if any) waiting for a retry to send.
Definition: dma_device.hh:167
DmaReadFifo::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: dma_device.cc:409
DmaPort::recvTimingResp
bool recvTimingResp(PacketPtr pkt) override
Receive a timing response from the peer.
Definition: dma_device.cc:129
DmaDevice
Definition: dma_device.hh:200
DmaPort::DmaReqState::sid
const uint32_t sid
Stream IDs.
Definition: dma_device.hh:107
DmaReadFifo::pendingRequests
std::deque< DmaDoneEventUPtr > pendingRequests
Definition: dma_device.hh:564
DmaReadFifo::onEndOfBlock
virtual void onEndOfBlock()
End of block callback.
Definition: dma_device.hh:485
DmaReadFifo::DmaDoneEvent::cancel
void cancel()
Definition: dma_device.cc:576
DmaDevice::DmaDevice
DmaDevice(const Params &p)
Definition: dma_device.cc:140
DmaDevice::dmaWrite
void dmaWrite(Addr addr, int size, Event *event, uint8_t *data, Tick delay=0)
Definition: dma_device.hh:219
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:258
std::deque
STL deque class.
Definition: stl.hh:44
DmaPort::pendingCount
uint32_t pendingCount
Number of outstanding packets the dma port has.
Definition: dma_device.hh:164
ArmISA::len
Bitfield< 18, 16 > len
Definition: miscregs_types.hh:439
DmaCallback
DMA callback class.
Definition: dma_device.hh:257
DmaPort::DmaReqState::id
const RequestorID id
The requestor ID to use for requests.
Definition: dma_device.hh:104
DmaPort::memBackdoors
AddrRangeMap< MemBackdoorPtr, 1 > memBackdoors
Definition: dma_device.hh:61
DmaPort::sendDma
void sendDma()
For timing, attempt to send the first item on the transmit list, and if it is successful and there ar...
Definition: dma_device.cc:327
DmaReadFifo::atEndOfBlock
bool atEndOfBlock() const
Has the DMA engine sent out the last request for the active block?
Definition: dma_device.hh:460
chunk_generator.hh
DmaReadFifo::size
size_t size() const
Get the amount of data stored in the FIFO.
Definition: dma_device.hh:424
DmaPort::DmaReqState::totBytes
const Addr totBytes
Total number of bytes that this transaction involves.
Definition: dma_device.hh:86
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:64
DmaReadFifo::isActive
bool isActive() const
Is the DMA engine active (i.e., are there still in-flight accesses)?
Definition: dma_device.hh:467
drain.hh
ChunkGenerator
This class takes an arbitrary memory region (address/length pair) and generates a series of appropria...
Definition: chunk_generator.hh:56
DmaPort::defaultSSid
const uint32_t defaultSSid
Default substreamId.
Definition: dma_device.hh:173
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
DmaPort::DmaPort
DmaPort(ClockedObject *dev, System *s, uint32_t sid=0, uint32_t ssid=0)
Definition: dma_device.cc:55
System::cacheLineSize
unsigned int cacheLineSize() const
Get the cache line size of the system.
Definition: system.hh:302
ArmISA::s
Bitfield< 4 > s
Definition: miscregs_types.hh:556
CheckpointIn
Definition: serialize.hh:68
DmaReadFifo::DmaReadFifo
DmaReadFifo(DmaPort &port, size_t size, unsigned max_req_size, unsigned max_pending, Request::Flags flags=0)
Definition: dma_device.cc:368
DmaDevice::dmaPending
bool dmaPending() const
Definition: dma_device.hh:238
DmaPort
Definition: dma_device.hh:58
DmaReadFifo::DmaDoneEvent::_requestSize
size_t _requestSize
Definition: dma_device.hh:534
DmaCallback::count
int count
Definition: dma_device.hh:276
DmaPort::sendAtomicReq
bool sendAtomicReq(DmaReqState *state)
Send the next packet from a DMA request in atomic mode.
Definition: dma_device.cc:241
DmaDevice::Params
DmaDeviceParams Params
Definition: dma_device.hh:206
DrainState::Draining
@ Draining
Draining buffers pending serialization/handover.
MipsISA::tb
Bitfield< 27 > tb
Definition: dt_constants.hh:74
DmaPort::DmaReqState::gen
ChunkGenerator gen
Object to track what chunks of bytes to send at a time.
Definition: dma_device.hh:95
DmaDevice::~DmaDevice
virtual ~DmaDevice()=default
DmaReadFifo::DmaDoneEvent::process
void process()
Definition: dma_device.cc:591

Generated on Tue Jun 22 2021 15:28:27 for gem5 by doxygen 1.8.17